diff --git a/dev/api/index.html b/dev/api/index.html index a8f32e036..770972569 100644 --- a/dev/api/index.html +++ b/dev/api/index.html @@ -1,5 +1,5 @@ -API Documentation · KomaMRI.jl: General MRI simulation framework

API Documentation

This page provides documentation for the modules, structs, functions, methods, and additional components available when importing the KomaMRI package. It serves as a valuable reference when using the Julia REPL directly and when creating custom Julia scripts. Be sure not to overlook the section How to read the API docs, which contains important information for understanding the general structure of docstrings. The following is the table of contents for the API Documentation:

How to read the API docs

The API documentation includes predefined "template patterns" to assist users in understanding how to use modules, structs, functions, methods, and all the necessary aspects to make the most of what KomaMRI has to offer.

These documentation "template patterns" are based on the JJulia Blue Style documentation and other GitHub repositories that deal with MRI topics. However, some custom considerations were added to enhance understanding and provide a broader perspective.

When you encounter a docstring documentation, it will have the following structure:

KomaMRI.component_name — Component
out1, out2, ... = component_name(arg1, arg2, ...; kw1, kw2, ...)

This is a brief description of what component_name does.

Note

Here can be placed a note if it is regarded necessary.

Arguments

  • arg1: (::type, =value, [unit], opts: [opt1, opt2, ...]) the description for the arg1
  • ...

Keywords

  • kw1: (::type, =value, [unit], opts: [opt1, opt2, ...]) the description for the kw1
  • ...

Returns

  • out1: (::type, =value, [unit], opts: [opt1, opt2, ...]) the description for the out1
  • ...

References

  • Sometimes it is a good idea to put some references or links
  • ...

Examples

julia> arg1, arg2, valkw1, valkw2 = 3.5, "hello", 1, true
+API Documentation · KomaMRI.jl: General MRI simulation framework

API Documentation

This page provides documentation for the modules, structs, functions, methods, and additional components available when importing the KomaMRI package. It serves as a valuable reference when using the Julia REPL directly and when creating custom Julia scripts. Be sure not to overlook the section How to read the API docs, which contains important information for understanding the general structure of docstrings. The following is the table of contents for the API Documentation:

How to read the API docs

The API documentation includes predefined "template patterns" to assist users in understanding how to use modules, structs, functions, methods, and all the necessary aspects to make the most of what KomaMRI has to offer.

These documentation "template patterns" are based on the JJulia Blue Style documentation and other GitHub repositories that deal with MRI topics. However, some custom considerations were added to enhance understanding and provide a broader perspective.

When you encounter a docstring documentation, it will have the following structure:

KomaMRI.component_name — Component
out1, out2, ... = component_name(arg1, arg2, ...; kw1, kw2, ...)

This is a brief description of what component_name does.

Note

Here can be placed a note if it is regarded necessary.

Arguments

  • arg1: (::type, =value, [unit], opts: [opt1, opt2, ...]) the description for the arg1
  • ...

Keywords

  • kw1: (::type, =value, [unit], opts: [opt1, opt2, ...]) the description for the kw1
  • ...

Returns

  • out1: (::type, =value, [unit], opts: [opt1, opt2, ...]) the description for the out1
  • ...

References

  • Sometimes it is a good idea to put some references or links
  • ...

Examples

julia> arg1, arg2, valkw1, valkw2 = 3.5, "hello", 1, true
 
 julia> out1, out2 = component_name(arg1, arg2; kw1=valkw1, kw2=valkw2)

The preceding docstring block will always start with the way the component is called (outputs = component_name(inputs), followed by a brief description of what the component does. If necessary, a note block will be displayed. In general, the following subsections are optional: Arguments, Keywords, Returns, References, and Examples, but they will be provided as needed. These subsections are self-explanatory, making it intuitive to understand their purpose.

Please note that every subitem in the sections Arguments, Keywords, and Returns represents variables. They include practical information along with a description. The information enclosed in parentheses is optional but highly useful when provided.

  • ::type: is the suggested type for the variable. If the input variable is of type ::type, there won't be any issues, but it's always possible to test other subtypes. If the variable is an output, it will be forced to the type ::type whenever possible.
  • =value: sometimes, for the inputs, a default value is defined if it is not assigned by the user.
  • [unit]: this is the suggested physical unit of measure for the variable. Everything will be fine if you stick with these units of measure.
  • opts: [opt1, opt2, ...]: sometimes, the input value can only be interpreted if it is one of the predefined values.

Structs

Scanner

KomaMRICore.ScannerType
sys = Scanner(B0, B1, Gmax, Smax, ADC_Δt, seq_Δt, GR_Δt, RF_Δt,
     RF_ring_down_T, RF_dead_time_T, ADC_dead_time_T)

The Scanner struct.

Arguments

  • B0: (::Real, =1.5, [T]) main magnetic field strength
  • B1: (::Real, =10e-6, [T]) maximum RF amplitude
  • Gmax: (::Real, =60e-3, [T/m]) maximum gradient amplitude
  • Smax: (::Real, =500, [mT/m/ms]) gradient maximum slew-rate
  • ADC_Δt: (::Real, =2e-6, [s]) ADC raster time
  • seq_Δt: (::Real, =1e-5, [s]) sequence-block raster time
  • GR_Δt: (::Real, =1e-5, [s]) gradient raster time
  • RF_Δt: (::Real, =1e-6, [s]) RF raster time
  • RF_ring_down_T: (::Real, =20e-6, [s]) RF ring down time
  • RF_dead_time_T: (::Real, =100e-6, [s]) RF dead time
  • ADC_dead_time_T: (::Real, =10e-6, [s]) ADC dead time

Returns

  • sys: (::Scanner) Scanner struct

Examples

julia> sys = Scanner()
@@ -104,4 +104,4 @@
 
 julia> raw = simulate(obj, seq, sys)
 
-julia> plot_signal(raw)

plot_image

KomaMRIPlots.plot_imageFunction
p = plot_image(image; height, width, zmin, zmax, darkmode, title)

Plots an image matrix.

Arguments

  • image: (::Matrix{Float64}) image matrix

Keywords

  • height: (::Int64, =750) height of the plot
  • width: (::Int64, =nothing) width of the plot
  • zmin: (::Float64, =minimum(abs.(image[:]))) reference value for minimum color
  • zmax: (::Float64, =maximum(abs.(image[:]))) reference value for maximum color
  • darkmode: (::Bool, =false) boolean to define colors for darkmode
  • title: (::String, ="") title of the plot

Returns

  • p: (::PlotlyJS.SyncPlot) plot of the image matrix

UI

KomaUI

KomaMRI.KomaUIFunction
out = KomaUI(; kwargs...)

Launch the Koma's UI.

Keywords

  • darkmode: (::Bool, =true) define dark mode style for the UI
  • frame: (::Bool, =true) display the upper frame of the Blink window
  • phantom_mode: (::String, ="2D", opts=["2D", "3D"]) load the default phantom as a 2D or 3D brain example
  • sim: (::Dict{String,Any}, =Dict{String,Any}()) simulation parameters dictionary
  • rec: (::Dict{Symbol,Any}, =Dict{Symbol,Any}()) reconstruction parameters dictionary
  • return_window: (::Bool, =false) make the out be either 'nothing' or the Blink window, depending on whether the return_window keyword argument is set to true
  • show_window: (::Bool, =true) display the Blink window

Returns

  • out: (::Nothing or ::Blink.AtomShell.Window) returns either 'nothing' or the Blink window, depending on whether the return_window keyword argument is set to true.

Examples

julia> KomaUI()
source
+julia> plot_signal(raw)

plot_image

KomaMRIPlots.plot_imageFunction
p = plot_image(image; height, width, zmin, zmax, darkmode, title)

Plots an image matrix.

Arguments

  • image: (::Matrix{Float64}) image matrix

Keywords

  • height: (::Int64, =750) height of the plot
  • width: (::Int64, =nothing) width of the plot
  • zmin: (::Float64, =minimum(abs.(image[:]))) reference value for minimum color
  • zmax: (::Float64, =maximum(abs.(image[:]))) reference value for maximum color
  • darkmode: (::Bool, =false) boolean to define colors for darkmode
  • title: (::String, ="") title of the plot

Returns

  • p: (::PlotlyJS.SyncPlot) plot of the image matrix

UI

KomaUI

KomaMRI.KomaUIFunction
out = KomaUI(; kwargs...)

Launch the Koma's UI.

Keywords

  • darkmode: (::Bool, =true) define dark mode style for the UI
  • frame: (::Bool, =true) display the upper frame of the Blink window
  • phantom_mode: (::String, ="2D", opts=["2D", "3D"]) load the default phantom as a 2D or 3D brain example
  • sim: (::Dict{String,Any}, =Dict{String,Any}()) simulation parameters dictionary
  • rec: (::Dict{Symbol,Any}, =Dict{Symbol,Any}()) reconstruction parameters dictionary
  • return_window: (::Bool, =false) make the out be either 'nothing' or the Blink window, depending on whether the return_window keyword argument is set to true
  • show_window: (::Bool, =true) display the Blink window

Returns

  • out: (::Nothing or ::Blink.AtomShell.Window) returns either 'nothing' or the Blink window, depending on whether the return_window keyword argument is set to true.

Examples

julia> KomaUI()
source
diff --git a/dev/assets/event-adc.html b/dev/assets/event-adc.html index c7feadc8c..d7127e580 100644 --- a/dev/assets/event-adc.html +++ b/dev/assets/event-adc.html @@ -9,7 +9,7 @@
@@ -17,11 +17,11 @@ window.PLOTLYENV = window.PLOTLYENV || {} - if (document.getElementById('5e24e465-f85e-46c0-850c-54ae34ff4a00')) { + if (document.getElementById('ad90567b-ccb3-4e77-b44b-ae44aab7545a')) { Plotly.newPlot( - '5e24e465-f85e-46c0-850c-54ae34ff4a00', - [{"y":[null,null,null,null,null],"type":"scatter","name":"Gx","hovertemplate":"(%{x:.4f} ms, %{y:.2f} mT/m)","x":[0.0,0.0,0.0,0.0,0.0]},{"y":[null,null,null,null,null],"type":"scatter","name":"Gy","hovertemplate":"(%{x:.4f} ms, %{y:.2f} mT/m)","x":[0.0,0.0,0.0,0.0,0.0]},{"y":[null,null,null,null,null],"type":"scatter","name":"Gz","hovertemplate":"(%{x:.4f} ms, %{y:.2f} mT/m)","x":[0.0,0.0,0.0,0.0,0.0]},{"y":[null,null,null,null,null],"type":"scatter","name":"|RF_1|","hovertemplate":"(%{x:.4f} ms, %{y:.2f} μT)","x":[0.0,0.0,0.0,0.0,0.0]},{"y":[null,null,null,null,null],"type":"scatter","name":"
@@ -17,11 +17,11 @@ window.PLOTLYENV = window.PLOTLYENV || {} - if (document.getElementById('2eb2e13b-8088-4df7-802f-2f544834ec55')) { + if (document.getElementById('d4a6c12d-ea6a-49ca-8994-3dd50af1cbe9')) { Plotly.newPlot( - '2eb2e13b-8088-4df7-802f-2f544834ec55', - [{"y":[null,0.0,0.5,0.5,0.0],"type":"scatter","name":"Gx","hovertemplate":"(%{x:.4f} ms, %{y:.2f} mT/m)","x":[0.0,0.0,1.0,6.0,7.0]},{"y":[null,0.0,0.0,0.25,0.45000000000000007,0.5,0.45000000000000007,0.25,0.0,-0.25,-0.45000000000000007,-0.5,0.0],"type":"scatter","name":"Gy","hovertemplate":"(%{x:.4f} ms, %{y:.2f} mT/m)","x":[0.0,0.0,2.0,2.555555555555556,3.111111111111111,3.6666666666666665,4.222222222222222,4.777777777777779,5.333333333333334,5.888888888888889,6.444444444444445,7.0,9.000000000000002]},{"y":[null,0.0,0.0,0.25,0.45000000000000007,0.5,0.45000000000000007,0.25,0.0,-0.25,-0.45000000000000007,-0.5,0.0],"type":"scatter","name":"Gz","hovertemplate":"(%{x:.4f} ms, %{y:.2f} mT/m)","x":[0.0,0.0,0.0,0.0,0.5,2.0,3.0,3.5,4.500000000000001,6.0,7.0,7.5,7.5]},{"y":[null,0.0,0.0,0.0,0.09999999999999999,0.09999999999999999,0.19999999999999998,0.19999999999999998,0.5,0.5,1.0,1.0,0.5,0.5,0.19999999999999998,0.19999999999999998,0.09999999999999999,0.09999999999999999,0.0,0.0,0.0],"type":"scatter","name":"|RF_1|","hovertemplate":"(%{x:.4f} ms, %{y:.2f} μT)","x":[0.0,0.0,0.0,0.05555555555555556,0.05555555555555556,0.11111111111111112,0.11111111111111112,0.16666666666666669,0.16666666666666669,0.22222222222222224,0.22222222222222224,0.2777777777777778,0.2777777777777778,0.3333333333333333,0.3333333333333333,0.38888888888888884,0.38888888888888884,0.4444444444444444,0.4444444444444444,0.5,0.5]},{"y":[null,0.0,0.0,0.0,-3.141592653589793,-3.141592653589793,0.0,0.0,-3.141592653589793,-3.141592653589793,0.0,0.0,-3.141592653589793,-3.141592653589793,0.0,0.0,-3.141592653589793,-3.141592653589793,0.0,0.0,0.0],"type":"scatter","name":"
@@ -17,11 +17,11 @@ window.PLOTLYENV = window.PLOTLYENV || {} - if (document.getElementById('a2f4f52e-b008-467e-9957-bf12e70cd57a')) { + if (document.getElementById('d6df1fa9-4a5b-4195-9aa4-809ce8e220e0')) { Plotly.newPlot( - 'a2f4f52e-b008-467e-9957-bf12e70cd57a', - [{"y":[null,0.0,0.5,0.5,0.4,0.4,0.5,0.5,0.0],"type":"scatter","name":"Gx","hovertemplate":"(%{x:.4f} ms, %{y:.2f} mT/m)","x":[0.0,1.0,2.0,7.0,7.2,12.200000000000001,12.400000000000002,17.4,18.4]},{"y":[null,null,null,null,null],"type":"scatter","name":"Gy","hovertemplate":"(%{x:.4f} ms, %{y:.2f} mT/m)","x":[0.0,0.0,0.0,0.0,0.0]},{"y":[null,null,null,null,null],"type":"scatter","name":"Gz","hovertemplate":"(%{x:.4f} ms, %{y:.2f} mT/m)","x":[0.0,0.0,0.0,0.0,0.0]},{"y":[null,null,null,null,null],"type":"scatter","name":"|RF_1|","hovertemplate":"(%{x:.4f} ms, %{y:.2f} μT)","x":[0.0,0.0,0.0,0.0,0.0]},{"y":[null,null,null,null,null],"type":"scatter","name":"
@@ -17,11 +17,11 @@ window.PLOTLYENV = window.PLOTLYENV || {} - if (document.getElementById('13e63b99-7061-42b8-b3c9-0353e70ca91a')) { + if (document.getElementById('b0491189-d181-49e0-94a7-c74b119aa0b8')) { Plotly.newPlot( - '13e63b99-7061-42b8-b3c9-0353e70ca91a', - [{"y":[null,0.0,0.5,0.5,0.0],"type":"scatter","name":"Gx","hovertemplate":"(%{x:.4f} ms, %{y:.2f} mT/m)","x":[0.0,2.0,3.0,8.0,9.000000000000002]},{"y":[null,null,null,null,null],"type":"scatter","name":"Gy","hovertemplate":"(%{x:.4f} ms, %{y:.2f} mT/m)","x":[0.0,0.0,0.0,0.0,0.0]},{"y":[null,null,null,null,null],"type":"scatter","name":"Gz","hovertemplate":"(%{x:.4f} ms, %{y:.2f} mT/m)","x":[0.0,0.0,0.0,0.0,0.0]},{"y":[null,null,null,null,null],"type":"scatter","name":"|RF_1|","hovertemplate":"(%{x:.4f} ms, %{y:.2f} μT)","x":[0.0,0.0,0.0,0.0,0.0]},{"y":[null,null,null,null,null],"type":"scatter","name":"
@@ -17,11 +17,11 @@ window.PLOTLYENV = window.PLOTLYENV || {} - if (document.getElementById('09918835-a15a-4647-b533-8f2080bdce58')) { + if (document.getElementById('c227050d-5b40-4bcf-a8b9-10830d052442')) { Plotly.newPlot( - '09918835-a15a-4647-b533-8f2080bdce58', - [{"y":[null,0.0,0.0,0.06266570686577501,0.12533141373155002,0.10854018818374017,2.1706299351478402e-17,-0.14012478040994822,-0.2170803763674803,-0.1657978760989136,-6.139468586358214e-17,0.18799712059732498,0.2802495608198965,0.20783863689617424,1.1278923996317989e-16,-0.2259444193177477,-0.3315957521978271,-0.24270323906946273,-1.7365039481182721e-16,0.2583773285115843,0.3759942411946501,0.27315348345345664,2.4268380444932656e-16,-0.2871703451903279,-0.415677273792348,-0.3005341724175587,-3.190161456913649e-16,0.31332853432887514,0.45188883863549517,0.325620564551221,4.020062897727412e-16,-0.3374651592277787,-0.4854064781389248,0.0],"type":"scatter","name":"Gx","hovertemplate":"(%{x:.4f} ms, %{y:.2f} mT/m)","x":[0.0,1.0,1.0,1.3333333333333333,1.6666666666666665,2.0,2.333333333333333,2.6666666666666665,3.0,3.3333333333333335,3.666666666666667,4.0,4.333333333333334,4.666666666666668,5.000000000000001,5.333333333333334,5.666666666666667,6.0,6.333333333333333,6.666666666666666,6.999999999999999,7.333333333333332,7.666666666666665,7.999999999999998,8.333333333333332,8.666666666666664,8.999999999999998,9.333333333333332,9.666666666666664,9.999999999999998,10.33333333333333,10.666666666666664,10.999999999999996,12.0]},{"y":[null,null,null,null,null],"type":"scatter","name":"Gy","hovertemplate":"(%{x:.4f} ms, %{y:.2f} mT/m)","x":[0.0,0.0,0.0,0.0,0.0]},{"y":[null,null,null,null,null],"type":"scatter","name":"Gz","hovertemplate":"(%{x:.4f} ms, %{y:.2f} mT/m)","x":[0.0,0.0,0.0,0.0,0.0]},{"y":[null,null,null,null,null],"type":"scatter","name":"|RF_1|","hovertemplate":"(%{x:.4f} ms, %{y:.2f} μT)","x":[0.0,0.0,0.0,0.0,0.0]},{"y":[null,null,null,null,null],"type":"scatter","name":"
@@ -17,11 +17,11 @@ window.PLOTLYENV = window.PLOTLYENV || {} - if (document.getElementById('2fcca4d1-28f4-482b-9263-6bfd39bca9fb')) { + if (document.getElementById('de4e76ba-5ae4-466e-a3af-0541cb8db9af')) { Plotly.newPlot( - '2fcca4d1-28f4-482b-9263-6bfd39bca9fb', - [{"y":[null,null,null,null,null],"type":"scatter","name":"Gx","hovertemplate":"(%{x:.4f} ms, %{y:.2f} mT/m)","x":[0.0,0.0,0.0,0.0,0.0]},{"y":[null,null,null,null,null],"type":"scatter","name":"Gy","hovertemplate":"(%{x:.4f} ms, %{y:.2f} mT/m)","x":[0.0,0.0,0.0,0.0,0.0]},{"y":[null,null,null,null,null],"type":"scatter","name":"Gz","hovertemplate":"(%{x:.4f} ms, %{y:.2f} mT/m)","x":[0.0,0.0,0.0,0.0,0.0]},{"y":[null,0.0,10000.0,10000.0,0.0],"type":"scatter","name":"|RF_1|","hovertemplate":"(%{x:.4f} ms, %{y:.2f} μT)","x":[0.0,0.1,0.1,0.6000000000000001,0.6000000000000001]},{"y":[null,0.0,0.0,0.0,0.0],"type":"scatter","name":"
@@ -17,11 +17,11 @@ window.PLOTLYENV = window.PLOTLYENV || {} - if (document.getElementById('79fac797-b808-4f4e-aa99-e16033809e1c')) { + if (document.getElementById('cb62ee81-d0cc-4488-8b13-0d0d323ce2f1')) { Plotly.newPlot( - '79fac797-b808-4f4e-aa99-e16033809e1c', - [{"y":[null,null,null,null,null],"type":"scatter","name":"Gx","hovertemplate":"(%{x:.4f} ms, %{y:.2f} mT/m)","x":[0.0,0.0,0.0,0.0,0.0]},{"y":[null,null,null,null,null],"type":"scatter","name":"Gy","hovertemplate":"(%{x:.4f} ms, %{y:.2f} mT/m)","x":[0.0,0.0,0.0,0.0,0.0]},{"y":[null,null,null,null,null],"type":"scatter","name":"Gz","hovertemplate":"(%{x:.4f} ms, %{y:.2f} mT/m)","x":[0.0,0.0,0.0,0.0,0.0]},{"y":[null,0.0,0.0,0.0,492.36278094138925,492.36278094138925,840.9185873785079,840.9185873785079,890.3843866360669,890.3843866360669,584.6808023678992,584.6808023678992,0.0,0.0,668.2066312775996,668.2066312775996,1164.3488132933187,1164.3488132933187,1261.3778810677616,1261.3778810677616,850.4448034442171,850.4448034442171,0.0,0.0,1039.4325375429328,1039.4325375429328,1892.0668216016427,1892.0668216016427,2162.3620818304485,2162.3620818304485,1559.1488063143984,1559.1488063143984,0.0,0.0,2338.7232094715982,2338.7232094715982,5045.511524271046,5045.511524271046,7568.267286406571,7568.267286406571,9354.892837886391,9354.892837886391,10000.0,10000.0,9354.892837886391,9354.892837886391,7568.267286406571,7568.267286406571,5045.511524271046,5045.511524271046,2338.7232094715982,2338.7232094715982,0.0,0.0,1559.1488063143984,1559.1488063143984,2162.3620818304485,2162.3620818304485,1892.0668216016427,1892.0668216016427,1039.4325375429328,1039.4325375429328,0.0,0.0,850.4448034442171,850.4448034442171,1261.3778810677616,1261.3778810677616,1164.3488132933187,1164.3488132933187,668.2066312775996,668.2066312775996,0.0,0.0,584.6808023678992,584.6808023678992,890.3843866360669,890.3843866360669,840.9185873785079,840.9185873785079,492.36278094138925,492.36278094138925,0.0,0.0,0.0],"type":"scatter","name":"|RF_1|","hovertemplate":"(%{x:.4f} ms, %{y:.2f} μT)","x":[0.0,0.1,0.1,0.15000000000000002,0.15000000000000002,0.20000000000000004,0.20000000000000004,0.25,0.25,0.30000000000000004,0.30000000000000004,0.35000000000000003,0.35000000000000003,0.4000000000000001,0.4000000000000001,0.4500000000000001,0.4500000000000001,0.5000000000000001,0.5000000000000001,0.5500000000000002,0.5500000000000002,0.6000000000000002,0.6000000000000002,0.6500000000000001,0.6500000000000001,0.7000000000000002,0.7000000000000002,0.7500000000000002,0.7500000000000002,0.8000000000000003,0.8000000000000003,0.8500000000000003,0.8500000000000003,0.9000000000000004,0.9000000000000004,0.9500000000000003,0.9500000000000003,1.0000000000000002,1.0000000000000002,1.0500000000000003,1.0500000000000003,1.1000000000000003,1.1000000000000003,3.1,3.1,3.15,3.15,3.2,3.2,3.2500000000000004,3.2500000000000004,3.3000000000000003,3.3000000000000003,3.3500000000000005,3.3500000000000005,3.400000000000001,3.400000000000001,3.4500000000000006,3.4500000000000006,3.500000000000001,3.500000000000001,3.550000000000001,3.550000000000001,3.6000000000000014,3.6000000000000014,3.6500000000000012,3.6500000000000012,3.7000000000000015,3.7000000000000015,3.7500000000000018,3.7500000000000018,3.8000000000000016,3.8000000000000016,3.850000000000002,3.850000000000002,3.900000000000002,3.900000000000002,3.950000000000002,3.950000000000002,4.000000000000003,4.000000000000003,4.0500000000000025,4.0500000000000025,4.100000000000002,4.100000000000002]},{"y":[null,0.0,0.0,0.0,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,0.0,0.0,0.0],"type":"scatter","name":"
@@ -17,11 +17,11 @@ window.PLOTLYENV = window.PLOTLYENV || {} - if (document.getElementById('9ad8cdbe-2227-44a7-8fd7-5de25e329b7a')) { + if (document.getElementById('de276b70-6328-4ec4-83c9-54f86e192692')) { Plotly.newPlot( - '9ad8cdbe-2227-44a7-8fd7-5de25e329b7a', - [{"y":[null,null,null,null,null],"type":"scatter","name":"Gx","hovertemplate":"(%{x:.4f} ms, %{y:.2f} mT/m)","x":[0.0,0.0,0.0,0.0,0.0]},{"y":[null,null,null,null,null],"type":"scatter","name":"Gy","hovertemplate":"(%{x:.4f} ms, %{y:.2f} mT/m)","x":[0.0,0.0,0.0,0.0,0.0]},{"y":[null,null,null,null,null],"type":"scatter","name":"Gz","hovertemplate":"(%{x:.4f} ms, %{y:.2f} mT/m)","x":[0.0,0.0,0.0,0.0,0.0]},{"y":[null,0.0,0.0,0.0,668.2066312775996,668.2066312775996,1164.3488132933187,1164.3488132933187,1261.3778810677616,1261.3778810677616,850.4448034442171,850.4448034442171,0.0,0.0,1039.4325375429328,1039.4325375429328,1892.0668216016427,1892.0668216016427,2162.3620818304485,2162.3620818304485,1559.1488063143984,1559.1488063143984,0.0,0.0,2338.7232094715982,2338.7232094715982,5045.511524271046,5045.511524271046,7568.267286406571,7568.267286406571,9354.892837886391,9354.892837886391,10000.0,10000.0,9354.892837886391,9354.892837886391,7568.267286406571,7568.267286406571,5045.511524271046,5045.511524271046,2338.7232094715982,2338.7232094715982,0.0,0.0,1559.1488063143984,1559.1488063143984,2162.3620818304485,2162.3620818304485,1892.0668216016427,1892.0668216016427,1039.4325375429328,1039.4325375429328,0.0,0.0,850.4448034442171,850.4448034442171,1261.3778810677616,1261.3778810677616,1164.3488132933187,1164.3488132933187,668.2066312775996,668.2066312775996,0.0,0.0,0.0],"type":"scatter","name":"|RF_1|","hovertemplate":"(%{x:.4f} ms, %{y:.2f} μT)","x":[0.0,0.1,0.1,0.11612903225806452,0.11612903225806452,0.13225806451612904,0.13225806451612904,0.14838709677419357,0.14838709677419357,0.16451612903225807,0.16451612903225807,0.18064516129032257,0.18064516129032257,0.1967741935483871,0.1967741935483871,0.21290322580645163,0.21290322580645163,0.22903225806451616,0.22903225806451616,0.2451612903225807,0.2451612903225807,0.2612903225806452,0.2612903225806452,0.2774193548387097,0.2774193548387097,0.2935483870967743,0.2935483870967743,0.3096774193548388,0.3096774193548388,0.32580645161290334,0.32580645161290334,0.34193548387096784,0.34193548387096784,0.35806451612903234,0.35806451612903234,0.37419354838709684,0.37419354838709684,0.39032258064516134,0.39032258064516134,0.4064516129032259,0.4064516129032259,0.4225806451612904,0.4225806451612904,0.43870967741935496,0.43870967741935496,0.45483870967741946,0.45483870967741946,0.470967741935484,0.470967741935484,0.4870967741935485,0.4870967741935485,0.5032258064516131,0.5032258064516131,0.5193548387096777,0.5193548387096777,0.5354838709677422,0.5354838709677422,0.5516129032258067,0.5516129032258067,0.5677419354838712,0.5677419354838712,0.5838709677419357,0.5838709677419357,0.6000000000000003,0.6000000000000003]},{"y":[null,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"type":"scatter","name":" -
ADC
ADC
a.T
a.T
a.delay
a.delay
a.N = 4
a.N = 4
[ s ]
[ s ]
:: ADC
a :: ADC
Text is not SVG - cannot display
\ No newline at end of file +
ADC
ADC
a.T
a.T
a.delay
a.delay
a.N = 4
a.N = 4
[ s ]
[ s ]
:: ADC
a :: ADC
Text is not SVG - cannot display
\ No newline at end of file diff --git a/dev/assets/event-shapes-gr-horizontal.svg b/dev/assets/event-shapes-gr-horizontal.svg index 399effd65..df03992fd 100644 --- a/dev/assets/event-shapes-gr-horizontal.svg +++ b/dev/assets/event-shapes-gr-horizontal.svg @@ -1,4 +1,4 @@ -
Gradient Trapezoidal Waveform
Gradient Trapezoidal Waveform
g.rise
g.rise
g.delay
g.delay
g.A
g.A
g.T
g.T
g.fall
g.fall
(g.rise = 0)
(g.rise =...
g.delay
g.delay
g.A = [0; 0.2; -0.3; 0; 0.4; -0.5]
g.A = [0; 0.2; -0.3; 0; 0.4; -0.5]
g.T
g.T
g.fall
g.fall
Gradient Uniformly-Sampled Waveform
Gradient Uniformly-Sampled Waveform
g.T
g.T
Gradient Time-Shaped Waveform
Gradient Time-Shaped Waveform
= [0.15; 0.25; 0.15; 0.2; 0.25]
= [0.15; 0.25; 0.15; 0.2; 0.25]
(g.rise = 0)
(g.rise =...
g.delay
g.delay
g.fall
g.fall
g.A = [0; 0.2; -0.3; 0; 0.4; -0.5]
g.A = [0; 0.2; -0.3; 0; 0.4; -0.5]
[ s ]
[ s ]
[ T/m ]
[ T/m ]
[ s ]
[ s ]
[ T/m ]
[ T/m ]
[ s ]
[ s ]
[ T/m ]
[ T/m ]
:: Grad
g :: Grad
:: Grad
g :: Grad
:: Grad
g :: Grad
Text is not SVG - cannot display
\ No newline at end of file +
Gradient Trapezoidal Waveform
Gradient Trapezoidal Waveform
g.rise
g.rise
g.delay
g.delay
g.A
g.A
g.T
g.T
g.fall
g.fall
(g.rise = 0)
(g.rise =...
g.delay
g.delay
g.A = [0; 0.2; -0.3; 0; 0.4; -0.5]
g.A = [0; 0.2; -0.3; 0; 0.4; -0.5]
g.T
g.T
g.fall
g.fall
Gradient Uniformly-Sampled Waveform
Gradient Uniformly-Sampled Waveform
g.T
g.T
Gradient Time-Shaped Waveform
Gradient Time-Shaped Waveform
= [0.15; 0.25; 0.15; 0.2; 0.25]
= [0.15; 0.25; 0.15; 0.2; 0.25]
(g.rise = 0)
(g.rise =...
g.delay
g.delay
g.fall
g.fall
g.A = [0; 0.2; -0.3; 0; 0.4; -0.5]
g.A = [0; 0.2; -0.3; 0; 0.4; -0.5]
[ s ]
[ s ]
[ T/m ]
[ T/m ]
[ s ]
[ s ]
[ T/m ]
[ T/m ]
[ s ]
[ s ]
[ T/m ]
[ T/m ]
:: Grad
g :: Grad
:: Grad
g :: Grad
:: Grad
g :: Grad
Text is not SVG - cannot display
\ No newline at end of file diff --git a/dev/assets/event-shapes-rf-horizontal.svg b/dev/assets/event-shapes-rf-horizontal.svg index d7d616592..82b761cf3 100644 --- a/dev/assets/event-shapes-rf-horizontal.svg +++ b/dev/assets/event-shapes-rf-horizontal.svg @@ -1,4 +1,4 @@ -
RF Pulse Waveform
RF Pulse Waveform
r.T
r.T
r.delay
r.delay
r.A
r.A
RF Uniformly-Sampled Waveform
RF Uniformly-Sampled Waveform
r.T
r.T
r.delay
r.delay
r.A = [0; -0.1; 0.2; -0.5; 1; -0.5; 0.2; -0.1; 0]
r.A = [0; -0.1; 0.2; -0.5; 1; -0.5; 0.2; -0.1; 0]
RF Time-Shaped Waveform
RF Time-Shaped Waveform
r.delay
r.delay
r.T
r.T
[ s ]
[ s ]
[ T ]
[ T ]
[ T ]
[ T ]
[ s ]
[ s ]
[ T ]
[ T ]
[ s ]
[ s ]
:: RF
r :: RF
:: RF
r :: RF
:: RF
r :: RF
Text is not SVG - cannot display
\ No newline at end of file +
RF Pulse Waveform
RF Pulse Waveform
r.T
r.T
r.delay
r.delay
r.A
r.A
RF Uniformly-Sampled Waveform
RF Uniformly-Sampled Waveform
r.T
r.T
r.delay
r.delay
r.A = [0; -0.1; 0.2; -0.5; 1; -0.5; 0.2; -0.1; 0]
r.A = [0; -0.1; 0.2; -0.5; 1; -0.5; 0.2; -0.1; 0]
RF Time-Shaped Waveform
RF Time-Shaped Waveform
r.delay
r.delay
r.T
r.T
[ s ]
[ s ]
[ T ]
[ T ]
[ T ]
[ T ]
[ s ]
[ s ]
[ T ]
[ T ]
[ s ]
[ s ]
:: RF
r :: RF
:: RF
r :: RF
:: RF
r :: RF
Text is not SVG - cannot display
\ No newline at end of file diff --git a/dev/assets/examples/1-seq.html b/dev/assets/examples/1-seq.html index 85e295ca1..53dca1dce 100644 --- a/dev/assets/examples/1-seq.html +++ b/dev/assets/examples/1-seq.html @@ -9,7 +9,7 @@
@@ -17,9 +17,9 @@ window.PLOTLYENV = window.PLOTLYENV || {} - if (document.getElementById('9d70e858-cc9e-4035-bee6-74c15c50cf9b')) { + if (document.getElementById('8e0851b2-24d4-4d22-a942-e2e9c9c60e19')) { Plotly.newPlot( - '9d70e858-cc9e-4035-bee6-74c15c50cf9b', + '8e0851b2-24d4-4d22-a942-e2e9c9c60e19', [{"y":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"type":"scatter","name":"Gx","hovertemplate":"(%{x:.4f} ms, %{y:.2f} mT/m)","x":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.935825062479995,2.935825062479995,2.935825062479995,2.935825062479995,2.935825062479995]},{"y":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"type":"scatter","name":"Gy","hovertemplate":"(%{x:.4f} ms, %{y:.2f} mT/m)","x":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.935825062479995,2.935825062479995,2.935825062479995,2.935825062479995,2.935825062479995]},{"y":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"type":"scatter","name":"Gz","hovertemplate":"(%{x:.4f} ms, %{y:.2f} mT/m)","x":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.935825062479995,2.935825062479995,2.935825062479995,2.935825062479995,2.935825062479995]},{"y":[null,null,null,null,null,null,0.0,2.0,2.0,0.0,null,null,null,null,null],"type":"scatter","name":"|RF_1|","hovertemplate":"(%{x:.4f} ms, %{y:.2f} μT)","x":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.935825062479995,2.935825062479995,2.935825062479995,2.935825062479995,2.935825062479995,2.935825062479995,2.935825062479995]},{"y":[null,null,null,null,null,null,0.0,0.0,0.0,0.0,null,null,null,null,null],"type":"scatter","name":"
@@ -17,9 +17,9 @@ window.PLOTLYENV = window.PLOTLYENV || {} - if (document.getElementById('1143f5cf-bab4-47d8-a345-d533b58c8024')) { + if (document.getElementById('518f2e63-c6ba-4b0a-a518-133b50725ca4')) { Plotly.newPlot( - '1143f5cf-bab4-47d8-a345-d533b58c8024', + '518f2e63-c6ba-4b0a-a518-133b50725ca4', [{"y":[0.9758124,0.9755146,0.97521687,0.97491926,0.9746218,0.97432435,0.97402704,0.9737297,0.9734326,0.97313553,0.9728386,0.9725417,0.9722449,0.97194827,0.9716516,0.97135514,0.97105867,0.9707624,0.9704661,0.97016996,0.96987385,0.9695779,0.96928203,0.9689863,0.9686905,0.9683949,0.9680994,0.96780396,0.9675086,0.9672134,0.96691823,0.9666231,0.96632814,0.9660332,0.9657385,0.9654438,0.96514916,0.9648546,0.96456015,0.9642658,0.96397156,0.96367735,0.9633833,0.9630893,0.9627954,0.9625016,0.96220785,0.96191424,0.9616207,0.9613272,0.9610339,0.96074057,0.96044743,0.96015435,0.9598613,0.9595684,0.9592756,0.9589828,0.95869017,0.9583976,0.95810515,0.9578128,0.9575204,0.9572283,0.9569361,0.9566441,0.9563522,0.95606035,0.9557686,0.9554769,0.95518535,0.9548938,0.9546025,0.95431113,0.9540199,0.95372874,0.95343775,0.95314676,0.9528559,0.95256513,0.9522744,0.95198387,0.95169336,0.9514029,0.95111257,0.9508223,0.95053214,0.9502421,0.9499521,0.9496622,0.9493724,0.9490827,0.94879305,0.9485035,0.94821405,0.9479247,0.9476354,0.94734627,0.9470572,0.9467681,0.9464792,0.94619036,0.9459016,0.94561297,0.9453244,0.9450359,0.9447475,0.9444592,0.944171,0.9438829,0.9435948,0.9433069,0.94301903,0.9427312,0.94244355,0.9421559,0.9418684,0.941581,0.94129366,0.9410064,0.94071925,0.94043213,0.94014513,0.9398583,0.9395715,0.93928474,0.9389981,0.9387115,0.9384251,0.9381387,0.93785244,0.9375662,0.9372801,0.9369941,0.93670815,0.9364223,0.93613654,0.93585086,0.9355653,0.9352797,0.93499434,0.934709,0.93442374,0.93413866,0.93385357,0.93356854,0.9332837,0.9329989,0.9327141,0.9324295,0.932145,0.9318605,0.93157613,0.9312919,0.9310076,0.93072355,0.9304395,0.9301556,0.9298717,0.92958796,0.92930424,0.9290207,0.92873716,0.92845374,0.92817044,0.9278872,0.927604,0.92732096,0.92703795,0.9267551,0.92647225,0.92618954,0.9259069,0.9256243,0.92534184,0.92505944,0.92477715,0.9244949,0.9242128,0.9239308,0.9236489,0.923367,0.9230852,0.92280346,0.9225219,0.9222404,0.9219589,0.9216776,0.9213963,0.92111516,0.92083406,0.920553,0.9202721,0.91999125,0.9197106,0.91942984,0.9191493,0.91886884,0.91858834,0.9183081,0.9180278,0.9177477,0.91746765,0.91718763,0.9169077,0.9166279,0.9163482,0.91606855,0.915789,0.9155095,0.91523015,0.91495085,0.91467166,0.9143925,0.9141135,0.9138345,0.9135556,0.91327685,0.9129982,0.91271955,0.912441,0.91216254,0.9118842,0.9116059,0.9113278,0.91104966,0.9107716,0.9104937,0.91021585,0.90993804,0.9096604,0.90938276,0.9091053,0.90882784,0.90855044,0.9082732,0.90799606,0.90771896,0.907442,0.90716505,0.9068882,0.90661144,0.9063348,0.9060582,0.9057817,0.9055053,0.9052289,0.9049527,0.90467656,0.90440047,0.9041245,0.9038485,0.90357274,0.903297,0.90302134,0.9027458,0.9024703,0.90219486,0.9019196,0.90164435,0.90136915,0.90109414,0.9008191,0.9005442,0.90026945,0.8999947,0.89972,0.8994455,0.89917094,0.89889663,0.8986223,0.89834803,0.8980739,0.89779985,0.89752585,0.89725196,0.89697814,0.89670444,0.8964308,0.8961572,0.89588374,0.89561033,0.89533705,0.8950638,0.8947907,0.8945176,0.8942446,0.89397174,0.89369893,0.89342624,0.89315355,0.892881,0.8926085,0.89233613,0.8920638,0.8917916,0.8915194,0.8912474,0.8909754,0.8907035,0.8904317,0.89015996,0.88988835,0.8896167,0.8893453,0.88907385,0.8888025,0.8885313,0.8882602,0.88798916,0.88771814,0.88744724,0.8871764,0.88690567,0.886635,0.8863644,0.8860939,0.88582355,0.88555324,0.885283,0.8850128,0.88474274,0.8844727,0.88420284,0.883933,0.88366324,0.8833936,0.883124,0.8828545,0.8825851,0.88231575,0.8820465,0.88177735,0.88150823,0.88123924,0.88097036,0.8807014,0.8804327,0.880164,0.87989545,0.8796269,0.8793585,0.87909013,0.8788219,0.8785537,0.8782856,0.87801754,0.8777496,0.87748176,0.87721395,0.8769463,0.87667865,0.8764111,0.87614363,0.87587625,0.875609,0.8753418,0.8750747,0.87480766,0.8745407,0.87427384,0.874007,0.87374026,0.87347364,0.8732071,0.8729406,0.8726742,0.87240785,0.87214166,0.8718755,0.87160945,0.8713435,0.87107754,0.87081176,0.87054604,0.8702804,0.8700147,0.86974925,0.8694838,0.86921847,0.8689532,0.8686881,0.868423,0.868158,0.86789304,0.8676282,0.86736345,0.8670987,0.8668341,0.8665696,0.8663052,0.86604077,0.8657765,0.8655123,0.86524814,0.8649841,0.86472017,0.8644563,0.8641924,0.8639287,0.8636651,0.86340153,0.863138,0.8628746,0.8626113,0.8623481,0.8620849,0.86182183,0.86155885,0.86129594,0.8610331,0.8607703,0.8605076,0.86024505,0.8599825,0.8597201,0.85945773,0.8591955,0.85893327,0.8586711,0.8584091,0.85814714,0.8578853,0.85762346,0.85736173,0.85710007,0.8568386,0.8565771,0.8563157,0.85605437,0.8557931,0.855532,0.85527086,0.8550099,0.85474896,0.85448813,0.85422736,0.8539667,0.85370606,0.8534456,0.8531851,0.85292476,0.8526645,0.85240424,0.8521441,0.85188407,0.85162413,0.8513642,0.8511044,0.8508447,0.85058504,0.8503255,0.850066,0.84980655,0.8495472,0.849288,0.8490288,0.8487697,0.8485107,0.84825176,0.8479929,0.84773415,0.84747547,0.84721684,0.8469583,0.84669983,0.84644145,0.8461831,0.8459249,0.84566677,0.8454087,0.8451507,0.8448928,0.84463495,0.84437716,0.8441195,0.8438619,0.8436044,0.84334695,0.8430896,0.84283227,0.8425751,0.842318,0.8420609,0.84180397,0.8415471,0.8412903,0.8410335,0.84077686,0.8405203,0.8402638,0.84000736,0.839751,0.83949476,0.8392386,0.83898246,0.83872646,0.83847046,0.83821464,0.8379588,0.8377031,0.83744746,0.83719194,0.8369364,0.83668107,0.83642566,0.8361705,0.83591527,0.8356602,0.8354052,0.83515024,0.8348954,0.83464056,0.8343859,0.83413124,0.8338767,0.8336223,0.8333678,0.8331135,0.8328593,0.8326051,0.832351,0.832097,0.83184314,0.8315893,0.8313355,0.8310818,0.8308282,0.83057463,0.8303212,0.8300678,0.8298145,0.82956123,0.8293081,0.829055,0.828802,0.8285491,0.82829624,0.8280435,0.8277908,0.82753813,0.8272856,0.82703316,0.8267808,0.8265285,0.8262763,0.8260241,0.82577205,0.82552004,0.8252681,0.8250163,0.8247645,0.82451284,0.8242612,0.82400966,0.8237582,0.8235068,0.8232555,0.82300425,0.82275313,0.8225021,0.822251,0.82200015,0.8217493,0.8214985,0.8212478,0.82099724,0.82074666,0.8204962,0.8202458,0.81999546,0.81974524,0.8194951,0.81924504,0.81899506,0.8187451,0.8184952,0.8182455,0.8179957,0.8177461,0.8174966,0.8172471,0.8169977,0.8167484,0.8164992,0.81624997,0.8160009,0.8157519,0.8155029,0.8152541,0.8150053,0.8147566,0.81450796,0.8142594,0.81401086,0.8137625,0.8135142,0.8132659,0.81301767,0.8127696,0.8125216,0.8122736,0.8120257,0.81177795,0.81153023,0.8112825,0.811035,0.8107875,0.8105401,0.8102927,0.8100454,0.80979824,0.80955106,0.809304,0.80905706,0.8088102,0.80856335,0.8083166,0.80806994,0.80782336,0.80757684,0.80733037,0.807084,0.8068377,0.80659145,0.80634534,0.80609924,0.8058533,0.8056074,0.8053615,0.80511576,0.80487007,0.80462444,0.80437887,0.8041334,0.803888,0.8036427,0.8033975,0.8031523,0.80290717,0.8026622,0.8024172,0.80217236,0.80192757,0.8016829,0.8014382,0.80119365,0.80094916,0.8007047,0.8004604,0.8002161,0.79997194,0.7997278,0.7994837,0.79923975,0.79899585,0.798752,0.7985083,0.79826456,0.79802096,0.7977775,0.797534,0.7972906,0.7970473,0.7968041,0.79656094,0.7963179,0.7960748,0.7958319,0.795589,0.7953462,0.7951035,0.7948609,0.79461837,0.79437584,0.79413337,0.7938911,0.7936488,0.7934066,0.7931645,0.79292244,0.79268044,0.79243857,0.7921967,0.791955,0.79171336,0.7914717,0.79123014,0.7909887,0.79074734,0.79050606,0.7902648,0.7900236,0.7897825,0.78954154,0.7893006,0.7890597,0.78881896,0.7885782,0.7883375,0.78809696,0.78785646,0.7876161,0.7873757,0.7871354,0.7868952,0.78665507,0.78641504,0.7861751,0.7859351,0.78569525,0.78545547,0.7852158,0.7849762,0.78473663,0.7844972,0.78425777,0.78401846,0.7837792,0.78354,0.7833009,0.7830618,0.7828229,0.782584,0.7823452,0.7821064,0.78186774,0.78162915,0.7813906,0.7811522,0.78091383,0.7806755,0.78043723,0.78019905,0.779961,0.779723,0.77948505,0.77924716,0.77900934,0.7787716,0.77853394,0.77829635,0.7780589,0.7778215,0.7775841,0.7773468,0.77710956,0.7768724,0.77663535,0.77639836,0.77616143,0.7759245,0.77568775,0.77545106,0.77521443,0.77497786,0.77474135,0.7745049,0.77426857,0.7740323,0.7737961,0.7735599,0.7733239,0.7730879,0.772852,0.77261615,0.77238035,0.7721446,0.771909,0.77167344,0.77143794,0.77120256,0.7709672,0.7707319,0.7704967,0.7702616,0.77002656,0.76979154,0.76955664,0.7693218,0.769087,0.76885235,0.7686177,0.76838315,0.76814866,0.76791424,0.7676799,0.7674457,0.76721144,0.7669773,0.76674324,0.76650923,0.76627535,0.7660415,0.76580775,0.7655741,0.76534045,0.76510686,0.7648734,0.76464,0.7644066,0.7641733,0.76394016,0.76370704,0.7634739,0.763241,0.76300806,0.76277524,0.7625424,0.76230973,0.76207715,0.7618445,0.76161206,0.76137966,0.76114726,0.760915,0.76068276,0.76045066,0.7602186,0.75998664,0.7597547,0.75952286,0.7592911,0.75905937,0.7588277,0.7585961,0.7583646,0.75813323,0.75790185,0.7576706,0.7574394,0.7572082,0.75697714,0.7567462,0.7565152,0.75628436,0.75605357,0.75582284,0.75559217,0.7553616,0.75513107,0.75490063,0.75467026,0.75443995,0.75420976,0.75397956,0.7537495,0.7535195,0.7532895,0.7530596,0.75282985,0.7526001,0.7523704,0.7521408,0.7519113,0.75168186,0.75145245,0.75122315,0.7509939,0.7507647,0.7505356,0.75030655,0.7500776,0.7498487,0.7496199,0.74939114,0.74916244,0.7489338,0.74870527,0.74847674,0.7482484,0.74802,0.74779177,0.74756354,0.74733543,0.7471074,0.7468794,0.7466515,0.7464236,0.7461958,0.7459681,0.7457405,0.7455129,0.7452854,0.74505794,0.74483055,0.7446033,0.74437606,0.7441489,0.74392176,0.7436948,0.7434678,0.74324095,0.7430141,0.74278736,0.74256074,0.74233407,0.74210757,0.74188113,0.7416547,0.7414284,0.7412021,0.7409759,0.7407498,0.74052376,0.74029773,0.74007183,0.739846,0.7396202,0.73939455,0.7391689,0.73894334,0.7387178,0.7384924,0.738267,0.73804176,0.7378165,0.7375914,0.73736626,0.73714125,0.7369163,0.7366914,0.7364666,0.7362418,0.73601717,0.7357926,0.73556805,0.7353436,0.73511916,0.7348948,0.7346706,0.73444635,0.73422223,0.7339982,0.7337742,0.73355025,0.73332644,0.7331026,0.73287886,0.7326552,0.7324317,0.73220813,0.73198473,0.73176134,0.731538,0.7313148,0.7310916,0.7308685,0.7306455,0.7304225,0.7301996,0.7299768,0.72975403,0.7295313,0.72930866,0.7290861,0.7288636,0.7286412,0.7284189,0.72819656,0.72797436,0.72775215,0.72753006,0.7273081,0.7270861,0.7268643,0.72664243,0.7264207,0.726199,0.72597736,0.7257559,0.7255344,0.72531295,0.72509164,0.7248703,0.72464913,0.724428,0.7242069,0.7239859,0.723765,0.7235441,0.72332335,0.72310257,0.7228819,0.7226613,0.7224408,0.7222203,0.72199994,0.72177964,0.72155935,0.72133917,0.721119,0.7208989,0.7206789,0.72045904,0.72023916,0.7200194,0.71979964,0.71958,0.7193604,0.7191409,0.7189214,0.718702,0.71848273,0.71826345,0.7180443,0.7178252,0.71760607,0.7173871,0.71716815,0.71694934,0.71673054,0.7165118,0.71629316,0.7160745,0.715856,0.71563756,0.7154192,0.71520084,0.71498257,0.7147644,0.7145463,0.7143282,0.71411026,0.71389234,0.7136745,0.7134567,0.71323895,0.71302134,0.7128037,0.71258616,0.7123687,0.71215135,0.71193403,0.7117168,0.7114996,0.71128243,0.71106535,0.7108484,0.71063143,0.7104146,0.7101978,0.7099811,0.7097644,0.7095478,0.7093313,0.70911485,0.7088984,0.7086821,0.7084658,0.7082496,0.7080335,0.70781744,0.7076014,0.7073855,0.7071696,0.7069538,0.7067381,0.7065224,0.7063068,0.7060913,0.70587575,0.7056604,0.70544505,0.70522976,0.7050146,0.7047994,0.7045843,0.7043693,0.7041544,0.7039395,0.7037246,0.70350987,0.70329523,0.70308053,0.702866,0.7026515,0.7024371,0.70222276,0.7020085,0.7017942,0.70158005,0.70136595,0.7011519,0.7009379,0.70072407,0.70051026,0.70029646,0.7000827,0.6998691,0.69965553,0.699442,0.6992285,0.6990152,0.6988019,0.6985886,0.6983754,0.6981623,0.6979493,0.69773626,0.6975233,0.69731045,0.69709766,0.696885,0.69667226,0.69645965,0.6962471,0.69603467,0.6958223,0.6956099,0.6953977,0.6951854,0.6949733,0.6947612,0.69454914,0.69433725,0.69412535,0.6939135,0.6937018,0.6934901,0.69327843,0.6930669,0.69285536,0.69264394,0.6924325,0.6922212,0.69201,0.69179887,0.69158775,0.6913767,0.6911657,0.6909548,0.6907439,0.6905331,0.6903224,0.69011176,0.6899011,0.6896906,0.6894801,0.6892697,0.6890594,0.6888491,0.6886389,0.68842876,0.68821865,0.6880086,0.6877987,0.6875888,0.68737894,0.6871692,0.68695945,0.6867498,0.68654025,0.68633074,0.6861213,0.68591195,0.6857026,0.68549335,0.6852842,0.68507504,0.684866,0.684657,0.68444806,0.6842392,0.68403035,0.6838216,0.683613,0.6834044,0.68319577,0.6829873,0.6827789,0.6825705,0.6823622,0.682154,0.6819458,0.6817377,0.6815297,0.6813217,0.6811138,0.68090594,0.6806981,0.6804904,0.6802828,0.68007517,0.6798676,0.67966014,0.6794528,0.6792454,0.6790381,0.67883086,0.67862374,0.67841667,0.6782096,0.6780026,0.67779577,0.6775889,0.6773821,0.6771754,0.67696875,0.67676216,0.67655563,0.67634916,0.67614275,0.6759364,0.67573017,0.67552394,0.6753178,0.6751117,0.6749057,0.6746997,0.67449385,0.67428803,0.6740823,0.6738765,0.6736709,0.6734653,0.6732598,0.67305434,0.67284894,0.6726436,0.6724383,0.67223316,0.672028,0.6718229,0.67161787,0.67141294,0.671208,0.6710032,0.6707984,0.67059374,0.6703891,0.67018455,0.66998005,0.66977555,0.66957116,0.66936684,0.6691626,0.66895837,0.6687542,0.66855013,0.6683461,0.66814214,0.66793823,0.66773444,0.66753066,0.6673269,0.6671233,0.6669197,0.6667162,0.6665127,0.6663093,0.666106,0.66590273,0.66569954,0.6654964,0.6652933,0.66509026,0.6648873,0.66468436,0.6644816,0.66427875,0.6640761,0.6638734,0.66367084,0.66346824,0.6632658,0.6630634,0.66286105,0.66265875,0.6624565,0.6622544,0.66205233,0.6618503,0.6616483,0.66144633,0.6612445,0.66104275,0.66084105,0.66063935,0.6604377,0.6602362,0.6600347,0.6598333,0.6596319,0.6594306,0.6592294,0.65902823,0.6588271,0.6586261,0.6584251,0.65822417,0.6580233,0.6578225,0.65762174,0.65742105,0.6572204,0.65701985,0.65681934,0.6566189,0.65641856,0.65621823,0.65601796,0.65581775,0.65561765,0.65541756,0.6552175,0.65501755,0.6548177,0.6546179,0.6544181,0.65421844,0.65401876,0.6538192,0.65361965,0.6534202,0.6532208,0.65302145,0.65282214,0.65262294,0.6524238,0.65222466,0.65202564,0.6518267,0.6516277,0.65142894,0.6512301,0.6510314,0.6508327,0.6506341,0.6504355,0.6502371,0.6500386,0.6498403,0.64964193,0.6494437,0.6492455,0.6490474,0.6488493,0.6486513,0.64845335,0.64825547,0.64805764,0.6478599,0.64766216,0.6474645,0.6472669,0.64706945,0.6468719,0.6466745,0.6464772,0.64627993,0.6460827,0.6458855,0.6456885,0.64549136,0.6452944,0.6450975,0.6449006,0.6447038,0.64450705,0.6443104,0.6441138,0.6439172,0.64372075,0.6435243,0.6433279,0.64313155,0.6429353,0.6427391,0.64254296,0.6423469,0.6421509,0.6419549,0.641759,0.6415631,0.6413674,0.64117163,0.64097595,0.6407804,0.6405848,0.6403894,0.6401939,0.63999856,0.63980323,0.63960797,0.6394128,0.6392177,0.6390226,0.6388276,0.63863266,0.63843775,0.63824296,0.6380482,0.63785344,0.63765883,0.6374642,0.6372697,0.6370752,0.6368808,0.63668644,0.63649213,0.63629794,0.63610375,0.6359096,0.63571554,0.6355216,0.63532764,0.63513374,0.6349399,0.6347462,0.6345525,0.6343588,0.6341652,0.6339717,0.6337782,0.63358486,0.6333915,0.6331982,0.63300496,0.6328118,0.63261867,0.6324256,0.6322326,0.63203967,0.6318468,0.63165396,0.6314612,0.6312685,0.63107586,0.63088334,0.63069075,0.6304983,0.6303059,0.63011354,0.62992126,0.62972903,0.62953687,0.62934476,0.62915266,0.62896067,0.62876874,0.6285769,0.62838507,0.6281933,0.6280016,0.62780994,0.6276184,0.62742686,0.62723535,0.62704396,0.6268526,0.6266613,0.62647,0.6262789,0.6260878,0.6258967,0.6257057,0.62551475,0.6253239,0.62513304,0.62494224,0.62475157,0.6245609,0.62437034,0.6241798,0.6239893,0.6237989,0.6236085,0.6234182,0.62322795,0.6230378,0.6228477,0.6226576,0.6224676,0.6222776,0.6220877,0.6218979,0.6217081,0.6215184,0.6213287,0.6211391,0.62094957,0.6207601,0.6205706,0.62038124,0.62019193,0.6200027,0.61981344,0.6196243,0.6194352,0.6192462,0.61905724,0.6188683,0.61867946,0.61849064,0.6183019,0.6181132,0.6179246,0.61773604,0.6175475,0.61735904,0.61717063,0.6169823,0.61679405,0.6166058,0.61641765,0.61622953,0.6160415,0.6158534,0.6156655,0.6154777,0.61528987,0.61510205,0.61491436,0.6147267,0.61453915,0.6143516,0.6141641,0.61397666,0.6137893,0.613602,0.61341476,0.61322755,0.61304045,0.61285335,0.6126663,0.6124793,0.6122924,0.6121056,0.6119188,0.61173207,0.6115454,0.61135876,0.6111722,0.6109857,0.61079925,0.6106128,0.6104265,0.6102402,0.61005396,0.6098678,0.6096817,0.60949564,0.6093097,0.6091237,0.60893786,0.608752,0.6085662,0.6083805,0.6081949,0.6080093,0.6078237,0.60763824,0.6074528,0.60726744,0.6070821,0.6068969,0.6067117,0.6065265,0.6063414,0.6061564,0.6059714,0.6057865,0.6056016,0.6054168,0.605232,0.60504735,0.6048627,0.60467815,0.6044936,0.60430914,0.6041247,0.60394037,0.60375607,0.60357183,0.6033876,0.6032035,0.60301936,0.6028354,0.6026514,0.60246754,0.60228366,0.60209984,0.60191613,0.60173243,0.6015488,0.6013652,0.60118175,0.6009982,0.6008148,0.6006315,0.6004482,0.60026497,0.60008174,0.59989864,0.5997156,0.59953254,0.5993496,0.5991667,0.5989839,0.5988011,0.5986183,0.59843564,0.598253,0.59807044,0.59788793,0.5977055,0.5975231,0.5973407,0.5971585,0.5969762,0.59679407,0.5966119,0.5964299,0.59624785,0.5960659,0.59588397,0.5957022,0.5955204,0.59533864,0.59515697,0.59497535,0.5947938,0.59461224,0.5944308,0.5942494,0.59406805,0.59388673,0.59370553,0.5935244,0.5933432,0.5931622,0.59298116,0.5928002,0.5926193,0.59243846,0.5922577,0.5920769,0.59189624,0.5917156,0.59153503,0.5913545,0.591174,0.59099364,0.5908133,0.59063303,0.59045273,0.59027255,0.5900925,0.58991235,0.58973235,0.58955234,0.58937246,0.58919257,0.5890128,0.58883303,0.5886534,0.58847374,0.58829415,0.5881146,0.58793515,0.58775574,0.5875764,0.58739704,0.5872178,0.5870386,0.58685946,0.58668035,0.58650136,0.5863223,0.58614343,0.58596456,0.58578575,0.585607,0.5854283,0.5852496,0.585071,0.58489245,0.584714,0.58453554,0.58435714,0.58417886,0.5840005,0.5838223,0.5836442,0.58346605,0.583288,0.58311003,0.58293205,0.5827542,0.58257633,0.5823986,0.58222085,0.5820432,0.58186555,0.581688,0.5815105,0.581333,0.5811556,0.5809783,0.58080095,0.58062375,0.58044654,0.5802694,0.5800923,0.5799153,0.5797383,0.5795614,0.57938457,0.5792077,0.579031,0.57885426,0.57867765,0.57850105,0.5783245,0.578148,0.5779716,0.5777952,0.5776189,0.5774426,0.5772664,0.57709026,0.57691413,0.57673806,0.5765621,0.57638615,0.57621026,0.57603437,0.5758586,0.5756829,0.57550716,0.57533157,0.575156,0.57498044,0.574805,0.5746296,0.57445425,0.57427895,0.57410365,0.5739285,0.57375336,0.5735783,0.5734032,0.57322824,0.5730533,0.5728784,0.5727036,0.57252884,0.57235414,0.57217944,0.57200485,0.5718303,0.5716558,0.57148135,0.57130694,0.5711326,0.5709583,0.57078403,0.57060987,0.57043576,0.57026166,0.5700876,0.5699137,0.56973976,0.5695659,0.5693921,0.56921834,0.5690446,0.56887096,0.5686974,0.5685238,0.5683503,0.56817687,0.5680035,0.56783015,0.5676569,0.56748366,0.56731045,0.56713736,0.56696427,0.56679124,0.56661826,0.56644535,0.56627256,0.5660997,0.56592697,0.56575423,0.56558156,0.565409,0.56523645,0.56506395,0.5648915,0.56471914,0.5645468,0.5643745,0.5642023,0.5640301,0.563858,0.56368595,0.56351393,0.5633419,0.56317,0.5629982,0.56282634,0.5626546,0.56248295,0.5623113,0.5621397,0.56196815,0.5617966,0.5616252,0.56145376,0.56128246,0.5611112,0.56093997,0.5607688,0.56059766,0.56042653,0.5602555,0.5600846,0.55991364,0.55974275,0.559572,0.5594012,0.5592305,0.5590598,0.5588892,0.5587186,0.55854815,0.55837774,0.55820733,0.558037,0.5578667,0.5576964,0.55752623,0.5573561,0.557186,0.55701596,0.556846,0.5566761,0.5565062,0.55633634,0.5561666,0.5559969,0.5558272,0.55565757,0.555488,0.5553185,0.555149,0.5549796,0.5548103,0.55464095,0.5544717,0.55430245,0.5541333,0.5539642,0.55379516,0.5536262,0.5534572,0.55328834,0.5531195,0.5529507,0.55278194,0.55261326,0.55244464,0.552276,0.5521075,0.551939,0.55177057,0.5516022,0.55143386,0.5512656,0.55109733,0.5509292,0.55076104,0.55059296,0.550425,0.55025697,0.55008906,0.5499212,0.54975337,0.54958564,0.5494179,0.54925025,0.54908264,0.548915,0.54874754,0.5485801,0.5484127,0.5482453,0.54807806,0.54791075,0.54774356,0.5475764,0.5474093,0.5472423,0.5470753,0.5469083,0.54674137,0.5465746,0.54640776,0.54624104,0.54607433,0.5459077,0.5457411,0.54557455,0.54540807,0.5452416,0.54507524,0.5449089,0.5447426,0.54457635,0.54441017,0.54424405,0.54407793,0.5439119,0.54374593,0.54358,0.5434141,0.5432483,0.54308254,0.5429168,0.5427511,0.5425855,0.5424199,0.5422544,0.54208887,0.54192346,0.54175806,0.5415928,0.5414275,0.5412622,0.54109704,0.54093194,0.5407669,0.54060185,0.54043686,0.54027194,0.5401071,0.53994226,0.53977746,0.53961277,0.5394481,0.53928345,0.5391189,0.5389544,0.5387899,0.5386255,0.5384611,0.5382968,0.5381325,0.5379683,0.5378041,0.53764004,0.53747594,0.5373119,0.537148,0.536984,0.5368202,0.5366563,0.5364926,0.53632885,0.5361652,0.53600156,0.535838,0.5356745,0.535511,0.5353476,0.5351842,0.5350209,0.53485763,0.5346944,0.53453124,0.5343681,0.5342051,0.53404206,0.53387904,0.53371614,0.53355324,0.5333904,0.5332277,0.53306496,0.5329023,0.53273964,0.5325771,0.53241456,0.5322521,0.53208965,0.5319273,0.531765,0.5316026,0.53144044,0.53127825,0.5311161,0.53095406,0.530792,0.53063005,0.5304681,0.5303062,0.5301444,0.5299826,0.52982086,0.52965915,0.52949756,0.529336,0.52917445,0.5290129,0.5288515,0.5286901,0.52852875,0.5283675,0.5282062,0.52804506,0.5278839,0.52772284,0.5275618,0.5274008,0.52723986,0.5270789,0.52691805,0.5267573,0.52659655,0.52643585,0.5262752,0.5261146,0.52595407,0.52579355,0.5256331,0.52547264,0.5253123,0.525152,0.52499175,0.52483153,0.5246714,0.5245113,0.5243512,0.5241912,0.5240312,0.5238713,0.52371144,0.5235516,0.52339184,0.52323216,0.5230724,0.52291286,0.5227533,0.52259374,0.52243423,0.52227485,0.52211547,0.5219561,0.5217968,0.5216376,0.5214784,0.52131927,0.5211602,0.52100116,0.52084213,0.5206832,0.5205243,0.5203655,0.5202067,0.5200479,0.51988924,0.51973057,0.51957196,0.5194134,0.5192549,0.51909643,0.518938,0.51877964,0.5186213,0.5184631,0.5183048,0.5181467,0.51798856,0.5178305,0.5176725,0.5175145,0.5173566,0.5171987,0.51704085,0.5168831,0.51672536,0.51656765,0.51641005,0.5162524,0.5160949,0.5159374,0.51578,0.5156225,0.5154652,0.5153079,0.5151506,0.5149934,0.51483625,0.51467913,0.5145221,0.5143651,0.5142081,0.5140512,0.5138943,0.5137375,0.51358074,0.513424,0.5132673,0.5131107,0.5129541,0.51279753,0.5126411,0.5124846,0.51232827,0.5121719,0.5120156,0.51185936,0.51170313,0.51154697,0.5113909,0.5112348,0.51107883,0.51092285,0.5107669,0.51061106,0.51045525,0.51029944,0.51014376,0.50998807,0.50983244,0.5096768,0.5095213,0.5093658,0.50921035,0.50905496,0.5088996,0.50874436,0.5085891,0.5084339,0.5082787,0.50812364,0.50796854,0.5078135,0.5076586,0.5075036,0.5073488,0.5071939,0.5070392,0.50688446,0.5067298,0.50657517,0.50642055,0.506266,0.5061115,0.50595707,0.50580263,0.5056483,0.505494,0.50533974,0.5051855,0.50503135,0.5048772,0.5047232,0.5045691,0.50441515,0.5042612,0.50410736,0.5039535,0.50379974,0.503646,0.5034923,0.50333863,0.50318503,0.5030315,0.50287795,0.50272447,0.50257105,0.50241774,0.5022644,0.50211114,0.5019579,0.5018047,0.5016516,0.5014985,0.50134546,0.50119245,0.5010395,0.5008866,0.50073373,0.50058097,0.5004282,0.5002755,0.50012285,0.4999702,0.4998176,0.49966508,0.4995126,0.49936017,0.4992078,0.49905545,0.49890316,0.4987509,0.4985987,0.49844652,0.49829444,0.49814236,0.49799037,0.49783838,0.49768648,0.49753457,0.49738273,0.49723098,0.49707922,0.49692756,0.4967759,0.4966243,0.49647275,0.49632123,0.49616975,0.49601835,0.495867,0.49571568,0.4955644,0.49541315,0.49526197,0.4951108,0.49495974,0.4948087,0.49465773,0.49450678,0.49435586,0.494205,0.49405417,0.4939034,0.49375266,0.493602,0.49345136,0.4933008,0.49315026,0.49299973,0.4928493,0.4926989,0.49254853,0.49239823,0.492248,0.49209777,0.4919476,0.49179748,0.49164736,0.49149734,0.49134737,0.49119744,0.4910475,0.49089766,0.49074787,0.4905981,0.4904484,0.49029872,0.4901491,0.4899995,0.48984998,0.48970053,0.48955107,0.48940167,0.48925233,0.48910302,0.48895374,0.48880452,0.4886554,0.48850626,0.48835716,0.48820814,0.48805916,0.4879102,0.48776132,0.4876125,0.48746368,0.4873149,0.4871662,0.48701754,0.48686892,0.48672035,0.48657182,0.4864233,0.4862749,0.4861265,0.48597813,0.48582983,0.48568156,0.48553336,0.4853852,0.4852371,0.485089,0.48494098,0.48479298,0.48464504,0.48449713,0.48434928,0.4842015,0.48405373,0.483906,0.48375833,0.4836107,0.48346314,0.4833156,0.4831681,0.48302066,0.48287326,0.4827259,0.48257858,0.48243132,0.4822841,0.4821369,0.48198977,0.4818427,0.48169562,0.48154867,0.48140168,0.4812548,0.48110795,0.4809611,0.48081434,0.48066762,0.48052093,0.48037428,0.48022768,0.48008114,0.47993466,0.47978818,0.47964177,0.47949538,0.47934908,0.47920278,0.47905654,0.47891036,0.4787642,0.4786181,0.47847202,0.47832605,0.47818008,0.47803414,0.47788826,0.4777424,0.47759664,0.4774509,0.4773052,0.47715953,0.47701392,0.47686836,0.47672284,0.47657734,0.4764319,0.47628653,0.47614115,0.47599587,0.4758506,0.4757054,0.47556022,0.4754151,0.47527003,0.47512498,0.47498,0.47483507,0.47469014,0.47454527,0.47440046,0.47425568,0.47411096,0.4739663,0.47382167,0.47367707,0.47353253,0.47338802,0.47324353,0.4730991,0.47295472,0.47281042,0.4726661,0.4725219,0.4723777,0.47223353,0.4720894,0.47194535,0.47180134,0.47165737,0.47151342,0.47136953,0.47122568,0.47108188,0.47093815,0.4707944,0.47065073,0.47050712,0.47036353,0.47022,0.4700765,0.46993306,0.46978965,0.46964628,0.46950296,0.4693597,0.46921644,0.46907327,0.4689301,0.468787,0.46864393,0.46850094,0.46835798,0.46821505,0.46807215,0.4679293,0.46778652,0.46764377,0.46750107,0.46735838,0.46721578,0.46707317,0.46693063,0.46678814,0.4666457,0.4665033,0.46636093,0.4662186,0.46607634,0.4659341,0.46579194,0.46564978,0.4655077,0.46536562,0.4652236,0.46508163,0.4649397,0.46479782,0.464656,0.46451417,0.46437243,0.46423072,0.46408907,0.46394745,0.46380585,0.46366432,0.46352282,0.46338138,0.46323994,0.4630986,0.46295726,0.46281597,0.46267474,0.46253356,0.46239242,0.4622513,0.46211025,0.46196923,0.46182826,0.4616873,0.4615464,0.46140555,0.4612648,0.461124,0.46098328,0.4608426,0.46070197,0.46056136,0.46042085,0.46028033,0.46013984,0.45999944,0.45985907,0.45971873,0.45957842,0.45943817,0.45929798,0.45915782,0.45901772,0.45887762,0.45873758,0.45859763,0.45845768,0.45831776,0.45817786,0.45803806,0.4578983,0.45775855,0.45761886,0.4574792,0.45733958,0.45720002,0.45706052,0.456921,0.4567816,0.4566422,0.45650285,0.45636353,0.4562243,0.45608506,0.45594588,0.45580673,0.45566761,0.4555286,0.45538956,0.45525062,0.45511165,0.4549728,0.45483392,0.45469517,0.45455638,0.45441768,0.454279,0.45414037,0.45400178,0.45386323,0.4537247,0.45358628,0.45344785,0.45330945,0.45317113,0.45303285,0.4528946,0.4527564,0.45261824,0.45248008,0.452342,0.45220396,0.45206597,0.45192802,0.4517901,0.45165226,0.45151442,0.45137662,0.45123887,0.45110118,0.45096353,0.4508259,0.45068833,0.4505508,0.4504133,0.45027584,0.45013842,0.45000106,0.44986373,0.44972646,0.44958922,0.449452,0.44931486,0.44917774,0.44904065,0.44890362,0.44876662,0.44862968,0.4484928,0.4483559,0.4482191,0.44808233,0.44794556,0.4478089,0.44767222,0.4475356,0.44739902,0.4472625,0.447126,0.44698957,0.44685316,0.4467168,0.4465805,0.44644418,0.44630796,0.44617173,0.4460356,0.44589946,0.4457634,0.44562736,0.4454914,0.44535542,0.44521955,0.44508365,0.44494784,0.44481206,0.4446763,0.44454062,0.44440496,0.44426933,0.44413376,0.44399825,0.44386274,0.44372728,0.44359186,0.4434565,0.44332117,0.44318587,0.44305062,0.44291544,0.4427803,0.44264513,0.44251007,0.44237503,0.44224003,0.44210508,0.44197017,0.44183528,0.44170046,0.44156566,0.44143093,0.4412962,0.44116154,0.4410269,0.44089234,0.44075778,0.44062325,0.4404888,0.44035438,0.44022,0.44008568,0.43995136,0.4398171,0.4396829,0.4395487,0.43941456,0.43928048,0.43914643,0.4390124,0.43887842,0.43874452,0.4386106,0.43847677,0.43834296,0.43820918,0.43807548,0.4379418,0.43780813,0.43767452,0.43754098,0.43740743,0.43727398,0.43714052,0.43700713,0.43687376,0.43674046,0.43660715,0.4364739,0.43634072,0.43620756,0.43607447,0.4359414,0.43580836,0.43567535,0.4355424,0.4354095,0.4352766,0.4351438,0.435011,0.43487826,0.43474555,0.43461284,0.43448022,0.43434766,0.43421507,0.4340826,0.43395013,0.43381768,0.4336853,0.43355298,0.43342066,0.43328837,0.43315616,0.433024,0.43289182,0.43275973,0.43262765,0.43249565,0.43236366,0.43223172,0.43209982,0.43196794,0.43183613,0.43170434,0.43157262,0.43144092,0.43130925,0.43117762,0.43104604,0.4309145,0.430783,0.43065155,0.43052012,0.43038872,0.43025738,0.4301261,0.42999482,0.42986363,0.42973244,0.42960128,0.42947018,0.42933914,0.4292081,0.42907715,0.4289462,0.42881528,0.42868444,0.4285536,0.42842284,0.4282921,0.42816138,0.42803073,0.4279001,0.42776954,0.427639,0.4275085,0.42737803,0.4272476,0.42711723,0.42698687,0.4268566,0.42672634,0.4265961,0.42646593,0.42633578,0.42620566,0.4260756,0.42594558,0.4258156,0.42568564,0.42555577,0.4254259,0.42529607,0.42516628,0.42503652,0.42490682,0.42477715,0.4246475,0.42451796,0.42438838,0.42425886,0.42412943,0.424,0.4238706,0.42374125,0.42361194,0.42348263,0.4233534,0.42322424,0.42309508,0.42296597,0.42283687,0.42270783,0.42257884,0.4224499,0.42232096,0.4221921,0.42206326,0.42193446,0.42180568,0.421677,0.4215483,0.42141965,0.42129105,0.4211625,0.42103398,0.4209055,0.42077702,0.4206486,0.42052025,0.42039192,0.42026365,0.42013538,0.4200072,0.41987902,0.41975087,0.41962278,0.41949472,0.41936672,0.41923872,0.4191108,0.4189829,0.41885504,0.41872722,0.41859943,0.4184717,0.418344,0.41821632,0.4180887,0.4179611,0.41783357,0.41770607,0.41757858,0.41745117,0.41732377,0.4171964,0.41706908,0.41694182,0.41681457,0.41668737,0.41656023,0.4164331,0.41630602,0.41617897,0.41605195,0.41592503,0.4157981,0.4156712,0.41554433,0.41541752,0.41529077,0.41516405,0.41503733,0.41491067,0.41478407,0.41465747,0.41453093,0.41440445,0.414278,0.41415158,0.4140252,0.41389886,0.41377252,0.41364625,0.41352004,0.41339383,0.4132677,0.41314155,0.41301548,0.41288945,0.41276345,0.41263747,0.41251156,0.41238567,0.41225985,0.41213402,0.41200826,0.41188252,0.4117568,0.41163117,0.41150555,0.41137996,0.41125444,0.4111289,0.41100344,0.41087803,0.41075265,0.4106273,0.410502,0.41037673,0.4102515,0.4101263,0.41000113,0.40987602,0.40975094,0.4096259,0.40950087,0.40937594,0.40925097,0.4091261,0.40900126,0.40887645,0.40875167,0.40862694,0.40850225,0.40837756,0.40825292,0.40812835,0.4080038,0.4078793,0.40775484,0.4076304,0.40750602,0.40738165,0.40725735,0.40713307,0.4070088,0.40688458,0.40676042,0.40663633,0.4065122,0.40638816,0.40626416,0.40614015,0.40601623,0.40589234,0.40576845,0.40564463,0.40552083,0.4053971,0.40527338,0.4051497,0.40502605,0.40490246,0.4047789,0.4046554,0.4045319,0.40440843,0.40428504,0.40416166,0.4040383,0.40391502,0.40379176,0.40366852,0.40354535,0.40342218,0.4032991,0.403176,0.40305296,0.40293,0.402807,0.4026841,0.40256122,0.40243834,0.40231553,0.40219277,0.40207005,0.40194735,0.40182468,0.40170205,0.40157947,0.40145692,0.40133443,0.40121192,0.40108952,0.4009671,0.40084475,0.4007224,0.40060014,0.4004779,0.40035567,0.40023348,0.40011135,0.39998925,0.39986718,0.39974517,0.39962316,0.3995012,0.3993793,0.39925742,0.3991356,0.3990138,0.39889202,0.39877027,0.3986486,0.39852694,0.39840534,0.39828375,0.39816222,0.3980407,0.39791924,0.3977978,0.3976764,0.39755505,0.39743373,0.39731246,0.3971912,0.39707,0.3969488,0.3968277,0.39670658,0.39658552,0.3964645,0.3963435,0.39622256,0.39610165,0.39598078,0.39585993,0.3957391,0.39561835,0.39549762,0.39537695,0.39525628,0.39513567,0.3950151,0.39489454,0.39477402,0.39465356,0.39453313,0.39441273,0.39429235,0.394172,0.39405173,0.39393148,0.3938113,0.39369112,0.39357096,0.39345086,0.39333078,0.39321077,0.39309075,0.3929708,0.39285088,0.392731,0.39261115,0.39249134,0.39237157,0.39225185,0.39213213,0.39201245,0.39189282,0.39177322,0.3916537,0.39153415,0.3914147,0.39129525,0.3911758,0.39105645,0.39093712,0.39081782,0.39069852,0.3905793,0.39046013,0.39034098,0.39022183,0.39010277,0.38998374,0.3898647,0.38974574,0.3896268,0.3895079,0.38938904,0.38927022,0.38915142,0.38903266,0.38891393,0.38879526,0.3886766,0.388558,0.38843942,0.38832086,0.38820237,0.3880839,0.3879655,0.3878471,0.38772872,0.3876104,0.38749212,0.38737386,0.38725567,0.38713747,0.38701934,0.38690123,0.38678318,0.38666514,0.38654712,0.38642916,0.38631123,0.38619336,0.38607553,0.3859577,0.3858399,0.3857222,0.38560444,0.38548678,0.38536915,0.38525155,0.38513398,0.38501644,0.38489893,0.38478148,0.38466406,0.3845467,0.38442934,0.38431203,0.38419473,0.3840775,0.38396028,0.38384312,0.38372597,0.38360888,0.3834918,0.3833748,0.3832578,0.38314083,0.38302392,0.38290703,0.38279018,0.38267338,0.3825566,0.38243985,0.38232315,0.38220647,0.38208982,0.3819732,0.38185665,0.38174012,0.38162363,0.3815072,0.38139075,0.38127437,0.38115802,0.3810417,0.38092542,0.38080916,0.38069296,0.3805768,0.38046065,0.38034454,0.3802285,0.38011244,0.37999642,0.37988046,0.37976456,0.37964866,0.37953278,0.37941697,0.3793012,0.37918544,0.37906972,0.37895405,0.37883842,0.3787228,0.3786072,0.3784917,0.3783762,0.37826073,0.37814528,0.37802988,0.37791452,0.3777992,0.3776839,0.37756866,0.37745342,0.37733823,0.3772231,0.37710798,0.3769929,0.37687784,0.37676284,0.37664786,0.37653294,0.37641802,0.37630317,0.37618834,0.3760735,0.37595874,0.37584403,0.37572932,0.37561467,0.37550005,0.37538546,0.3752709,0.37515637,0.3750419,0.37492746,0.37481302,0.37469864,0.3745843,0.37447,0.3743557,0.37424147,0.37412727,0.3740131,0.37389895,0.37378487,0.3736708,0.37355676,0.37344277,0.3733288,0.37321487,0.373101,0.37298712,0.3728733,0.3727595,0.37264574,0.37253204,0.37241834,0.3723047,0.3721911,0.37207752,0.37196395,0.37185043,0.37173697,0.37162355,0.37151015,0.37139675,0.3712834,0.37117013,0.37105685,0.3709436,0.3708304,0.37071723,0.37060413,0.37049103,0.37037796,0.37026495,0.37015194,0.370039,0.36992607,0.36981317,0.3697003,0.36958748,0.3694747,0.36936197,0.36924925,0.36913657,0.36902392,0.3689113,0.3687987,0.36868617,0.36857367,0.3684612,0.36834875,0.36823633,0.36812398,0.36801162,0.36789933,0.36778703,0.3676748,0.3675626,0.36745045,0.3673383,0.3672262,0.36711413,0.36700213,0.3668901,0.36677814,0.36666623,0.36655435,0.36644247,0.36633062,0.36621884,0.3661071,0.36599538,0.36588368,0.365772,0.3656604,0.36554882,0.36543727,0.36532575,0.36521426,0.36510283,0.3649914,0.36488003,0.36476868,0.36465734,0.36454606,0.3644348,0.36432362,0.36421242,0.3641013,0.3639902,0.36387908,0.36376804,0.36365703,0.36354604,0.36343512,0.36332422,0.36321333,0.3631025,0.3629917,0.36288092,0.36277017,0.36265948,0.3625488,0.36243814,0.36232755,0.36221698,0.36210644,0.36199597,0.3618855,0.36177507,0.36166465,0.3615543,0.36144394,0.36133364,0.36122337,0.36111313,0.36100292,0.36089277,0.36078262,0.36067256,0.36056247,0.36045244,0.36034244,0.3602325,0.36012256,0.36001265,0.3599028,0.35979295,0.35968316,0.3595734,0.3594637,0.359354,0.35924432,0.35913467,0.3590251,0.35891554,0.35880598,0.3586965,0.35858703,0.35847762,0.35836822,0.35825887,0.35814953,0.35804024,0.35793096,0.35782176,0.35771257,0.35760337,0.35749424,0.35738516,0.35727608,0.35716707,0.35705808,0.3569491,0.3568402,0.3567313,0.35662243,0.3565136,0.3564048,0.35629603,0.3561873,0.3560786,0.35596994,0.3558613,0.3557527,0.35564414,0.35553563,0.35542712,0.35531867,0.35521024,0.35510182,0.35499346,0.35488513,0.35477683,0.35466856,0.35456035,0.35445213,0.35434398,0.35423586,0.35412773,0.35401967,0.35391164,0.35380363,0.35369566,0.35358775,0.3534798,0.35337195,0.3532641,0.35315633,0.35304853,0.3529408,0.3528331,0.35272542,0.35261777,0.35251018,0.3524026,0.35229504,0.35218754,0.35208008,0.35197264,0.35186523,0.35175785,0.3516505,0.3515432,0.3514359,0.35132867,0.35122144,0.35111427,0.35100713,0.3509,0.35079294,0.35068586,0.35057887,0.35047188,0.35036492,0.350258,0.35015112,0.35004425,0.34993744,0.34983066,0.3497239,0.34961715,0.3495105,0.3494038,0.3492972,0.3491906,0.34908402,0.3489775,0.348871,0.34876454,0.3486581,0.34855172,0.34844533,0.34833902,0.34823272,0.34812644,0.34802023,0.347914,0.34780782,0.3477017,0.34759557,0.3474895,0.34738347,0.34727746,0.3471715,0.34706554,0.34695962,0.34685376,0.34674788,0.34664208,0.34653628,0.34643054,0.3463248,0.34621915,0.34611347,0.34600788,0.34590226,0.34579673,0.34569117,0.34558567,0.34548023,0.3453748,0.3452694,0.34516403,0.3450587,0.34495342,0.34484813,0.3447429,0.3446377,0.34453252,0.34442738,0.34432226,0.3442172,0.34411216,0.34400713,0.34390217,0.34379724,0.3436923,0.34358743,0.34348258,0.34337777,0.34327298,0.3431682,0.3430635,0.3429588,0.34285414,0.3427495,0.34264493,0.34254035,0.3424358,0.34233132,0.34222686,0.3421224,0.342018,0.34191364,0.3418093,0.341705,0.34160072,0.34149647,0.34139228,0.34128806,0.34118393,0.3410798,0.34097573,0.34087166,0.34076762,0.34066364,0.3405597,0.34045577,0.34035188,0.340248,0.34014416,0.3400404,0.33993658,0.33983287,0.33972916,0.33962548,0.33952186,0.33941823,0.33931464,0.3392111,0.3391076,0.3390041,0.33890066,0.33879724,0.33869386,0.3385905,0.33848715,0.33838385,0.3382806,0.33817738,0.33807418,0.337971,0.33786786,0.33776474,0.33766168,0.33755866,0.33745563,0.33735266,0.3372497,0.3371468,0.3370439,0.33694106,0.33683822,0.33673543,0.33663267,0.33652994,0.33642724,0.33632457,0.33622193,0.33611932,0.33601677,0.33591422,0.3358117,0.3357092,0.33560678,0.33550438,0.33540198,0.33529964,0.33519733,0.33509502,0.33499274,0.3348905,0.33478832,0.33468616,0.33458403,0.33448192,0.33437985,0.3342778,0.3341758,0.3340738,0.3339719,0.33386996,0.33376807,0.33366624,0.33356437,0.3334626,0.33336082,0.3332591,0.33315742,0.33305573,0.3329541,0.33285248,0.33275092,0.33264938,0.33254787,0.3324464,0.33234495,0.3322435,0.3321421,0.33204076,0.33193943,0.33183813,0.3317369,0.33163565,0.33153445,0.33143327,0.33133212,0.331231,0.33112994,0.33102888,0.33092788,0.33082688,0.3307259,0.330625,0.3305241,0.33042324,0.33032238,0.3302216,0.33012083,0.33002007,0.32991937,0.32981867,0.32971802,0.3296174,0.32951683,0.32941628,0.32931575,0.32921526,0.32911476,0.32901433,0.32891396,0.32881358,0.32871324,0.3286129,0.3285126,0.32841238,0.32831216,0.32821196,0.3281118,0.3280117,0.3279116,0.3278115,0.3277115,0.32761148,0.3275115,0.32741153,0.32731164,0.32721177,0.3271119,0.32701206,0.32691228,0.3268125,0.3267128,0.3266131,0.3265134,0.32641378,0.32631415,0.32621458,0.326115,0.3260155,0.32591602,0.32581657,0.32571715,0.32561773,0.32551837,0.32541904,0.32531974,0.32522044,0.3251212,0.32502198,0.3249228,0.32482365,0.32472453,0.32462543,0.32452637,0.32442734,0.32432833,0.32422933,0.3241304,0.32403147,0.32393262,0.32383376,0.32373494,0.3236361,0.32353738,0.32343864,0.32333994,0.32324126,0.32314262,0.323044,0.32294542,0.32284686,0.32274836,0.32264987,0.3225514,0.32245296,0.32235456,0.32225618,0.32215786,0.32205954,0.32196125,0.32186303,0.3217648,0.3216666,0.32156843,0.3214703,0.3213722,0.32127413,0.32117608,0.32107806,0.3209801,0.32088214,0.3207842,0.3206863,0.32058847,0.32049063,0.32039282,0.32029507,0.3201973,0.3200996,0.3200019,0.31990424,0.31980664,0.31970903,0.31961146,0.31951392,0.3194164,0.31931895,0.3192215,0.3191241,0.3190267,0.31892934,0.318832,0.31873474,0.31863746,0.31854022,0.318443,0.31834584,0.31824866,0.31815156,0.31805447,0.31795743,0.3178604,0.3177634,0.3176664,0.3175695,0.31747258,0.3173757,0.31727883,0.317182,0.3170852,0.31698844,0.31689173,0.31679502,0.31669834,0.3166017,0.31650507,0.3164085,0.31631193,0.3162154,0.3161189,0.31602246,0.315926,0.31582958,0.31573322,0.31563684,0.31554052,0.31544423,0.31534797,0.31525174,0.31515554,0.31505936,0.31496322,0.3148671,0.314771,0.31467494,0.31457892,0.31448293,0.31438696,0.31429103,0.31419513,0.31409922,0.31400338,0.31390753,0.31381175,0.313716,0.31362027,0.31352454,0.31342888,0.3133332,0.3132376,0.31314203,0.31304646,0.31295094,0.31285542,0.31275994,0.3126645,0.31256908,0.3124737,0.31237835,0.31228304,0.3121877,0.31209245,0.3119972,0.31190202,0.31180683,0.31171167,0.31161654,0.31152144,0.31142637,0.31133136,0.31123635,0.31114134,0.3110464,0.31095147,0.31085658,0.31076172,0.3106669,0.3105721,0.31047732,0.31038257,0.31028786,0.31019318,0.3100985,0.31000388,0.30990925,0.3098147,0.30972013,0.30962563,0.30953115,0.30943668,0.30934227,0.30924785,0.3091535,0.30905914,0.30896482,0.30887055,0.3087763,0.30868205,0.30858785,0.3084937,0.30839956,0.30830544,0.30821136,0.3081173,0.30802327,0.30792928,0.30783528,0.30774134,0.30764744,0.30755356,0.30745968,0.30736586,0.30727208,0.3071783,0.30708456,0.30699086,0.30689716,0.30680352,0.3067099,0.3066163,0.30652273,0.30642918,0.30633566,0.3062422,0.30614874,0.3060553,0.3059619,0.30586854,0.3057752,0.30568188,0.3055886,0.30549535,0.30540213,0.3053089,0.30521575,0.3051226,0.3050295,0.3049364,0.30484337,0.30475032,0.3046573,0.30456436,0.3044714,0.3043785,0.30428562,0.30419275,0.30409995,0.3040071,0.30391434,0.30382162,0.3037289,0.3036362,0.30354354,0.3034509,0.30335832,0.30326572,0.30317318,0.30308068,0.30298817,0.30289572,0.30280328,0.3027109,0.3026185,0.30252615,0.30243385,0.30234155,0.30224928,0.30215704,0.30206484,0.30197266,0.30188048,0.30178836,0.30169627,0.3016042,0.30151218,0.30142018,0.30132818,0.3012362,0.3011443,0.3010524,0.30096054,0.3008687,0.30077687,0.30068508,0.30059332,0.30050159,0.30040988,0.3003182,0.30022657,0.30013496,0.30004337,0.2999518,0.29986027,0.29976875,0.29967725,0.29958582,0.29949442,0.299403,0.29931164,0.2992203,0.29912898,0.2990377,0.29894644,0.29885522,0.29876402,0.29867285,0.2985817,0.29849058,0.29839948,0.29830843,0.2982174,0.2981264,0.2980354,0.29794446,0.29785353,0.29776263,0.29767177,0.29758093,0.29749012,0.29739934,0.2973086,0.29721785,0.29712716,0.2970365,0.29694584,0.2968552,0.29676464,0.29667407,0.29658353,0.29649302,0.29640254,0.2963121,0.29622167,0.29613128,0.2960409,0.29595056,0.29586023,0.29576996,0.29567972,0.29558948,0.29549927,0.29540908,0.29531893,0.2952288,0.29513872,0.29504865,0.29495862,0.2948686,0.29477862,0.29468867,0.29459873,0.29450884,0.29441896,0.2943291,0.29423928,0.29414952,0.29405972,0.29397,0.29388028,0.2937906,0.29370096,0.29361132,0.2935217,0.29343215,0.2933426,0.2932531,0.2931636,0.29307413,0.2929847,0.2928953,0.2928059,0.29271653,0.29262722,0.29253793,0.29244867,0.2923594,0.29227018,0.292181,0.29209182,0.2920027,0.29191357,0.29182452,0.29173544,0.29164642,0.29155743,0.29146844,0.2913795,0.29129058,0.29120168,0.2911128,0.291024,0.29093516,0.2908464,0.29075763,0.2906689,0.2905802,0.29049152,0.2904029,0.29031426,0.29022565,0.29013708,0.29004854,0.28996006,0.28987157,0.2897831,0.28969467,0.28960624,0.28951788,0.28942955,0.2893412,0.2892529,0.28916463,0.2890764,0.28898817,0.2889,0.28881183,0.2887237,0.28863558,0.2885475,0.28845945,0.2883714,0.2882834,0.28819543,0.28810748,0.28801957,0.28793168,0.28784382,0.28775597,0.28766817,0.28758037,0.2874926,0.28740487,0.28731716,0.28722948,0.28714186,0.2870542,0.28696662,0.28687906,0.2867915,0.28670397,0.28661647,0.286529,0.28644156,0.28635415,0.28626677,0.28617942,0.2860921,0.28600478,0.28591752,0.28583026,0.28574303,0.28565583,0.28556865,0.2854815,0.2853944,0.2853073,0.28522024,0.28513318,0.28504616,0.2849592,0.28487223,0.2847853,0.2846984,0.2846115,0.28452465,0.28443784,0.28435102,0.28426424,0.2841775,0.2840908,0.2840041,0.28391743,0.2838308,0.28374416,0.28365758,0.28357103,0.2834845,0.28339797,0.2833115,0.28322503,0.2831386,0.28305218,0.2829658,0.28287947,0.28279313,0.28270683,0.28262055,0.2825343,0.2824481,0.2823619,0.28227574,0.2821896,0.28210348,0.28201738,0.28193134,0.2818453,0.2817593,0.28167328,0.28158733,0.2815014,0.2814155,0.28132963,0.28124377,0.28115797,0.28107214,0.28098637,0.28090063,0.28081492,0.2807292,0.28064355,0.2805579,0.28047228,0.2803867,0.28030112,0.2802156,0.2801301,0.2800446,0.27995914,0.2798737,0.2797883,0.2797029,0.27961755,0.27953222,0.2794469,0.27936164,0.2792764,0.27919117,0.27910596,0.2790208,0.27893564,0.27885053,0.2787654,0.27868035,0.27859533,0.27851027,0.2784253,0.27834034,0.2782554,0.27817047,0.2780856,0.27800074,0.2779159,0.27783108,0.2777463,0.27766153,0.2775768,0.27749208,0.2774074,0.27732277,0.27723813,0.27715352,0.27706894,0.2769844,0.27689987,0.27681535,0.2767309,0.27664644,0.276562,0.27647763,0.27639323,0.2763089,0.27622458,0.2761403,0.27605602,0.27597177,0.27588755,0.2758034,0.2757192,0.27563506,0.27555096,0.27546686,0.27538282,0.27529877,0.27521473,0.27513078,0.2750468,0.27496287,0.27487895,0.2747951,0.27471122,0.2746274,0.27454355,0.2744598,0.27437603,0.2742923,0.2742086,0.27412492,0.27404127,0.27395764,0.27387404,0.27379045,0.2737069,0.27362338,0.27353987,0.27345642,0.27337295,0.27328953,0.2732061,0.27312276,0.2730394,0.2729561,0.2728728,0.27278954,0.27270627,0.27262306,0.27253985,0.2724567,0.27237356,0.27229044,0.27220735,0.27212426,0.27204123,0.2719582,0.2718752,0.27179223,0.2717093,0.27162638,0.2715435,0.27146062,0.27137777,0.27129498,0.27121216,0.2711294,0.27104667,0.27096397,0.27088127,0.2707986,0.27071598,0.27063337,0.27055076,0.2704682,0.27038565,0.27030316,0.27022067,0.2701382,0.27005577,0.26997337,0.26989096,0.2698086,0.26972628,0.26964396,0.26956168,0.2694794,0.26939717,0.26931494,0.26923278,0.2691506,0.26906848,0.26898637,0.2689043,0.26882222,0.2687402,0.2686582,0.26857617,0.26849425,0.2684123,0.2683304,0.2682485,0.26816666,0.26808482,0.268003,0.2679212,0.26783946,0.2677577,0.267676,0.2675943,0.26751265,0.26743102,0.2673494,0.26726782,0.26718628,0.26710472,0.2670232,0.26694173,0.26686028,0.26677883,0.2666974,0.26661605,0.26653466,0.26645333,0.26637203,0.26629072,0.26620948,0.2661282,0.266047,0.26596582,0.26588467,0.26580355,0.26572242,0.26564133,0.26556027,0.2654792,0.2653982,0.26531723,0.26523623,0.26515532,0.26507437,0.2649935,0.26491264,0.26483178,0.26475096,0.26467016,0.2645894,0.26450866,0.26442793,0.26434726,0.26426658,0.26418594,0.26410532,0.26402473,0.26394415,0.2638636,0.26378307,0.26370257,0.2636221,0.26354167,0.26346123,0.26338083,0.26330048,0.2632201,0.26313978,0.26305947,0.2629792,0.26289895,0.26281872,0.26273853,0.26265836,0.2625782,0.26249805,0.26241794,0.26233786,0.2622578,0.2621778,0.26209778,0.2620178,0.26193783,0.2618579,0.26177797,0.2616981,0.26161823,0.26153842,0.26145858,0.2613788,0.26129904,0.2612193,0.26113957,0.26105988,0.26098022,0.2609006,0.26082096,0.26074138,0.2606618,0.26058227,0.26050273,0.26042324,0.26034376,0.2602643,0.26018488,0.2601055,0.2600261,0.25994676,0.25986743,0.25978813,0.25970885,0.2596296,0.25955036,0.25947115,0.25939196,0.25931284,0.25923368,0.2591546,0.2590755,0.25899643,0.2589174,0.2588384,0.25875938,0.25868043,0.2586015,0.25852257,0.25844368,0.25836483,0.25828597,0.25820714,0.25812835,0.25804958,0.25797084,0.2578921,0.25781342,0.25773475,0.25765607,0.25757745,0.25749886,0.25742027,0.2573417,0.25726318,0.25718468,0.25710618,0.25702775,0.2569493,0.2568709,0.2567925,0.25671414,0.2566358,0.25655746,0.25647917,0.2564009,0.25632265,0.25624445,0.25616625,0.25608808,0.25600994,0.2559318,0.2558537,0.2557756,0.25569755,0.25561953,0.25554153,0.25546354,0.25538558,0.25530764,0.25522974,0.25515187,0.255074,0.25499615,0.25491834,0.25484052,0.25476277,0.254685,0.25460732,0.25452963,0.25445193,0.25437427,0.25429666,0.25421906,0.25414148,0.2540639,0.2539864,0.25390887,0.2538314,0.25375393,0.2536765,0.25359908,0.25352168,0.2534443,0.25336698,0.25328967,0.25321236,0.25313511,0.25305787,0.25298062,0.25290343,0.25282624,0.2527491,0.25267196,0.25259486,0.25251776,0.25244072,0.25236368,0.25228667,0.25220966,0.2521327,0.25205576,0.25197884,0.25190195,0.25182506,0.25174823,0.2516714,0.2515946,0.2515178,0.25144106,0.25136432,0.2512876,0.25121096,0.25113428,0.25105765,0.25098103,0.25090444,0.25082788,0.25075135,0.2506748,0.2505983,0.25052184,0.25044537,0.25036895,0.25029254,0.2502162,0.25013983,0.25006348,0.24998717,0.24991089,0.24983461,0.24975838,0.24968216,0.24960597,0.24952978,0.24945365,0.24937752,0.24930142,0.24922533,0.24914928,0.24907325,0.24899724,0.24892126,0.2488453,0.24876936,0.24869344,0.24861754,0.24854168,0.24846582,0.24839,0.2483142,0.24823841,0.24816267,0.24808694,0.24801125,0.24793555,0.2478599,0.24778426,0.24770863,0.24763304,0.24755748,0.24748193,0.24740641,0.24733089,0.24725543,0.24717997,0.24710454,0.24702914,0.24695374,0.24687839,0.24680305,0.24672773,0.24665244,0.24657716,0.24650192,0.24642669,0.2463515,0.24627632,0.24620117,0.24612603,0.24605092,0.24597584,0.24590078,0.24582572,0.24575071,0.24567571,0.24560075,0.24552579,0.24545087,0.24537598,0.24530108,0.24522622,0.2451514,0.24507658,0.2450018,0.24492702,0.24485227,0.24477756,0.24470286,0.24462818,0.24455354,0.24447891,0.2444043,0.24432972,0.24425516,0.24418062,0.2441061,0.24403161,0.24395713,0.24388269,0.24380825,0.24373387,0.24365948,0.24358512,0.24351078,0.24343647,0.2433622,0.24328792,0.24321368,0.24313946,0.24306525,0.24299107,0.24291694,0.24284281,0.2427687,0.24269462,0.24262054,0.24254651,0.24247248,0.2423985,0.24232452,0.24225059,0.24217665,0.24210276,0.24202886,0.24195501,0.24188118,0.24180736,0.24173357,0.24165979,0.24158604,0.24151233,0.24143863,0.24136494,0.24129128,0.24121766,0.24114405,0.24107046,0.2409969,0.24092335,0.24084981,0.24077632,0.24070284,0.24062939,0.24055596,0.24048255,0.24040917,0.2403358,0.24026246,0.24018914,0.24011584,0.24004257,0.23996931,0.23989609,0.23982288,0.23974968,0.23967652,0.23960339,0.23953027,0.23945716,0.23938408,0.23931104,0.23923801,0.239165,0.239092,0.23901905,0.23894611,0.23887318,0.2388003,0.23872742,0.23865457,0.23858175,0.23850894,0.23843615,0.23836339,0.23829065,0.23821792,0.23814523,0.23807256,0.2379999,0.23792727,0.23785466,0.23778209,0.23770952,0.23763698,0.23756446,0.23749197,0.23741949,0.23734704,0.2372746,0.2372022,0.23712981,0.23705746,0.2369851,0.2369128,0.23684049,0.2367682,0.23669596,0.23662372,0.23655152,0.23647933,0.23640718,0.23633502,0.2362629,0.2361908,0.23611872,0.23604667,0.23597462,0.23590262,0.23583063,0.23575866,0.23568672,0.23561479,0.2355429,0.23547101,0.23539916,0.23532732,0.23525551,0.23518372,0.23511194,0.2350402,0.23496847,0.23489676,0.23482509,0.23475343,0.23468179,0.23461016,0.23453857,0.234467,0.23439544,0.23432392,0.23425241,0.23418093,0.23410946,0.23403801,0.23396659,0.2338952,0.23382382,0.23375247,0.23368113,0.23360983,0.23353852,0.23346725,0.23339601,0.2333248,0.2332536,0.23318242,0.23311125,0.23304011,0.232969,0.2328979,0.23282683,0.23275578,0.23268475,0.23261374,0.23254275,0.23247178,0.23240083,0.23232992,0.23225902,0.23218815,0.2321173,0.23204646,0.23197564,0.23190485,0.23183408,0.23176333,0.23169261,0.2316219,0.23155123,0.23148057,0.23140992,0.2313393,0.2312687,0.23119812,0.23112758,0.23105705,0.23098654,0.23091605,0.23084559,0.23077512,0.2307047,0.2306343,0.23056392,0.23049356,0.23042323,0.2303529,0.2302826,0.23021233,0.23014209,0.23007184,0.23000163,0.22993144,0.22986129,0.22979113,0.22972101,0.22965091,0.22958083,0.22951075,0.22944072,0.22937071,0.22930071,0.22923073,0.22916079,0.22909084,0.22902094,0.22895105,0.22888118,0.22881134,0.2287415,0.2286717,0.22860193,0.22853215,0.22846243,0.22839269,0.228323,0.22825333,0.22818367,0.22811404,0.22804442,0.22797483,0.22790526,0.22783571,0.22776619,0.22769669,0.22762719,0.22755773,0.22748828,0.22741887,0.22734946,0.2272801,0.22721073,0.2271414,0.22707208,0.22700277,0.22693351,0.22686425,0.22679503,0.22672582,0.22665663,0.22658746,0.2265183,0.22644919,0.22638008,0.22631098,0.22624193,0.2261729,0.22610386,0.22603488,0.22596589,0.22589692,0.225828,0.22575909,0.22569019,0.22562133,0.22555247,0.22548363,0.22541481,0.22534604,0.22527727,0.22520852,0.22513978,0.22507109,0.22500241,0.22493374,0.2248651,0.22479647,0.22472788,0.2246593,0.22459073,0.2245222,0.22445369,0.22438519,0.22431672,0.22424826,0.22417983,0.22411142,0.22404303,0.22397465,0.2239063,0.22383797,0.22376966,0.22370137,0.22363313,0.22356488,0.22349665,0.22342844,0.22336026,0.2232921,0.22322395,0.22315584,0.22308774,0.22301966,0.2229516,0.22288357,0.22281554,0.22274755,0.22267957,0.22261162,0.22254369,0.22247578,0.22240789,0.22234,0.22227216,0.22220433,0.22213651,0.22206873,0.22200096,0.22193322,0.22186549,0.2217978,0.22173008,0.22166243,0.22159478,0.22152716,0.22145957,0.22139199,0.22132443,0.22125687,0.22118935,0.22112186,0.22105439,0.22098693,0.22091947,0.22085206,0.22078466,0.2207173,0.22064993,0.2205826,0.2205153,0.220448,0.22038072,0.22031347,0.22024624,0.22017902,0.22011183,0.22004467,0.2199775,0.21991038,0.21984328,0.21977618,0.21970911,0.21964207,0.21957503,0.21950804,0.21944106,0.21937408,0.21930714,0.2192402,0.2191733,0.21910642,0.21903954,0.21897271,0.21890588,0.21883908,0.2187723,0.21870553,0.21863881,0.21857208,0.21850538,0.2184387,0.21837203,0.2183054,0.21823877,0.21817218,0.2181056,0.21803904,0.2179725,0.21790597,0.21783948,0.217773,0.21770655,0.21764012,0.2175737,0.2175073,0.21744092,0.21737456,0.21730822,0.21724191,0.21717562,0.21710935,0.2170431,0.21697687,0.21691065,0.21684445,0.21677828,0.21671212,0.21664599,0.21657987,0.2165138,0.21644771,0.21638167,0.21631563,0.21624961,0.21618362,0.21611765,0.2160517,0.21598576,0.21591985,0.21585396,0.21578808,0.21572223,0.2156564,0.2155906,0.21552481,0.21545905,0.21539329,0.21532756,0.21526185,0.21519616,0.21513048,0.21506482,0.2149992,0.21493359,0.214868,0.21480243,0.21473688,0.21467134,0.21460584,0.21454035,0.21447487,0.21440943,0.214344,0.21427858,0.21421319,0.21414782,0.21408248,0.21401715,0.21395184,0.21388653,0.21382128,0.21375601,0.21369079,0.21362558,0.21356039,0.21349521,0.21343006,0.21336493,0.21329983,0.21323474,0.21316965,0.2131046,0.21303956,0.21297455,0.21290956,0.2128446,0.21277963,0.2127147,0.21264979,0.2125849,0.21252003,0.21245517,0.21239033,0.21232551,0.21226072,0.21219595,0.2121312,0.21206646,0.21200176,0.21193705,0.21187238,0.21180773,0.21174309,0.21167846,0.21161388,0.2115493,0.21148475,0.2114202,0.21135569,0.21129118,0.2112267,0.21116224,0.2110978,0.21103337,0.21096899,0.2109046,0.21084024,0.2107759,0.21071157,0.21064727,0.21058299,0.21051873,0.21045448,0.21039027,0.21032606,0.21026187,0.21019772,0.21013357,0.21006943,0.21000533,0.20994124,0.20987718,0.20981313,0.20974909,0.20968509,0.20962112,0.20955713,0.20949319,0.20942925,0.20936535,0.20930144,0.20923759,0.20917372,0.2091099,0.20904608,0.20898229,0.20891851,0.20885476,0.20879102,0.2087273,0.20866361,0.20859993,0.20853628,0.20847264,0.20840903,0.20834543,0.20828183,0.20821828,0.20815474,0.20809121,0.2080277,0.20796423,0.20790076,0.20783733,0.2077739,0.20771049,0.20764711,0.20758373,0.2075204,0.20745707,0.20739375,0.20733047,0.2072672,0.20720394,0.20714071,0.2070775,0.2070143,0.20695114,0.20688798,0.20682484,0.20676172,0.20669863,0.20663555,0.2065725,0.20650946,0.20644644,0.20638344,0.20632045,0.20625749,0.20619455,0.20613162,0.20606872,0.20600583,0.20594297,0.20588012,0.20581728,0.20575449,0.2056917,0.20562893,0.20556618,0.20550343,0.20544073,0.20537804,0.20531535,0.2052527,0.20519008,0.20512746,0.20506486,0.20500228,0.20493971,0.20487717,0.20481466,0.20475215,0.20468967,0.20462722,0.20456477,0.20450233,0.20443992,0.20437753,0.20431517,0.20425282,0.2041905,0.20412818,0.20406589,0.2040036,0.20394135,0.20387912,0.20381689,0.20375471,0.20369253,0.20363036,0.20356822,0.2035061,0.20344399,0.20338191,0.20331985,0.2032578,0.20319577,0.20313376,0.20307177,0.2030098,0.20294785,0.20288593,0.20282401,0.2027621,0.20270023,0.20263837,0.20257655,0.20251472,0.20245293,0.20239113,0.20232937,0.20226762,0.2022059,0.20214419,0.2020825,0.20202084,0.20195918,0.20189756,0.20183595,0.20177436,0.20171277,0.20165122,0.20158967,0.20152818,0.20146666,0.20140518,0.20134372,0.20128228,0.20122086,0.20115945,0.20109805,0.20103669,0.20097534,0.20091401,0.20085269,0.20079142,0.20073013,0.20066887,0.20060764,0.20054641,0.20048521,0.20042405,0.20036288,0.20030174,0.20024061,0.2001795,0.20011841,0.20005734,0.1999963,0.19993527,0.19987425,0.19981325,0.19975227,0.19969131,0.19963038,0.19956946,0.19950855,0.19944768,0.1993868,0.19932595,0.19926514,0.19920433,0.19914353,0.19908276,0.19902201,0.19896127,0.19890057,0.19883986,0.19877918,0.19871852,0.19865789,0.19859727,0.19853665,0.19847606,0.19841549,0.19835494,0.19829442,0.1982339,0.1981734,0.19811293,0.19805247,0.19799203,0.19793162,0.19787122,0.19781083,0.19775046,0.19769011,0.1976298,0.19756949,0.19750918,0.19744891,0.19738865,0.19732842,0.1972682,0.197208,0.19714783,0.19708766,0.1970275,0.1969674,0.19690728,0.19684719,0.19678712,0.19672707,0.19666705,0.19660702,0.19654703,0.19648704,0.19642708,0.19636713,0.19630721,0.19624731,0.1961874,0.19612755,0.1960677,0.19600786,0.19594805,0.19588825,0.19582847,0.19576871,0.19570896,0.19564925,0.19558954,0.19552986,0.19547018,0.19541053,0.1953509,0.19529128,0.19523169,0.19517212,0.19511256,0.195053,0.19499348,0.19493398,0.1948745,0.19481502,0.19475557,0.19469614,0.19463672,0.19457732,0.19451794,0.19445859,0.19439925,0.19433992,0.19428062,0.19422133,0.19416206,0.19410281,0.19404358,0.19398436,0.19392516,0.19386598,0.19380683,0.19374768,0.19368854,0.19362944,0.19357035,0.19351128,0.19345224,0.19339319,0.19333418,0.19327518,0.1932162,0.19315724,0.19309829,0.19303937,0.19298045,0.19292156,0.19286269,0.19280384,0.192745,0.19268619,0.19262739,0.1925686,0.19250983,0.19245107,0.19239235,0.19233364,0.19227496,0.19221626,0.19215761,0.19209898,0.19204035,0.19198175,0.19192316,0.1918646,0.19180605,0.19174752,0.191689,0.1916305,0.19157201,0.19151355,0.19145511,0.1913967,0.19133829,0.19127989,0.19122152,0.19116317,0.19110483,0.1910465,0.1909882,0.19092992,0.19087167,0.1908134,0.19075519,0.19069697,0.19063878,0.19058059,0.19052245,0.1904643,0.19040617,0.19034806,0.19028997,0.1902319,0.19017386,0.19011582,0.1900578,0.18999982,0.18994184,0.18988386,0.18982592,0.18976799,0.18971008,0.18965217,0.1895943,0.18953645,0.1894786,0.18942079,0.18936299,0.1893052,0.18924743,0.18918967,0.18913195,0.18907422,0.18901652,0.18895884,0.18890117,0.18884353,0.18878591,0.18872829,0.18867071,0.18861313,0.18855555,0.18849804,0.1884405,0.188383,0.18832551,0.18826804,0.18821058,0.18815315,0.18809572,0.18803833,0.18798095,0.18792358,0.18786623,0.1878089,0.18775159,0.1876943,0.18763702,0.18757975,0.1875225,0.18746528,0.18740807,0.1873509,0.18729372,0.18723656,0.18717942,0.1871223,0.1870652,0.18700811,0.18695104,0.186894,0.18683696,0.18677995,0.18672295,0.18666597,0.186609,0.18655205,0.18649513,0.18643822,0.18638131,0.18632443,0.18626757,0.18621074,0.1861539,0.1860971,0.18604031,0.18598354,0.18592678,0.18587004,0.18581332,0.18575661,0.18569992,0.18564326,0.18558662,0.18552996,0.18547335,0.18541676,0.18536018,0.18530361,0.18524706,0.18519053,0.18513401,0.18507752,0.18502103,0.18496457,0.18490812,0.1848517,0.18479529,0.18473889,0.18468253,0.18462616,0.18456982,0.1845135,0.1844572,0.1844009,0.18434463,0.18428837,0.18423213,0.18417591,0.18411972,0.18406352,0.18400735,0.1839512,0.18389505,0.18383895,0.18378285,0.18372676,0.1836707,0.18361464,0.1835586,0.18350258,0.18344659,0.1833906,0.18333463,0.1832787,0.18322277,0.18316685,0.18311095,0.18305509,0.18299921,0.18294337,0.18288754,0.18283173,0.18277594,0.18272015,0.1826644,0.18260865,0.18255293,0.18249722,0.18244153,0.18238586,0.18233019,0.18227455,0.18221892,0.18216333,0.18210773,0.18205217,0.1819966,0.18194106,0.18188554,0.18183003,0.18177456,0.18171908,0.18166363,0.18160819,0.18155277,0.18149735,0.18144196,0.1813866,0.18133125,0.18127592,0.18122059,0.1811653,0.18111001,0.18105474,0.18099949,0.18094425,0.18088904,0.18083383,0.18077865,0.18072349,0.18066832,0.18061319,0.18055807,0.18050298,0.1804479,0.18039283,0.18033777,0.18028274,0.18022773,0.18017273,0.18011774,0.18006279,0.18000783,0.1799529,0.179898,0.17984308,0.1797882,0.17973334,0.17967848,0.17962366,0.17956884,0.17951405,0.17945927,0.1794045,0.17934975,0.17929502,0.1792403,0.17918561,0.17913093,0.17907625,0.17902161,0.17896698,0.17891236,0.17885777,0.17880319,0.17874862,0.17869407,0.17863955,0.17858502,0.17853053,0.17847605,0.17842159,0.17836712,0.17831269,0.17825828,0.17820388,0.1781495,0.17809513,0.17804079,0.17798646,0.17793214,0.17787784,0.17782356,0.17776929,0.17771505,0.17766082,0.1776066,0.1775524,0.1774982,0.17744404,0.1773899,0.17733577,0.17728165,0.17722754,0.17717347,0.1771194,0.17706534,0.17701131,0.1769573,0.17690329,0.1768493,0.17679533,0.17674139,0.17668745,0.17663354,0.17657964,0.17652574,0.17647187,0.17641802,0.17636418,0.17631036,0.17625657,0.17620277,0.176149,0.17609525,0.17604151,0.1759878,0.17593408,0.17588039,0.17582671,0.17577307,0.17571941,0.1756658,0.17561218,0.1755586,0.17550503,0.17545147,0.17539793,0.17534441,0.1752909,0.17523739,0.17518392,0.17513046,0.17507702,0.17502359,0.17497018,0.17491677,0.1748634,0.17481004,0.17475669,0.17470337,0.17465006,0.17459674,0.17454347,0.17449021,0.17443697,0.17438373,0.1743305,0.1742773,0.17422414,0.17417097,0.17411782,0.17406467,0.17401156,0.17395845,0.17390537,0.1738523,0.17379925,0.17374621,0.17369318,0.17364018,0.17358719,0.17353421,0.17348126,0.17342833,0.1733754,0.17332248,0.1732696,0.17321672,0.17316386,0.173111,0.17305818,0.17300537,0.17295258,0.1728998,0.17284705,0.1727943,0.17274156,0.17268884,0.17263614,0.17258346,0.17253079,0.17247814,0.17242551,0.17237289,0.17232029,0.1722677,0.17221513,0.17216258,0.17211005,0.17205752,0.17200501,0.17195252,0.17190005,0.1718476,0.17179516,0.17174272,0.17169032,0.17163792,0.17158553,0.17153317,0.17148083,0.1714285,0.17137618,0.1713239,0.1712716,0.17121935,0.17116709,0.17111486,0.17106263,0.17101043,0.17095824,0.17090608,0.17085393,0.17080179,0.17074966,0.17069755,0.17064546,0.17059338,0.17054133,0.17048928,0.17043726,0.17038524,0.17033325,0.17028126,0.1702293,0.17017736,0.17012541,0.1700735,0.17002161,0.16996972,0.16991785,0.169866,0.16981417,0.16976234,0.16971053,0.16965874,0.16960697,0.16955522,0.16950347,0.16945173,0.16940004,0.16934833,0.16929665,0.16924499,0.16919334,0.16914171,0.16909009,0.1690385,0.1689869,0.16893533,0.16888379,0.16883224,0.16878073,0.16872923,0.16867773,0.16862625,0.1685748,0.16852336,0.16847193,0.16842051,0.16836911,0.16831774,0.16826637,0.16821502,0.16816369,0.16811237,0.16806106,0.16800979,0.16795851,0.16790725,0.16785601,0.16780479,0.16775358,0.16770239,0.1676512,0.16760005,0.16754891,0.16749778,0.16744666,0.16739556,0.16734448,0.16729341,0.16724236,0.16719131,0.16714029,0.1670893,0.1670383,0.16698733,0.16693637,0.16688542,0.1668345,0.16678359,0.1667327,0.16668181,0.16663094,0.1665801,0.16652925,0.16647844,0.16642764,0.16637684,0.16632608,0.16627532,0.16622457,0.16617386,0.16612314,0.16607244,0.16602176,0.1659711,0.16592045,0.16586982,0.1658192,0.1657686,0.16571802,0.16566744,0.16561688,0.16556634,0.16551581,0.16546531,0.16541481,0.16536433,0.16531387,0.16526341,0.16521299,0.16516258,0.16511217,0.16506177,0.1650114,0.16496105,0.16491072,0.1648604,0.16481008,0.16475978,0.16470951,0.16465925,0.164609,0.16455877,0.16450855,0.16445835,0.16440816,0.16435799,0.16430783,0.16425769,0.16420756,0.16415745,0.16410735,0.16405727,0.1640072,0.16395716,0.16390713,0.1638571,0.1638071,0.16375712,0.16370714,0.16365717,0.16360724,0.1635573,0.1635074,0.16345751,0.16340762,0.16335775,0.1633079,0.16325806,0.16320825,0.16315843,0.16310865,0.16305888,0.1630091,0.16295937,0.16290964,0.16285992,0.16281022,0.16276054,0.16271088,0.16266121,0.16261159,0.16256195,0.16251235,0.16246276,0.16241318,0.1623636,0.16231407,0.16226453,0.16221501,0.16216551,0.16211602,0.16206655,0.16201709,0.16196765,0.16191822,0.16186881,0.16181941,0.16177003,0.16172066,0.16167131,0.16162197,0.16157266,0.16152336,0.16147406,0.16142479,0.16137552,0.16132627,0.16127704,0.16122784,0.16117862,0.16112944,0.16108027,0.16103111,0.16098197,0.16093285,0.16088374,0.16083464,0.16078556,0.16073649,0.16068743,0.1606384,0.16058938,0.16054037,0.16049139,0.16044241,0.16039345,0.1603445,0.16029556,0.16024666,0.16019775,0.16014886,0.16009998,0.16005114,0.16000229,0.15995346,0.15990464,0.15985584,0.15980707,0.1597583,0.15970954,0.1596608,0.15961209,0.15956338,0.15951468,0.15946601,0.15941735,0.1593687,0.15932006,0.15927143,0.15922283,0.15917425,0.15912567,0.15907712,0.15902857,0.15898004,0.15893152,0.15888302,0.15883453,0.15878606,0.15873761,0.15868917,0.15864074,0.15859233,0.15854393,0.15849555,0.15844719,0.15839882,0.1583505,0.15830217,0.15825386,0.15820557,0.15815729,0.15810902,0.15806077,0.15801254,0.15796432,0.15791611,0.15786792,0.15781975,0.15777159,0.15772344,0.15767531,0.1576272,0.15757908,0.157531,0.15748292,0.15743487,0.15738682,0.1573388,0.15729079,0.15724277,0.1571948,0.15714683,0.15709887,0.15705092,0.157003,0.15695508,0.15690719,0.15685931,0.15681145,0.15676358,0.15671574,0.15666792,0.15662012,0.15657231,0.15652454,0.15647677,0.15642901,0.15638128,0.15633357,0.15628585,0.15623815,0.15619047,0.15614282,0.15609516,0.15604754,0.15599991,0.1559523,0.15590471,0.15585713,0.15580958,0.15576203,0.1557145,0.15566698,0.15561947,0.15557198,0.1555245,0.15547705,0.1554296,0.15538217,0.15533476,0.15528734,0.15523995,0.15519258,0.15514523,0.15509789,0.15505055,0.15500323,0.15495594,0.15490864,0.15486138,0.15481411,0.15476686,0.15471964,0.15467243,0.15462522,0.15457803,0.15453087,0.1544837,0.15443656,0.15438944,0.15434232,0.15429522,0.15424813,0.15420106,0.154154,0.15410696,0.15405993,0.15401292,0.15396592,0.15391892,0.15387195,0.15382501,0.15377806,0.15373114,0.15368421,0.15363732,0.15359044,0.15354358,0.15349671,0.15344986,0.15340304,0.15335622,0.15330943,0.15326265,0.15321587,0.15316913,0.15312237,0.15307565,0.15302894,0.15298223,0.15293555,0.15288888,0.15284222,0.15279558,0.15274896,0.15270235,0.15265574,0.15260915,0.15256257,0.15251602,0.15246949,0.15242295,0.15237644,0.15232994,0.15228346,0.15223698,0.15219052,0.15214407,0.15209764,0.15205124,0.15200484,0.15195845,0.15191208,0.15186572,0.15181936,0.15177304,0.15172672,0.15168042,0.15163414,0.15158786,0.1515416,0.15149537,0.15144913,0.1514029,0.1513567,0.15131052,0.15126434,0.15121818,0.15117203,0.15112591,0.15107979,0.15103368,0.1509876,0.15094152,0.15089545,0.1508494,0.15080337,0.15075736,0.15071134,0.15066536,0.15061937,0.15057342,0.15052746,0.15048152,0.1504356,0.15038969,0.1503438,0.15029791,0.15025206,0.1502062,0.15016036,0.15011454,0.15006872,0.15002292,0.14997713,0.14993137,0.14988562,0.14983988,0.14979416,0.14974844,0.14970274,0.14965706,0.1496114,0.14956573,0.14952008,0.14947447,0.14942884,0.14938325,0.14933766,0.14929208,0.14924653,0.14920099,0.14915545,0.14910993,0.14906444,0.14901894,0.14897346,0.148928,0.14888255,0.14883712,0.1487917,0.1487463,0.14870091,0.14865553,0.14861016,0.14856482,0.14851947,0.14847414,0.14842884,0.14838354,0.14833827,0.14829299,0.14824775,0.14820251,0.14815727,0.14811206,0.14806686,0.14802168,0.1479765,0.14793135,0.1478862,0.14784108,0.14779596,0.14775085,0.14770576,0.1476607,0.14761564,0.14757058,0.14752555,0.14748053,0.14743553,0.14739053,0.14734556,0.14730059,0.14725564,0.1472107,0.14716578,0.14712086,0.14707597,0.14703108,0.14698623,0.14694136,0.14689653,0.1468517,0.14680688,0.14676207,0.1467173,0.14667252,0.14662777,0.14658302,0.14653829,0.14649357,0.14644885,0.14640418,0.14635949,0.14631483,0.14627017,0.14622554,0.14618091,0.14613631,0.14609171,0.14604713,0.14600256,0.145958,0.14591347,0.14586894,0.14582442,0.14577992,0.14573543,0.14569096,0.1456465,0.14560206,0.14555763,0.14551319,0.14546879,0.1454244,0.14538002,0.14533566,0.14529131,0.14524697,0.14520265,0.14515834,0.14511403,0.14506976,0.14502549,0.14498124,0.14493698,0.14489275,0.14484854,0.14480434,0.14476015,0.14471596,0.14467181,0.14462766,0.14458352,0.1445394,0.1444953,0.1444512,0.14440711,0.14436305,0.14431898,0.14427495,0.14423093,0.1441869,0.14414291,0.14409892,0.14405495,0.14401099,0.14396703,0.1439231,0.14387918,0.14383528,0.14379138,0.1437475,0.14370362,0.14365979,0.14361595,0.1435721,0.1435283,0.1434845,0.14344072,0.14339694,0.14335318,0.14330943,0.14326571,0.14322197,0.14317828,0.14313458,0.1430909,0.14304723,0.14300358,0.14295994,0.1429163,0.1428727,0.1428291,0.14278552,0.14274195,0.14269838,0.14265484,0.14261131,0.14256778,0.14252427,0.14248078,0.14243731,0.14239384,0.14235038,0.14230694,0.14226352,0.1422201,0.1421767,0.14213331,0.14208993,0.14204657,0.14200322,0.14195989,0.14191657,0.14187327,0.14182997,0.1417867,0.14174342,0.14170016,0.14165692,0.14161369,0.14157048,0.14152728,0.14148408,0.14144091,0.14139774,0.14135459,0.14131145,0.14126834,0.14122522,0.14118212,0.14113905,0.14109598,0.14105292,0.14100987,0.14096683,0.14092381,0.14088082,0.14083782,0.14079484,0.14075187,0.14070892,0.14066598,0.14062306,0.14058015,0.14053725,0.14049436,0.14045149,0.14040862,0.14036576,0.14032294,0.14028011,0.14023732,0.14019452,0.14015172,0.14010896,0.1400662,0.14002346,0.13998073,0.13993801,0.1398953,0.13985261,0.13980994,0.13976727,0.13972461,0.13968198,0.13963935,0.13959675,0.13955414,0.13951156,0.13946898,0.13942643,0.13938387,0.13934132,0.13929881,0.1392563,0.1392138,0.13917132,0.13912885,0.1390864,0.13904396,0.13900152,0.1389591,0.13891669,0.13887429,0.13883193,0.13878956,0.1387472,0.13870487,0.13866253,0.13862021,0.13857791,0.13853562,0.13849334,0.13845108,0.13840884,0.1383666,0.13832437,0.13828216,0.13823996,0.13819778,0.1381556,0.13811344,0.1380713,0.13802916,0.13798705,0.13794492,0.13790283,0.13786075,0.13781868,0.13777661,0.13773458,0.13769254,0.13765052,0.13760851,0.13756652,0.13752455,0.13748257,0.13744062,0.13739868,0.13735674,0.13731483,0.13727294,0.13723104,0.13718916,0.13714729,0.13710544,0.13706361,0.13702178,0.13697997,0.13693817,0.13689637,0.13685459,0.13681284,0.13677108,0.13672934,0.1366876,0.1366459,0.1366042,0.13656251,0.13652085,0.13647918,0.13643754,0.1363959,0.13635428,0.13631266,0.13627106,0.13622949,0.1361879,0.13614634,0.1361048,0.13606326,0.13602175,0.13598023,0.13593873,0.13589725,0.13585578,0.13581432,0.13577288,0.13573144,0.13569002,0.13564861,0.13560723,0.13556583,0.13552447,0.1354831,0.13544177,0.13540043,0.13535911,0.1353178,0.13527651,0.13523522,0.13519396,0.1351527,0.13511145,0.13507023,0.135029,0.1349878,0.1349466,0.13490543,0.13486426,0.1348231,0.13478196,0.13474083,0.13469972,0.1346586,0.13461751,0.13457642,0.13453536,0.1344943,0.13445327,0.13441223,0.13437122,0.13433021,0.13428922,0.13424824,0.13420726,0.13416632,0.13412537,0.13408443,0.13404351,0.13400261,0.13396172,0.13392083,0.13387997,0.13383912,0.13379827,0.13375744,0.13371663,0.13367581,0.13363501,0.13359424,0.13355348,0.13351272,0.13347198,0.13343124,0.13339052,0.13334982,0.13330913,0.13326845,0.13322778,0.13318712,0.13314648,0.13310584,0.13306522,0.13302462,0.13298403,0.13294344,0.13290288,0.1328623,0.13282177,0.13278124,0.13274072,0.1327002,0.1326597,0.13261922,0.13257876,0.1325383,0.13249785,0.13245742,0.132417,0.13237658,0.13233618,0.1322958,0.13225543,0.13221507,0.13217472,0.1321344,0.13209407,0.13205376,0.13201346,0.13197318,0.1319329,0.13189264,0.13185239,0.13181214,0.13177192,0.13173172,0.1316915,0.13165133,0.13161114,0.13157098,0.13153084,0.13149069,0.13145056,0.13141046,0.13137035,0.13133027,0.13129018,0.13125011,0.13121006,0.13117002,0.13113,0.13108999,0.13104998,0.13100998,0.13097,0.13093004,0.13089007,0.13085014,0.1308102,0.1307703,0.13073038,0.13069049,0.13065061,0.13061073,0.13057087,0.13053103,0.1304912,0.13045137,0.13041157,0.13037176,0.13033198,0.1302922,0.13025245,0.1302127,0.13017297,0.13013324,0.13009353,0.13005383,0.13001414,0.12997447,0.1299348,0.12989515,0.12985551,0.12981588,0.12977627,0.12973666,0.12969707,0.12965749,0.12961791,0.12957837,0.12953882,0.1294993,0.12945978,0.12942027,0.12938078,0.12934129,0.12930182,0.12926236,0.12922291,0.12918347,0.12914406,0.12910464,0.12906526,0.12902586,0.1289865,0.12894712,0.12890778,0.12886843,0.1288291,0.1287898,0.12875049,0.12871121,0.12867193,0.12863265,0.1285934,0.12855417,0.12851493,0.12847571,0.1284365,0.12839732,0.12835814,0.12831897,0.1282798,0.12824064,0.12820151,0.1281624,0.12812328,0.12808418,0.1280451,0.12800603,0.12796697,0.12792791,0.12788887,0.12784985,0.12781084,0.12777182,0.12773284,0.12769386,0.1276549,0.12761593,0.12757699,0.12753806,0.12749913,0.12746023,0.12742133,0.12738244,0.12734357,0.1273047,0.12726586,0.12722702,0.12718819,0.12714939,0.12711059,0.1270718,0.12703303,0.12699425,0.1269555,0.12691675,0.12687802,0.1268393,0.1268006,0.1267619,0.12672321,0.12668455,0.12664588,0.12660724,0.1265686,0.12652998,0.12649135,0.12645276,0.12641416,0.1263756,0.12633702,0.12629847,0.12625994,0.1262214,0.12618288,0.12614438,0.12610587,0.1260674,0.12602893,0.12599047,0.12595202,0.12591359,0.12587516,0.12583674,0.12579834,0.12575996,0.12572157,0.12568322,0.12564486,0.1256065,0.12556818,0.12552987,0.12549156,0.12545326,0.12541498,0.1253767,0.12533845,0.1253002,0.12526196,0.12522374,0.12518552,0.12514731,0.12510912,0.12507094,0.12503278,0.12499463,0.12495648,0.12491834,0.124880224,0.124842115,0.12480402,0.12476593,0.12472786,0.124689795,0.124651745,0.1246137,0.124575675,0.12453766,0.124499656,0.124461666,0.124423675,0.124385715,0.124347754,0.1243098,0.12427187,0.124233946,0.12419604,0.12415814,0.12412024,0.124082364,0.12404451,0.124006644,0.12396881,0.123930976,0.12389316,0.12385535,0.123817556,0.123779766,0.12374199,0.12370423,0.12366648,0.12362874,0.12359102,0.1235533,0.1235156,0.1234779,0.12344022,0.12340255,0.123364896,0.12332725,0.123289615,0.12325199,0.12321437,0.12317677,0.12313919,0.1231016,0.12306404,0.12302649,0.12298894,0.12295141,0.12291389,0.122876376,0.12283888,0.12280139,0.122763924,0.122726455,0.122689,0.12265156,0.12261414,0.12257671,0.12253931,0.12250192,0.12246453,0.12242716,0.1223898,0.12235245,0.122315116,0.12227779,0.12224047,0.122203164,0.12216587,0.12212859,0.12209132,0.12205406,0.12201682,0.12197958,0.121942356,0.12190514,0.12186795,0.121830754,0.121793576,0.121756405,0.121719256,0.12168211,0.12164498,0.12160785,0.121570736,0.12153365,0.12149656,0.12145948,0.12142241,0.12138536,0.121348314,0.121311285,0.12127427,0.121237256,0.121200256,0.12116327,0.121126294,0.12108933,0.12105238,0.121015444,0.12097851,0.120941594,0.120904684,0.12086779,0.1208309,0.12079403,0.12075717,0.12072032,0.12068348,0.12064665,0.12060983,0.12057303,0.12053623,0.12049945,0.12046267,0.12042592,0.120389156,0.120352425,0.12031569,0.12027898,0.120242275,0.12020558,0.1201689,0.12013223,0.120095566,0.12005892,0.120022275,0.119985655,0.11994904,0.11991244,0.11987583,0.11983925,0.11980268,0.11976613,0.11972958,0.11969304,0.11965652,0.119619995,0.119583495,0.119547,0.119510524,0.11947405,0.11943759,0.11940114,0.11936471,0.11932828,0.119291864,0.11925545,0.119219065,0.11918268,0.11914632,0.11910996,0.11907361,0.11903727,0.11900094,0.11896463,0.11892832,0.11889203,0.11885575,0.11881948,0.11878322,0.11874697,0.118710734,0.11867451,0.11863829,0.11860209,0.11856589,0.11852971,0.118493535,0.118457384,0.118421234,0.11838509,0.11834897,0.11831285,0.118276745,0.11824065,0.118204564,0.118168496,0.118132435,0.11809639,0.11806034,0.11802432,0.117988296,0.11795229,0.1179163,0.117880315,0.11784434,0.11780838,0.11777242,0.11773649,0.11770056,0.11766464,0.11762873,0.117592834,0.117556944,0.11752108,0.11748521,0.11744936,0.11741352,0.11737769,0.11734187,0.11730606,0.11727026,0.117234476,0.1171987,0.117162935,0.11712717,0.11709144,0.11705571,0.11701998,0.11698427,0.116948575,0.11691288,0.116877206,0.11684154,0.11680588,0.11677024,0.1167346,0.11669898,0.11666337,0.11662777,0.11659217,0.11655659,0.11652102,0.11648547,0.11644992,0.11641438,0.11637886,0.11634334,0.11630784,0.116272345,0.11623686,0.11620139,0.11616593,0.11613048,0.11609504,0.11605961,0.116024196,0.11598879,0.11595339,0.11591801,0.115882635,0.115847275,0.115811914,0.115776576,0.115741245,0.11570592,0.115670614,0.11563532,0.11560003,0.11556475,0.115529485,0.11549423,0.11545899,0.11542375,0.11538852,0.11535331,0.11531811,0.115282916,0.11524774,0.115212575,0.11517741,0.11514226,0.11510713,0.115072,0.11503688,0.115001775,0.11496668,0.1149316,0.11489652,0.11486146,0.11482641,0.11479137,0.11475634,0.11472132,0.11468631,0.114651315,0.11461633,0.11458135,0.11454637,0.11451142,0.11447648,0.114441544,0.114406615,0.11437171,0.1143368,0.11430191,0.11426704,0.11423216,0.11419731,0.11416245,0.11412761,0.11409278,0.11405797,0.114023164,0.11398837,0.11395358,0.1139188,0.11388405,0.11384929,0.11381455,0.11377981,0.11374509,0.11371038,0.113675684,0.11364099,0.11360631,0.113571644,0.113536984,0.11350234,0.11346769,0.11343307,0.113398455,0.11336385,0.113329254,0.11329467,0.1132601,0.113225535,0.113190986,0.11315644,0.113121904,0.113087386,0.113052875,0.11301837,0.11298389,0.11294941,0.11291494,0.11288048,0.11284604,0.112811595,0.11277717,0.11274276,0.11270835,0.11267395,0.112639576,0.1126052,0.11257084,0.11253648,0.11250214,0.11246781,0.112433486,0.112399176,0.11236487,0.112330586,0.112296306,0.11226203,0.112227775,0.112193525,0.11215929,0.11212507,0.11209084,0.11205664,0.112022445,0.11198826,0.111954086,0.11191992,0.11188576,0.11185162,0.11181749,0.11178336,0.111749254,0.111715145,0.11168106,0.11164698,0.1116129,0.11157885,0.111544795,0.11151076,0.11147673,0.11144271,0.111408696,0.111374706,0.11134071,0.11130674,0.11127277,0.111238815,0.11120486,0.111170925,0.111137,0.11110309,0.11106919,0.11103529,0.11100141,0.11096753,0.11093367,0.11089981,0.11086597,0.11083214,0.110798314,0.1107645,0.11073071,0.11069691,0.11066313,0.11062936,0.110595606,0.11056185,0.11052811,0.11049438,0.11046066,0.110426955,0.110393256,0.110359564,0.11032589,0.11029222,0.110258564,0.11022492,0.11019128,0.110157646,0.11012403,0.11009043,0.11005683,0.11002325,0.10998967,0.10995611,0.10992255,0.10988901,0.10985547,0.10982195,0.10978843,0.109754935,0.10972144,0.109687954,0.10965448,0.10962102,0.109587565,0.10955412,0.109520696,0.10948727,0.10945386,0.109420456,0.10938707,0.10935368,0.10932031,0.10928696,0.1092536,0.10922026,0.10918693,0.109153606,0.109120294,0.109087,0.10905371,0.109020434,0.10898716,0.1089539,0.108920656,0.10888741,0.10885418,0.10882097,0.10878776,0.10875456,0.108721375,0.1086882,0.10865502,0.108621866,0.10858872,0.10855558,0.10852245,0.10848934,0.10845623,0.108423136,0.10839005,0.10835697,0.1083239,0.10829084,0.1082578,0.10822476,0.108191736,0.108158715,0.10812571,0.10809271,0.10805973,0.10802675,0.10799378,0.10796083,0.10792789,0.10789495,0.107862025,0.10782911,0.1077962,0.1077633,0.10773042,0.10769755,0.107664675,0.10763182,0.107598975,0.10756614,0.10753331,0.10750049,0.107467696,0.1074349,0.10740211,0.10736933,0.10733657,0.10730381,0.107271075,0.10723833,0.10720561,0.10717289,0.10714019,0.10710749,0.107074805,0.10704213,0.10700946,0.10697681,0.106944166,0.10691153,0.1068789,0.10684629,0.10681368,0.10678109,0.1067485,0.106715925,0.10668336,0.1066508,0.106618255,0.10658572,0.10655319,0.106520675,0.10648817,0.106455676,0.106423184,0.10639071,0.106358245,0.10632579,0.106293336,0.106260896,0.10622847,0.10619606,0.10616364,0.106131256,0.10609886,0.10606648,0.10603412,0.106001765,0.105969414,0.10593708,0.10590474,0.10587242,0.10584012,0.10580782,0.105775535,0.10574325,0.105710976,0.105678715,0.10564647,0.10561423,0.105582,0.10554978,0.10551757,0.105485365,0.10545318,0.105421,0.105388835,0.10535667,0.105324514,0.10529237,0.105260246,0.105228126,0.105196014,0.1051639,0.10513181,0.10509973,0.10506766,0.105035596,0.10500354,0.1049715,0.10493946,0.10490744,0.10487542,0.10484342,0.10481143,0.104779445,0.104747474,0.104715504,0.10468355,0.1046516,0.10461967,0.10458774,0.104555815,0.10452391,0.104492016,0.104460135,0.104428254,0.10439639,0.10436453,0.10433268,0.104300834,0.10426901,0.10423719,0.10420538,0.10417358,0.104141794,0.10411001,0.10407824,0.10404648,0.104014724,0.103982985,0.10395125,0.10391953,0.10388781,0.10385611,0.10382442,0.10379274,0.10376106,0.1037294,0.10369774,0.1036661,0.10363446,0.103602834,0.10357122,0.103539616,0.10350802,0.103476435,0.10344486,0.103413284,0.10338173,0.10335018,0.10331864,0.10328711,0.10325559,0.103224084,0.10319258,0.10316109,0.10312961,0.10309813,0.103066675,0.10303522,0.10300378,0.10297234,0.10294092,0.102909505,0.1028781,0.102846704,0.102815315,0.10278394,0.10275258,0.10272122,0.10268988,0.10265854,0.10262721,0.102595896,0.10256458,0.10253328,0.102501996,0.10247072,0.10243944,0.10240818,0.10237693,0.10234568,0.10231446,0.10228323,0.10225202,0.10222082,0.10218962,0.10215844,0.10212726,0.102096096,0.10206494,0.10203379,0.10200265,0.10197153,0.10194041,0.1019093,0.1018782,0.10184711,0.101816036,0.10178496,0.1017539,0.101722844,0.101691805,0.101660766,0.10162975,0.10159873,0.10156773,0.101536736,0.10150575,0.10147478,0.101443805,0.10141285,0.1013819,0.10135096,0.101320036,0.10128911,0.1012582,0.101227306,0.101196416,0.10116553,0.10113466,0.1011038,0.101072945,0.1010421,0.10101126,0.10098044,0.10094962,0.100918815,0.100888014,0.10085723,0.10082645,0.10079568,0.10076493,0.100734174,0.10070343,0.1006727,0.10064198,0.10061126,0.100580566,0.10054987,0.10051919,0.10048851,0.10045784,0.10042719,0.10039654,0.10036591,0.10033528,0.10030466,0.10027405,0.10024345,0.10021285,0.10018227,0.1001517,0.10012114,0.100090586,0.10006004,0.100029506,0.09999898,0.09996846,0.09993795,0.09990746,0.09987697,0.09984649,0.099816024,0.09978557,0.09975511,0.099724665,0.09969424,0.09966381,0.099633396,0.09960299,0.0995726,0.099542215,0.09951184,0.09948147,0.09945111,0.09942076,0.099390425,0.09936009,0.09932977,0.09929945,0.09926916,0.09923886,0.09920858,0.0991783,0.099148035,0.09911778,0.09908753,0.09905729,0.09902706,0.09899684,0.09896663,0.09893643,0.098906234,0.09887606,0.09884588,0.09881572,0.098785564,0.09875542,0.09872528,0.09869515,0.098665036,0.09863492,0.09860483,0.098574735,0.09854465,0.09851458,0.098484516,0.09845447,0.09842441,0.09839439,0.09836435,0.09833434,0.098304324,0.09827433,0.09824434,0.09821436,0.098184384,0.098154426,0.09812447,0.09809453,0.098064594,0.098034665,0.09800475,0.09797484,0.097944945,0.09791505,0.09788518,0.0978553,0.09782544,0.09779558,0.097765744,0.09773591,0.09770608,0.09767626,0.09764646,0.09761666,0.09758687,0.09755709,0.09752732,0.09749755,0.0974678,0.09743806,0.097408324,0.0973786,0.097348884,0.09731918,0.09728947,0.09725979,0.09723011,0.09720044,0.09717077,0.09714112,0.09711147,0.09708184,0.09705221,0.0970226,0.09699299,0.09696339,0.0969338,0.09690422,0.09687465,0.09684508,0.09681553,0.096785985,0.09675644,0.096726924,0.096697405,0.09666789,0.0966384,0.09660891,0.096579425,0.09654995,0.09652048,0.09649103,0.09646159,0.09643215,0.09640272,0.096373305,0.09634389,0.0963145,0.096285105,0.09625571,0.09622634,0.09619698,0.096167624,0.096138276,0.096108936,0.09607961,0.096050285,0.096020974,0.09599167,0.095962375,0.095933095,0.09590382,0.095874555,0.0958453,0.095816046,0.0957868,0.09575758,0.09572835,0.09569914,0.09566994,0.09564074,0.09561156,0.09558238,0.095553204,0.09552405,0.095494896,0.09546576,0.095436625,0.0954075,0.095378384,0.095349275,0.09532018,0.09529109,0.09526201,0.09523294,0.09520388,0.09517483,0.095145784,0.09511675,0.09508772,0.0950587,0.09502969,0.09500069,0.0949717,0.09494272,0.09491374,0.09488478,0.09485582,0.09482688,0.09479794,0.094769016,0.09474009,0.09471118,0.094682276,0.09465339,0.0946245,0.094595626,0.094566755,0.0945379,0.09450905,0.09448021,0.094451375,0.09442255,0.09439374,0.09436493,0.09433614,0.09430735,0.09427857,0.09424979,0.09422103,0.09419228,0.09416354,0.0941348,0.09410608,0.094077356,0.09404865,0.09401995,0.09399126,0.09396257,0.093933895,0.09390523,0.09387658,0.09384793,0.09381929,0.09379066,0.09376204,0.09373342,0.09370482,0.093676224,0.09364764,0.093619056,0.09359049,0.093561925,0.093533374,0.09350483,0.0934763,0.093447775,0.09341926,0.09339075,0.09336224,0.09333375,0.093305275,0.093276806,0.09324834,0.09321988,0.09319143,0.09316299,0.09313457,0.09310614,0.09307773,0.093049325,0.09302092,0.09299254,0.092964165,0.09293579,0.092907436,0.09287908,0.09285074,0.0928224,0.092794076,0.092765756,0.092737444,0.09270915,0.09268086,0.092652574,0.0926243,0.09259604,0.09256778,0.09253953,0.09251129,0.09248305,0.092454836,0.09242662,0.09239842,0.09237022,0.09234203,0.09231385,0.09228568,0.092257515,0.09222936,0.09220121,0.09217308,0.09214495,0.09211683,0.09208872,0.09206062,0.09203253,0.09200444,0.09197636,0.09194829,0.091920234,0.09189218,0.09186414,0.09183611,0.09180808,0.09178007,0.09175206,0.09172405,0.09169607,0.091668084,0.091640115,0.091612145,0.09158418,0.09155624,0.091528304,0.09150037,0.09147245,0.09144453,0.09141662,0.091388725,0.09136084,0.09133296,0.09130509,0.09127723,0.09124937,0.091221526,0.09119368,0.091165856,0.091138035,0.09111023,0.09108242,0.091054626,0.09102684,0.09099906,0.09097129,0.09094353,0.09091578,0.09088803,0.09086029,0.09083257,0.090804845,0.09077714,0.090749435,0.09072174,0.090694055,0.090666376,0.090638705,0.09061105,0.0905834,0.09055576,0.09052812,0.0905005,0.09047288,0.090445265,0.09041766,0.09039007,0.09036249,0.090334915,0.09030734,0.09027979,0.090252236,0.0902247,0.09019716,0.09016964,0.090142116,0.090114616,0.090087116,0.090059616,0.09003214,0.09000466,0.08997719,0.089949735,0.08992229,0.089894846,0.08986741,0.08983999,0.08981258,0.089785166,0.08975776,0.089730375,0.08970299,0.08967562,0.08964825,0.089620896,0.089593545,0.0895662,0.08953887,0.08951155,0.08948423,0.08945692,0.089429624,0.08940233,0.08937505,0.08934777,0.08932051,0.08929325,0.089266,0.08923876,0.08921153,0.08918431,0.08915709,0.08912988,0.08910268,0.08907549,0.08904831,0.08902113,0.08899397,0.08896681,0.08893966,0.08891252,0.08888538,0.08885826,0.08883114,0.08880404,0.08877694,0.08874984,0.08872276,0.08869568,0.088668615,0.08864156,0.08861451,0.08858746,0.08856043,0.08853341,0.08850639,0.08847938,0.088452384,0.08842538,0.088398404,0.088371426,0.08834446,0.0883175,0.08829055,0.0882636,0.08823667,0.08820974,0.08818282,0.08815591,0.08812901,0.08810212,0.08807523,0.088048354,0.08802149,0.08799462,0.08796777,0.087940924,0.08791409,0.08788726,0.08786044,0.08783363,0.08780682,0.08778003,0.087753244,0.08772646,0.08769969,0.08767293,0.08764617,0.087619424,0.08759269,0.08756596,0.08753923,0.08751252,0.08748581,0.08745912,0.08743243,0.08740574,0.087379076,0.0873524,0.08732575,0.0872991,0.08727246,0.08724582,0.0872192,0.08719259,0.087165974,0.08713938,0.08711279,0.0870862,0.087059624,0.087033056,0.0870065,0.08697995,0.0869534,0.08692687,0.08690034,0.08687382,0.08684731,0.08682081,0.08679431,0.08676783,0.08674134,0.08671488,0.086688414,0.086661965,0.086635515,0.08660908,0.086582646,0.086556226,0.086529806,0.08650341,0.086477004,0.086450614,0.08642423,0.086397864,0.0863715,0.086345136,0.08631879,0.086292446,0.086266115,0.086239785,0.08621347,0.08618716,0.08616085,0.08613456,0.08610828,0.086082004,0.08605573,0.08602947,0.08600322,0.08597697,0.08595074,0.085924506,0.08589829,0.08587208,0.085845865,0.08581967,0.08579348,0.0857673,0.085741125,0.085714966,0.08568881,0.085662656,0.08563651,0.08561038,0.08558425,0.08555814,0.08553203,0.085505925,0.08547983,0.08545374,0.085427664,0.0854016,0.08537553,0.085349485,0.08532344,0.085297406,0.085271366,0.08524535,0.08521933,0.08519333,0.08516733,0.08514134,0.08511536,0.085089386,0.08506342,0.085037455,0.08501151,0.08498557,0.08495963,0.084933706,0.084907785,0.08488187,0.084855966,0.084830076,0.084804185,0.08477831,0.08475244,0.08472657,0.08470072,0.08467487,0.084649034,0.084623195,0.08459737,0.084571555,0.084545754,0.08451995,0.08449415,0.08446837,0.08444259,0.08441682,0.084391065,0.084365316,0.08433957,0.08431383,0.0842881,0.08426237,0.08423666,0.084210955,0.08418526,0.08415957,0.084133886,0.08410821,0.084082544,0.084056884,0.08403123,0.08400559,0.08397995,0.08395432,0.083928704,0.0839031,0.08387749,0.083851896,0.0838263,0.08380072,0.08377515,0.083749585,0.08372403,0.083698474,0.08367293,0.0836474,0.083621874,0.083596356,0.083570845,0.08354534,0.083519846,0.08349436,0.08346888,0.0834434,0.083417945,0.083392486,0.083367035,0.0833416,0.08331616,0.08329073,0.08326532,0.083239906,0.08321451,0.083189115,0.08316373,0.083138354,0.08311298,0.083087616,0.08306226,0.083036914,0.08301157,0.08298624,0.08296092,0.082935594,0.08291029,0.08288499,0.082859695,0.08283441,0.08280913,0.08278386,0.0827586,0.08273334,0.08270809,0.082682855,0.08265762,0.08263239,0.08260718,0.082581975,0.08255677,0.08253158,0.08250639,0.08248121,0.082456045,0.082430884,0.08240572,0.08238058,0.08235544,0.0823303,0.08230518,0.08228006,0.08225495,0.08222985,0.08220476,0.08217967,0.082154594,0.08212952,0.08210446,0.0820794,0.082054354,0.08202931,0.08200428,0.08197926,0.08195424,0.08192924,0.081904225,0.081879236,0.081854254,0.08182927,0.0818043,0.08177933,0.08175438,0.08172943,0.08170449,0.08167955,0.08165463,0.08162971,0.0816048,0.081579894,0.081555,0.08153012,0.08150523,0.08148036,0.0814555,0.08143064,0.08140579,0.08138095,0.08135611,0.08133128,0.081306465,0.081281655,0.081256844,0.081232056,0.08120726,0.08118248,0.08115771,0.08113294,0.08110818,0.08108343,0.08105868,0.081033945,0.08100922,0.0809845,0.08095978,0.08093508,0.08091038,0.080885686,0.08086101,0.08083633,0.080811664,0.080786996,0.08076234,0.0807377,0.08071306,0.08068843,0.08066381,0.08063919,0.08061458,0.08058998,0.080565386,0.080540806,0.08051623,0.080491655,0.08046709,0.08044253,0.08041798,0.08039345,0.08036891,0.08034439,0.08031987,0.080295354,0.08027086,0.08024636,0.08022187,0.08019739,0.08017291,0.08014845,0.08012399,0.08009954,null],"type":"scatter","name":"|S(t)|","hovertemplate":"(%{x:.4f} ms, %{y:.3f} a.u.)","x":[3.935,3.96552130317688,3.9960426063537597,4.02656390953064,4.05708521270752,4.087606515884399,4.11812781906128,4.148649122238159,4.179170425415039,4.209691728591919,4.240213031768799,4.270734334945679,4.301255638122559,4.331776941299439,4.362298244476318,4.392819547653199,4.423340850830078,4.453862154006958,4.484383457183838,4.514904760360718,4.545426063537597,4.575947366714478,4.606468669891358,4.636989973068237,4.667511276245117,4.698032579421997,4.728553882598877,4.759075185775757,4.789596488952637,4.820117792129516,4.850639095306397,4.881160398483276,4.911681701660156,4.942203004837037,4.972724308013916,5.0032456111907955,5.033766914367676,5.064288217544556,5.0948095207214354,5.125330823898316,5.155852127075195,5.186373430252075,5.216894733428955,5.247416036605835,5.277937339782715,5.308458642959595,5.338979946136474,5.3695012493133545,5.400022552490235,5.430543855667114,5.4610651588439945,5.491586462020874,5.522107765197754,5.5526290683746335,5.583150371551514,5.613671674728393,5.6441929779052735,5.674714281082153,5.705235584259033,5.7357568874359135,5.766278190612793,5.796799493789672,5.827320796966553,5.857842100143433,5.888363403320312,5.918884706497193,5.949406009674073,5.979927312850952,6.010448616027832,6.040969919204712,6.071491222381592,6.102012525558472,6.132533828735351,6.163055131912231,6.193576435089112,6.224097738265991,6.254619041442871,6.285140344619752,6.315661647796631,6.34618295097351,6.376704254150391,6.407225557327271,6.43774686050415,6.46826816368103,6.49878946685791,6.52931077003479,6.55983207321167,6.590353376388549,6.62087467956543,6.65139598274231,6.681917285919189,6.712438589096069,6.74295989227295,6.773481195449829,6.8040024986267085,6.834523801803589,6.865045104980469,6.8955664081573484,6.926087711334228,6.956609014511109,6.987130317687988,7.017651620864868,7.048172924041748,7.078694227218628,7.109215530395508,7.139736833572387,7.1702581367492675,7.200779439926148,7.231300743103027,7.261822046279907,7.292343349456787,7.322864652633667,7.3533859558105465,7.383907258987427,7.414428562164307,7.4449498653411865,7.475471168518066,7.505992471694946,7.5365137748718265,7.567035078048706,7.597556381225585,7.628077684402466,7.658598987579346,7.689120290756225,7.719641593933106,7.750162897109986,7.780684200286865,7.811205503463745,7.841726806640625,7.872248109817505,7.902769412994385,7.933290716171264,7.963812019348145,7.994333322525025,8.024854625701904,8.055375928878783,8.085897232055665,8.116418535232544,8.146939838409423,8.177461141586303,8.207982444763184,8.238503747940063,8.269025051116943,8.299546354293824,8.330067657470703,8.360588960647583,8.391110263824462,8.421631567001343,8.452152870178223,8.482674173355102,8.513195476531981,8.543716779708863,8.574238082885742,8.604759386062621,8.635280689239503,8.665801992416382,8.696323295593261,8.72684459877014,8.757365901947022,8.787887205123901,8.81840850830078,8.84892981147766,8.879451114654541,8.90997241783142,8.9404937210083,8.971015024185181,9.00153632736206,9.03205763053894,9.06257893371582,9.0931002368927,9.12362154006958,9.15414284324646,9.184664146423339,9.21518544960022,9.2457067527771,9.276228055953979,9.30674935913086,9.33727066230774,9.367791965484619,9.398313268661498,9.42883457183838,9.459355875015259,9.489877178192138,9.520398481369018,9.550919784545899,9.581441087722778,9.611962390899658,9.642483694076539,9.673004997253418,9.703526300430298,9.734047603607177,9.764568906784058,9.795090209960938,9.825611513137817,9.856132816314696,9.886654119491578,9.917175422668457,9.947696725845336,9.978218029022218,10.008739332199097,10.039260635375976,10.069781938552856,10.100303241729737,10.130824544906616,10.161345848083496,10.191867151260375,10.222388454437256,10.252909757614136,10.283431060791015,10.313952363967894,10.344473667144776,10.374994970321655,10.405516273498534,10.436037576675416,10.466558879852295,10.497080183029174,10.527601486206054,10.558122789382935,10.588644092559814,10.619165395736694,10.649686698913573,10.680208002090454,10.710729305267334,10.741250608444213,10.771771911621094,10.802293214797974,10.832814517974853,10.863335821151733,10.893857124328614,10.924378427505493,10.954899730682373,10.985421033859252,11.015942337036133,11.046463640213013,11.076984943389892,11.107506246566773,11.138027549743653,11.168548852920532,11.199070156097411,11.229591459274292,11.260112762451172,11.290634065628051,11.32115536880493,11.351676671981812,11.382197975158691,11.41271927833557,11.443240581512452,11.473761884689331,11.50428318786621,11.53480449104309,11.565325794219971,11.59584709739685,11.62636840057373,11.65688970375061,11.68741100692749,11.71793231010437,11.74845361328125,11.77897491645813,11.80949621963501,11.84001752281189,11.870538825988769,11.90106012916565,11.93158143234253,11.962102735519409,11.99262403869629,12.02314534187317,12.053666645050049,12.084187948226928,12.11470925140381,12.145230554580689,12.175751857757568,12.20627316093445,12.236794464111329,12.267315767288208,12.297837070465087,12.328358373641969,12.358879676818848,12.389400979995727,12.419922283172607,12.450443586349488,12.480964889526367,12.511486192703247,12.542007495880128,12.572528799057007,12.603050102233887,12.633571405410766,12.664092708587647,12.694614011764527,12.725135314941406,12.755656618118286,12.786177921295167,12.816699224472046,12.847220527648926,12.877741830825807,12.908263134002686,12.938784437179566,12.969305740356445,12.999827043533326,13.030348346710205,13.060869649887085,13.091390953063964,13.121912256240845,13.152433559417725,13.182954862594604,13.213476165771485,13.243997468948365,13.274518772125244,13.305040075302124,13.335561378479005,13.366082681655884,13.396603984832764,13.427125288009643,13.457646591186524,13.488167894363404,13.518689197540283,13.549210500717164,13.579731803894044,13.610253107070923,13.640774410247802,13.671295713424684,13.701817016601563,13.732338319778442,13.762859622955322,13.793380926132203,13.823902229309082,13.854423532485962,13.884944835662843,13.915466138839722,13.945987442016602,13.976508745193481,14.007030048370362,14.037551351547242,14.068072654724121,14.098593957901,14.129115261077882,14.159636564254761,14.19015786743164,14.22067917060852,14.251200473785401,14.28172177696228,14.31224308013916,14.342764383316041,14.37328568649292,14.4038069896698,14.43432829284668,14.46484959602356,14.49537089920044,14.52589220237732,14.556413505554199,14.58693480873108,14.61745611190796,14.647977415084839,14.67849871826172,14.709020021438599,14.739541324615479,14.770062627792358,14.800583930969239,14.831105234146118,14.861626537322998,14.892147840499877,14.922669143676758,14.953190446853638,14.983711750030517,15.014233053207398,15.044754356384278,15.075275659561157,15.105796962738037,15.136318265914918,15.166839569091797,15.197360872268677,15.227882175445556,15.258403478622437,15.288924781799317,15.319446084976196,15.349967388153077,15.380488691329957,15.411009994506836,15.441531297683715,15.472052600860597,15.502573904037476,15.533095207214355,15.563616510391235,15.594137813568116,15.624659116744995,15.655180419921875,15.685701723098756,15.716223026275635,15.746744329452515,15.777265632629394,15.807786935806275,15.838308238983155,15.868829542160034,15.899350845336913,15.929872148513795,15.960393451690674,15.990914754867553,16.021436058044433,16.051957361221312,16.08247866439819,16.11299996757507,16.143521270751954,16.174042573928833,16.204563877105713,16.235085180282592,16.26560648345947,16.29612778663635,16.32664908981323,16.35717039299011,16.387691696166993,16.418212999343872,16.44873430252075,16.47925560569763,16.50977690887451,16.54029821205139,16.57081951522827,16.601340818405152,16.63186212158203,16.66238342475891,16.69290472793579,16.72342603111267,16.75394733428955,16.78446863746643,16.81498994064331,16.84551124382019,16.87603254699707,16.90655385017395,16.93707515335083,16.96759645652771,16.998117759704588,17.028639062881467,17.05916036605835,17.08968166923523,17.12020297241211,17.15072427558899,17.181245578765868,17.211766881942747,17.242288185119627,17.27280948829651,17.30333079147339,17.33385209465027,17.364373397827148,17.394894701004027,17.425416004180907,17.455937307357786,17.48645861053467,17.51697991371155,17.547501216888428,17.578022520065307,17.608543823242186,17.639065126419066,17.669586429595945,17.700107732772825,17.730629035949708,17.761150339126587,17.791671642303466,17.822192945480346,17.852714248657225,17.883235551834105,17.913756855010984,17.944278158187867,17.974799461364746,18.005320764541626,18.035842067718505,18.066363370895385,18.096884674072264,18.127405977249143,18.157927280426026,18.188448583602906,18.218969886779785,18.249491189956665,18.280012493133544,18.310533796310423,18.341055099487303,18.371576402664182,18.402097705841065,18.432619009017944,18.463140312194824,18.493661615371703,18.524182918548583,18.554704221725462,18.58522552490234,18.615746828079224,18.646268131256104,18.676789434432983,18.707310737609863,18.737832040786742,18.76835334396362,18.7988746471405,18.82939595031738,18.859917253494263,18.890438556671143,18.920959859848022,18.9514811630249,18.98200246620178,19.01252376937866,19.04304507255554,19.073566375732423,19.104087678909302,19.13460898208618,19.16513028526306,19.19565158843994,19.22617289161682,19.2566941947937,19.287215497970582,19.31773680114746,19.34825810432434,19.37877940750122,19.4093007106781,19.43982201385498,19.47034331703186,19.500864620208738,19.53138592338562,19.5619072265625,19.59242852973938,19.62294983291626,19.65347113609314,19.683992439270018,19.714513742446897,19.74503504562378,19.77555634880066,19.80607765197754,19.836598955154418,19.867120258331298,19.897641561508177,19.928162864685056,19.958684167861936,19.989205471038815,20.019726774215698,20.050248077392578,20.080769380569457,20.111290683746336,20.141811986923216,20.172333290100095,20.202854593276975,20.233375896453854,20.263897199630737,20.294418502807616,20.324939805984496,20.355461109161375,20.385982412338254,20.416503715515134,20.447025018692013,20.477546321868896,20.508067625045776,20.538588928222655,20.569110231399534,20.599631534576414,20.630152837753293,20.660674140930173,20.691195444107056,20.721716747283935,20.752238050460814,20.782759353637694,20.813280656814573,20.843801959991453,20.874323263168332,20.90484456634521,20.935365869522094,20.965887172698974,20.996408475875853,21.026929779052733,21.057451082229612,21.08797238540649,21.11849368858337,21.149014991760254,21.179536294937133,21.210057598114012,21.240578901290892,21.27110020446777,21.30162150764465,21.33214281082153,21.362664113998413,21.393185417175292,21.423706720352172,21.45422802352905,21.48474932670593,21.51527062988281,21.54579193305969,21.57631323623657,21.606834539413452,21.63735584259033,21.66787714576721,21.69839844894409,21.72891975212097,21.75944105529785,21.789962358474728,21.82048366165161,21.85100496482849,21.88152626800537,21.91204757118225,21.94256887435913,21.973090177536008,22.003611480712888,22.034132783889767,22.06465408706665,22.09517539024353,22.12569669342041,22.156217996597288,22.186739299774167,22.217260602951047,22.247781906127926,22.27830320930481,22.30882451248169,22.339345815658568,22.369867118835447,22.400388422012327,22.430909725189206,22.461431028366086,22.49195233154297,22.522473634719848,22.552994937896727,22.583516241073607,22.614037544250486,22.644558847427366,22.675080150604245,22.705601453781124,22.736122756958007,22.766644060134887,22.797165363311766,22.827686666488646,22.858207969665525,22.888729272842404,22.919250576019284,22.949771879196167,22.980293182373046,23.010814485549925,23.041335788726805,23.071857091903684,23.102378395080564,23.132899698257443,23.163421001434326,23.193942304611205,23.224463607788085,23.254984910964964,23.285506214141844,23.316027517318723,23.346548820495602,23.377070123672482,23.407591426849365,23.438112730026244,23.468634033203124,23.499155336380003,23.529676639556882,23.560197942733762,23.59071924591064,23.621240549087524,23.651761852264404,23.682283155441283,23.712804458618162,23.74332576179504,23.77384706497192,23.8043683681488,23.834889671325683,23.865410974502563,23.895932277679442,23.92645358085632,23.9569748840332,23.98749618721008,24.01801749038696,24.04853879356384,24.079060096740722,24.1095813999176,24.14010270309448,24.17062400627136,24.20114530944824,24.23166661262512,24.262187915802,24.29270921897888,24.32323052215576,24.35375182533264,24.38427312850952,24.4147944316864,24.44531573486328,24.475837038040158,24.506358341217037,24.53687964439392,24.5674009475708,24.59792225074768,24.62844355392456,24.658964857101438,24.689486160278317,24.720007463455197,24.75052876663208,24.78105006980896,24.81157137298584,24.842092676162718,24.872613979339597,24.903135282516477,24.933656585693356,24.96417788887024,24.99469919204712,25.025220495223998,25.055741798400877,25.086263101577757,25.116784404754636,25.147305707931515,25.177827011108395,25.208348314285278,25.238869617462157,25.269390920639037,25.299912223815916,25.330433526992795,25.360954830169675,25.391476133346554,25.421997436523437,25.452518739700317,25.483040042877196,25.513561346054075,25.544082649230955,25.574603952407834,25.605125255584714,25.635646558761596,25.666167861938476,25.696689165115355,25.727210468292235,25.757731771469114,25.788253074645993,25.818774377822873,25.849295680999752,25.879816984176635,25.910338287353515,25.940859590530394,25.971380893707273,26.001902196884153,26.032423500061032,26.06294480323791,26.093466106414795,26.123987409591674,26.154508712768553,26.185030015945433,26.215551319122312,26.24607262229919,26.27659392547607,26.30711522865295,26.337636531829833,26.368157835006713,26.398679138183592,26.42920044136047,26.45972174453735,26.49024304771423,26.52076435089111,26.551285654067993,26.581806957244872,26.61232826042175,26.64284956359863,26.67337086677551,26.70389216995239,26.73441347312927,26.764934776306152,26.79545607948303,26.82597738265991,26.85649868583679,26.88701998901367,26.91754129219055,26.94806259536743,26.978583898544308,27.00910520172119,27.03962650489807,27.07014780807495,27.10066911125183,27.13119041442871,27.161711717605588,27.192233020782467,27.22275432395935,27.25327562713623,27.28379693031311,27.31431823348999,27.344839536666868,27.375360839843747,27.405882143020627,27.43640344619751,27.46692474937439,27.49744605255127,27.527967355728148,27.558488658905027,27.589009962081906,27.619531265258786,27.650052568435665,27.68057387161255,27.711095174789428,27.741616477966307,27.772137781143186,27.802659084320066,27.833180387496945,27.863701690673825,27.894222993850708,27.924744297027587,27.955265600204466,27.985786903381346,28.016308206558225,28.046829509735105,28.077350812911984,28.107872116088867,28.138393419265746,28.168914722442626,28.199436025619505,28.229957328796385,28.260478631973264,28.290999935150143,28.321521238327023,28.352042541503906,28.382563844680785,28.413085147857664,28.443606451034544,28.474127754211423,28.504649057388303,28.535170360565182,28.565691663742065,28.596212966918944,28.626734270095824,28.657255573272703,28.687776876449583,28.718298179626462,28.74881948280334,28.77934078598022,28.809862089157104,28.840383392333983,28.870904695510863,28.901425998687742,28.93194730186462,28.9624686050415,28.99298990821838,29.023511211395263,29.054032514572143,29.084553817749022,29.1150751209259,29.14559642410278,29.17611772727966,29.20663903045654,29.237160333633422,29.267681636810302,29.29820293998718,29.32872424316406,29.35924554634094,29.38976684951782,29.4202881526947,29.45080945587158,29.48133075904846,29.51185206222534,29.54237336540222,29.5728946685791,29.60341597175598,29.63393727493286,29.664458578109738,29.69497988128662,29.7255011844635,29.75602248764038,29.78654379081726,29.817065093994138,29.847586397171018,29.878107700347897,29.90862900352478,29.93915030670166,29.96967160987854,30.000192913055418,30.030714216232298,30.061235519409177,30.091756822586056,30.122278125762936,30.15279942893982,30.183320732116698,30.213842035293577,30.244363338470457,30.274884641647336,30.305405944824216,30.335927248001095,30.366448551177978,30.396969854354857,30.427491157531737,30.458012460708616,30.488533763885496,30.519055067062375,30.549576370239254,30.580097673416137,30.610618976593017,30.641140279769896,30.671661582946776,30.702182886123655,30.732704189300534,30.763225492477414,30.793746795654293,30.824268098831176,30.854789402008056,30.885310705184935,30.915832008361814,30.946353311538694,30.976874614715573,31.007395917892453,31.037917221069335,31.068438524246215,31.098959827423094,31.129481130599974,31.160002433776853,31.190523736953732,31.221045040130612,31.25156634330749,31.282087646484374,31.312608949661254,31.343130252838133,31.373651556015012,31.404172859191892,31.43469416236877,31.46521546554565,31.495736768722534,31.526258071899413,31.556779375076292,31.587300678253172,31.61782198143005,31.64834328460693,31.67886458778381,31.709385890960693,31.739907194137572,31.77042849731445,31.80094980049133,31.83147110366821,31.86199240684509,31.89251371002197,31.92303501319885,31.95355631637573,31.98407761955261,32.01459892272949,32.04512022590637,32.07564152908325,32.10616283226013,32.13668413543701,32.16720543861389,32.197726741790774,32.22824804496765,32.25876934814453,32.28929065132141,32.31981195449829,32.35033325767517,32.38085456085205,32.41137586402893,32.44189716720581,32.47241847038269,32.50293977355957,32.53346107673645,32.56398237991333,32.59450368309021,32.62502498626709,32.65554628944397,32.68606759262085,32.71658889579773,32.74711019897461,32.777631502151486,32.80815280532837,32.83867410850525,32.86919541168213,32.89971671485901,32.93023801803589,32.96075932121277,32.991280624389645,33.02180192756653,33.052323230743404,33.08284453392029,33.11336583709717,33.143887140274046,33.17440844345093,33.204929746627805,33.23545104980469,33.265972352981564,33.29649365615845,33.32701495933533,33.357536262512205,33.38805756568909,33.418578868865964,33.44910017204285,33.47962147521972,33.510142778396606,33.54066408157349,33.571185384750365,33.60170668792725,33.63222799110412,33.66274929428101,33.69327059745788,33.723791900634765,33.75431320381165,33.784834506988524,33.81535581016541,33.84587711334228,33.876398416519166,33.90691971969604,33.937441022872925,33.96796232604981,33.99848362922668,34.029004932403566,34.05952623558044,34.090047538757325,34.1205688419342,34.151090145111084,34.18161144828797,34.21213275146484,34.242654054641726,34.2731753578186,34.303696660995485,34.33421796417236,34.36473926734924,34.39526057052612,34.425781873703,34.456303176879885,34.48682448005676,34.517345783233644,34.54786708641052,34.5783883895874,34.60890969276428,34.63943099594116,34.669952299118044,34.70047360229492,34.7309949054718,34.76151620864868,34.79203751182556,34.82255881500244,34.85308011817932,34.883601421356204,34.91412272453308,34.94464402770996,34.97516533088684,35.00568663406372,35.0362079372406,35.06672924041748,35.09725054359436,35.12777184677124,35.15829314994812,35.188814453125,35.21933575630188,35.24985705947876,35.28037836265564,35.31089966583252,35.3414209690094,35.37194227218628,35.40246357536316,35.43298487854004,35.463506181716916,35.4940274848938,35.524548788070675,35.55507009124756,35.58559139442444,35.61611269760132,35.6466340007782,35.677155303955075,35.70767660713196,35.738197910308834,35.76871921348572,35.7992405166626,35.829761819839476,35.86028312301636,35.890804426193235,35.92132572937012,35.951847032547,35.982368335723876,36.01288963890076,36.043410942077635,36.07393224525452,36.1044535484314,36.13497485160828,36.16549615478516,36.196017457962036,36.22653876113892,36.257060064315795,36.28758136749268,36.31810267066956,36.348623973846436,36.37914527702332,36.409666580200195,36.44018788337708,36.470709186553954,36.50123048973084,36.53175179290771,36.562273096084596,36.59279439926148,36.623315702438354,36.65383700561524,36.68435830879211,36.714879611968996,36.74540091514587,36.775922218322755,36.80644352149964,36.836964824676514,36.8674861278534,36.89800743103027,36.928528734207156,36.95905003738403,36.989571340560914,37.0200926437378,37.05061394691467,37.081135250091556,37.11165655326843,37.142177856445315,37.17269915962219,37.203220462799074,37.23374176597596,37.26426306915283,37.294784372329715,37.32530567550659,37.355826978683474,37.38634828186035,37.41686958503723,37.447390888214116,37.47791219139099,37.508433494567875,37.53895479774475,37.569476100921634,37.59999740409851,37.63051870727539,37.66104001045227,37.69156131362915,37.722082616806034,37.75260391998291,37.78312522315979,37.81364652633667,37.84416782951355,37.87468913269043,37.90521043586731,37.93573173904419,37.96625304222107,37.99677434539795,38.02729564857483,38.05781695175171,38.08833825492859,38.11885955810547,38.14938086128235,38.17990216445923,38.21042346763611,38.24094477081299,38.27146607398987,38.301987377166746,38.33250868034363,38.36302998352051,38.39355128669739,38.42407258987427,38.45459389305115,38.48511519622803,38.515636499404906,38.54615780258179,38.57667910575867,38.60720040893555,38.63772171211243,38.668243015289306,38.69876431846619,38.729285621643065,38.75980692481995,38.79032822799683,38.82084953117371,38.85137083435059,38.881892137527466,38.91241344070435,38.942934743881224,38.97345604705811,39.00397735023498,39.034498653411866,39.06501995658875,39.095541259765625,39.12606256294251,39.156583866119384,39.18710516929627,39.21762647247314,39.248147775650025,39.27866907882691,39.309190382003784,39.33971168518067,39.37023298835754,39.400754291534426,39.4312755947113,39.461796897888185,39.49231820106507,39.522839504241944,39.55336080741883,39.5838821105957,39.614403413772585,39.64492471694946,39.675446020126344,39.70596732330323,39.7364886264801,39.767009929656986,39.79753123283386,39.828052536010745,39.85857383918762,39.8890951423645,39.919616445541386,39.95013774871826,39.980659051895145,40.01118035507202,40.041701658248904,40.07222296142578,40.10274426460266,40.13326556777954,40.16378687095642,40.194308174133305,40.22482947731018,40.25535078048706,40.28587208366394,40.31639338684082,40.3469146900177,40.37743599319458,40.407957296371464,40.43847859954834,40.46899990272522,40.4995212059021,40.53004250907898,40.56056381225586,40.59108511543274,40.62160641860962,40.6521277217865,40.68264902496338,40.71317032814026,40.74369163131714,40.77421293449402,40.8047342376709,40.83525554084778,40.86577684402466,40.89629814720154,40.92681945037842,40.9573407535553,40.987862056732176,41.01838335990906,41.04890466308594,41.07942596626282,41.1099472694397,41.14046857261658,41.17098987579346,41.201511178970335,41.23203248214722,41.2625537853241,41.29307508850098,41.32359639167786,41.354117694854736,41.38463899803162,41.415160301208495,41.44568160438538,41.476202907562254,41.50672421073914,41.53724551391602,41.567766817092895,41.59828812026978,41.628809423446654,41.65933072662354,41.68985202980041,41.720373332977296,41.75089463615418,41.781415939331055,41.81193724250794,41.84245854568481,41.872979848861696,41.90350115203857,41.934022455215455,41.96454375839234,41.995065061569214,42.0255863647461,42.05610766792297,42.086628971099856,42.11715027427673,42.147671577453615,42.1781928806305,42.20871418380737,42.239235486984256,42.26975679016113,42.300278093338015,42.33079939651489,42.361320699691774,42.39184200286866,42.42236330604553,42.452884609222416,42.48340591239929,42.513927215576174,42.54444851875305,42.57496982192993,42.60549112510681,42.63601242828369,42.666533731460575,42.69705503463745,42.727576337814334,42.75809764099121,42.78861894416809,42.81914024734497,42.84966155052185,42.880182853698734,42.91070415687561,42.94122546005249,42.97174676322937,43.00226806640625,43.03278936958313,43.06331067276001,43.093831975936894,43.12435327911377,43.15487458229065,43.18539588546753,43.21591718864441,43.24643849182129,43.27695979499817,43.30748109817505,43.33800240135193,43.36852370452881,43.39904500770569,43.42956631088257,43.46008761405945,43.49060891723633,43.52113022041321,43.55165152359009,43.58217282676697,43.61269412994385,43.64321543312073,43.673736736297606,43.70425803947449,43.73477934265137,43.76530064582825,43.79582194900513,43.826343252182006,43.85686455535889,43.887385858535765,43.91790716171265,43.948428464889524,43.97894976806641,44.00947107124329,44.039992374420166,44.07051367759705,44.101034980773925,44.13155628395081,44.16207758712768,44.192598890304566,44.22312019348145,44.253641496658325,44.28416279983521,44.314684103012084,44.34520540618897,44.37572670936584,44.406248012542726,44.43676931571961,44.467290618896484,44.49781192207337,44.52833322525024,44.558854528427126,44.589375831604,44.619897134780885,44.65041843795777,44.680939741134644,44.71146104431153,44.7419823474884,44.772503650665286,44.80302495384216,44.833546257019044,44.86406756019593,44.8945888633728,44.925110166549686,44.95563146972656,44.986152772903445,45.01667407608032,45.047195379257204,45.07771668243408,45.10823798561096,45.138759288787845,45.16928059196472,45.199801895141604,45.23032319831848,45.26084450149536,45.29136580467224,45.32188710784912,45.352408411026005,45.38292971420288,45.413451017379764,45.44397232055664,45.47449362373352,45.5050149269104,45.53553623008728,45.566057533264164,45.59657883644104,45.62710013961792,45.6576214427948,45.68814274597168,45.71866404914856,45.74918535232544,45.77970665550232,45.8102279586792,45.84074926185608,45.87127056503296,45.90179186820984,45.93231317138672,45.9628344745636,45.99335577774048,46.02387708091736,46.05439838409424,46.08491968727112,46.115440990448,46.145962293624876,46.17648359680176,46.20700489997864,46.23752620315552,46.2680475063324,46.29856880950928,46.32909011268616,46.359611415863036,46.39013271903992,46.420654022216794,46.45117532539368,46.48169662857056,46.512217931747436,46.54273923492432,46.573260538101195,46.60378184127808,46.634303144454954,46.66482444763184,46.69534575080872,46.725867053985596,46.75638835716248,46.786909660339354,46.81743096351624,46.84795226669311,46.878473569869996,46.90899487304688,46.939516176223755,46.97003747940064,47.000558782577514,47.0310800857544,47.06160138893127,47.092122692108155,47.12264399528504,47.153165298461914,47.1836866016388,47.21420790481567,47.244729207992556,47.27525051116943,47.305771814346315,47.3362931175232,47.366814420700074,47.39733572387696,47.42785702705383,47.458378330230715,47.48889963340759,47.519420936584474,47.54994223976135,47.58046354293823,47.610984846115116,47.64150614929199,47.672027452468875,47.70254875564575,47.73307005882263,47.76359136199951,47.79411266517639,47.824633968353275,47.85515527153015,47.885676574707034,47.91619787788391,47.94671918106079,47.97724048423767,48.00776178741455,48.038283090591435,48.06880439376831,48.09932569694519,48.12984700012207,48.16036830329895,48.19088960647583,48.22141090965271,48.251932212829594,48.28245351600647,48.31297481918335,48.34349612236023,48.37401742553711,48.40453872871399,48.43506003189087,48.46558133506775,48.49610263824463,48.52662394142151,48.55714524459839,48.58766654777527,48.61818785095215,48.64870915412903,48.679230457305906,48.70975176048279,48.74027306365967,48.77079436683655,48.80131567001343,48.831836973190306,48.86235827636719,48.892879579544065,48.92340088272095,48.95392218589783,48.98444348907471,49.01496479225159,49.045486095428465,49.07600739860535,49.106528701782224,49.13705000495911,49.16757130813599,49.198092611312866,49.22861391448975,49.259135217666625,49.28965652084351,49.320177824020384,49.35069912719727,49.38122043037415,49.411741733551025,49.44226303672791,49.472784339904784,49.50330564308167,49.53382694625854,49.564348249435426,49.59486955261231,49.625390855789185,49.65591215896607,49.68643346214294,49.71695476531983,49.7474760684967,49.777997371673585,49.80851867485047,49.839039978027344,49.86956128120423,49.9000825843811,49.930603887557986,49.96112519073486,49.991646493911745,50.02216779708862,50.0526891002655,50.083210403442386,50.11373170661926,50.144253009796145,50.17477431297302,50.205295616149904,50.23581691932678,50.26633822250366,50.296859525680546,50.32738082885742,50.357902132034305,50.38842343521118,50.41894473838806,50.44946604156494,50.47998734474182,50.510508647918705,50.54102995109558,50.571551254272464,50.60207255744934,50.63259386062622,50.6631151638031,50.69363646697998,50.724157770156864,50.75467907333374,50.78520037651062,50.8157216796875,50.84624298286438,50.87676428604126,50.90728558921814,50.937806892395024,50.9683281955719,50.99884949874878,51.02937080192566,51.05989210510254,51.09041340827942,51.1209347114563,51.151456014633176,51.18197731781006,51.21249862098694,51.24301992416382,51.2735412273407,51.30406253051758,51.33458383369446,51.365105136871335,51.39562644004822,51.4261477432251,51.45666904640198,51.48719034957886,51.517711652755736,51.54823295593262,51.578754259109495,51.60927556228638,51.63979686546326,51.67031816864014,51.70083947181702,51.731360774993895,51.76188207817078,51.792403381347654,51.82292468452454,51.85344598770142,51.883967290878296,51.91448859405518,51.945009897232055,51.97553120040894,52.00605250358581,52.036573806762696,52.06709510993958,52.097616413116455,52.12813771629334,52.158659019470214,52.1891803226471,52.21970162582397,52.250222929000856,52.28074423217774,52.311265535354615,52.3417868385315,52.37230814170837,52.402829444885256,52.43335074806213,52.463872051239015,52.49439335441589,52.524914657592774,52.55543596076966,52.58595726394653,52.616478567123416,52.64699987030029,52.677521173477174,52.70804247665405,52.73856377983093,52.769085083007816,52.79960638618469,52.830127689361575,52.86064899253845,52.891170295715334,52.92169159889221,52.95221290206909,52.982734205245976,53.01325550842285,53.043776811599734,53.07429811477661,53.10481941795349,53.13534072113037,53.16586202430725,53.196383327484135,53.22690463066101,53.257425933837894,53.28794723701477,53.31846854019165,53.34898984336853,53.37951114654541,53.410032449722294,53.44055375289917,53.47107505607605,53.50159635925293,53.53211766242981,53.56263896560669,53.59316026878357,53.62368157196045,53.65420287513733,53.68472417831421,53.71524548149109,53.74576678466797,53.77628808784485,53.80680939102173,53.837330694198606,53.86785199737549,53.89837330055237,53.92889460372925,53.95941590690613,53.989937210083006,54.02045851325989,54.050979816436765,54.08150111961365,54.11202242279053,54.14254372596741,54.17306502914429,54.203586332321166,54.23410763549805,54.264628938674925,54.29515024185181,54.32567154502869,54.356192848205566,54.38671415138245,54.417235454559325,54.44775675773621,54.478278060913084,54.50879936408997,54.53932066726685,54.569841970443726,54.60036327362061,54.630884576797484,54.66140587997437,54.69192718315124,54.722448486328126,54.75296978950501,54.783491092681885,54.81401239585877,54.844533699035644,54.87505500221253,54.9055763053894,54.936097608566286,54.96661891174316,54.997140214920044,55.02766151809693,55.0581828212738,55.088704124450686,55.11922542762756,55.149746730804445,55.18026803398132,55.210789337158204,55.24131064033509,55.27183194351196,55.302353246688845,55.33287454986572,55.363395853042604,55.39391715621948,55.42443845939636,55.454959762573246,55.48548106575012,55.516002368927005,55.54652367210388,55.577044975280764,55.60756627845764,55.63808758163452,55.668608884811405,55.69913018798828,55.729651491165164,55.76017279434204,55.79069409751892,55.8212154006958,55.85173670387268,55.882258007049565,55.91277931022644,55.94330061340332,55.9738219165802,56.00434321975708,56.03486452293396,56.06538582611084,56.09590712928772,56.1264284324646,56.15694973564148,56.18747103881836,56.21799234199524,56.24851364517212,56.279034948349,56.309556251525876,56.34007755470276,56.37059885787964,56.40112016105652,56.4316414642334,56.46216276741028,56.49268407058716,56.523205373764036,56.55372667694092,56.5842479801178,56.61476928329468,56.64529058647156,56.675811889648436,56.70633319282532,56.736854496002195,56.76737579917908,56.79789710235596,56.82841840553284,56.85893970870972,56.889461011886596,56.91998231506348,56.950503618240354,56.98102492141724,57.01154622459412,57.042067527770996,57.07258883094788,57.103110134124755,57.13363143730164,57.164152740478514,57.1946740436554,57.22519534683228,57.255716650009155,57.28623795318604,57.316759256362914,57.3472805595398,57.37780186271667,57.408323165893556,57.43884446907043,57.469365772247315,57.4998870754242,57.530408378601074,57.56092968177796,57.59145098495483,57.621972288131715,57.65249359130859,57.683014894485474,57.71353619766236,57.74405750083923,57.774578804016116,57.80510010719299,57.835621410369875,57.86614271354675,57.89666401672363,57.927185319900516,57.95770662307739,57.988227926254275,58.01874922943115,58.049270532608034,58.07979183578491,58.11031313896179,58.140834442138676,58.17135574531555,58.201877048492435,58.23239835166931,58.26291965484619,58.29344095802307,58.32396226119995,58.354483564376835,58.38500486755371,58.415526170730594,58.44604747390747,58.47656877708435,58.50709008026123,58.53761138343811,58.56813268661499,58.59865398979187,58.62917529296875,58.65969659614563,58.69021789932251,58.72073920249939,58.75126050567627,58.78178180885315,58.81230311203003,58.84282441520691,58.87334571838379,58.90386702156067,58.93438832473755,58.96490962791443,58.995430931091306,59.02595223426819,59.05647353744507,59.08699484062195,59.11751614379883,59.14803744697571,59.17855875015259,59.209080053329465,59.23960135650635,59.27012265968323,59.30064396286011,59.33116526603699,59.361686569213866,59.39220787239075,59.422729175567625,59.45325047874451,59.48377178192139,59.51429308509827,59.54481438827515,59.575335691452025,59.60585699462891,59.636378297805784,59.66689960098267,59.69742090415955,59.727942207336426,59.75846351051331,59.788984813690185,59.81950611686707,59.85002742004394,59.880548723220826,59.9110700263977,59.941591329574585,59.97211263275147,60.002633935928344,60.03315523910523,60.0636765422821,60.094197845458986,60.12471914863586,60.155240451812745,60.18576175498963,60.2162830581665,60.246804361343386,60.27732566452026,60.307846967697145,60.33836827087402,60.368889574050904,60.39941087722779,60.42993218040466,60.460453483581546,60.49097478675842,60.521496089935304,60.55201739311218,60.58253869628906,60.613059999465946,60.64358130264282,60.674102605819705,60.70462390899658,60.735145212173464,60.76566651535034,60.79618781852722,60.826709121704106,60.85723042488098,60.887751728057864,60.91827303123474,60.94879433441162,60.9793156375885,61.00983694076538,61.04035824394226,61.07087954711914,61.101400850296024,61.1319221534729,61.16244345664978,61.19296475982666,61.22348606300354,61.25400736618042,61.2845286693573,61.31504997253418,61.34557127571106,61.37609257888794,61.40661388206482,61.4371351852417,61.46765648841858,61.49817779159546,61.52869909477234,61.55922039794922,61.5897417011261,61.62026300430298,61.65078430747986,61.681305610656736,61.71182691383362,61.7423482170105,61.77286952018738,61.80339082336426,61.833912126541136,61.86443342971802,61.894954732894895,61.92547603607178,61.95599733924866,61.98651864242554,62.01703994560242,62.047561248779296,62.07808255195618,62.108603855133055,62.13912515830994,62.16964646148681,62.200167764663696,62.23068906784058,62.261210371017455,62.29173167419434,62.322252977371214,62.3527742805481,62.38329558372497,62.413816886901856,62.44433819007874,62.474859493255614,62.5053807964325,62.53590209960937,62.566423402786256,62.59694470596313,62.627466009140015,62.6579873123169,62.688508615493774,62.71902991867066,62.74955122184753,62.780072525024416,62.81059382820129,62.841115131378174,62.87163643455506,62.90215773773193,62.932679040908816,62.96320034408569,62.993721647262575,63.02424295043945,63.054764253616334,63.08528555679322,63.11580685997009,63.146328163146975,63.17684946632385,63.207370769500734,63.23789207267761,63.26841337585449,63.298934679031376,63.32945598220825,63.359977285385135,63.39049858856201,63.421019891738894,63.45154119491577,63.48206249809265,63.51258380126953,63.54310510444641,63.573626407623294,63.60414771080017,63.63466901397705,63.66519031715393,63.69571162033081,63.72623292350769,63.75675422668457,63.78727552986145,63.81779683303833,63.84831813621521,63.87883943939209,63.90936074256897,63.93988204574585,63.97040334892273,64.00092465209961,64.03144595527648,64.06196725845336,64.09248856163025,64.12300986480713,64.153531167984,64.18405247116088,64.21457377433777,64.24509507751465,64.27561638069153,64.3061376838684,64.33665898704528,64.36718029022217,64.39770159339905,64.42822289657593,64.4587441997528,64.48926550292968,64.51978680610657,64.55030810928345,64.58082941246032,64.6113507156372,64.64187201881408,64.67239332199097,64.70291462516785,64.73343592834472,64.7639572315216,64.79447853469848,64.82499983787537,64.85552114105224,64.88604244422912,64.916563747406,64.94708505058288,64.97760635375977,65.00812765693664,65.03864896011352,65.0691702632904,65.09969156646729,65.13021286964417,65.16073417282104,65.19125547599792,65.2217767791748,65.25229808235169,65.28281938552855,65.31334068870544,65.34386199188232,65.3743832950592,65.40490459823609,65.43542590141296,65.46594720458984,65.49646850776672,65.5269898109436,65.55751111412049,65.58803241729736,65.61855372047424,65.64907502365112,65.679596326828,65.71011763000487,65.74063893318176,65.77116023635864,65.80168153953552,65.8322028427124,65.86272414588927,65.89324544906616,65.92376675224304,65.95428805541992,65.98480935859679,66.01533066177367,66.04585196495056,66.07637326812744,66.10689457130432,66.13741587448119,66.16793717765808,66.19845848083496,66.22897978401184,66.25950108718872,66.29002239036559,66.32054369354248,66.35106499671936,66.38158629989624,66.41210760307311,66.44262890625,66.47315020942688,66.50367151260376,66.53419281578064,66.56471411895751,66.5952354221344,66.62575672531128,66.65627802848816,66.68679933166504,66.71732063484191,66.7478419380188,66.77836324119568,66.80888454437256,66.83940584754943,66.86992715072631,66.9004484539032,66.93096975708008,66.96149106025696,66.99201236343383,67.02253366661071,67.0530549697876,67.08357627296448,67.11409757614135,67.14461887931823,67.17514018249511,67.205661485672,67.23618278884888,67.26670409202575,67.29722539520263,67.32774669837951,67.3582680015564,67.38878930473328,67.41931060791015,67.44983191108703,67.48035321426391,67.5108745174408,67.54139582061767,67.57191712379455,67.60243842697143,67.63295973014831,67.6634810333252,67.69400233650207,67.72452363967895,67.75504494285583,67.78556624603272,67.8160875492096,67.84660885238647,67.87713015556335,67.90765145874023,67.93817276191712,67.968694065094,67.99921536827087,68.02973667144775,68.06025797462463,68.09077927780152,68.1213005809784,68.15182188415527,68.18234318733215,68.21286449050903,68.24338579368592,68.2739070968628,68.30442840003967,68.33494970321655,68.36547100639343,68.39599230957032,68.42651361274719,68.45703491592407,68.48755621910095,68.51807752227784,68.54859882545472,68.57912012863159,68.60964143180847,68.64016273498535,68.67068403816224,68.70120534133912,68.73172664451599,68.76224794769287,68.79276925086975,68.82329055404664,68.8538118572235,68.88433316040039,68.91485446357727,68.94537576675415,68.97589706993104,69.0064183731079,69.03693967628479,69.06746097946167,69.09798228263855,69.12850358581542,69.1590248889923,69.18954619216919,69.22006749534607,69.25058879852295,69.28111010169982,69.3116314048767,69.34215270805359,69.37267401123047,69.40319531440736,69.43371661758422,69.46423792076111,69.49475922393799,69.52528052711487,69.55580183029174,69.58632313346862,69.61684443664551,69.64736573982239,69.67788704299927,69.70840834617614,69.73892964935303,69.76945095252991,69.79997225570679,69.83049355888367,69.86101486206054,69.89153616523743,69.92205746841431,69.95257877159119,69.98310007476806,70.01362137794494,70.04414268112183,70.07466398429871,70.10518528747559,70.13570659065246,70.16622789382934,70.19674919700623,70.22727050018311,70.25779180335998,70.28831310653686,70.31883440971374,70.34935571289063,70.37987701606751,70.41039831924438,70.44091962242126,70.47144092559815,70.50196222877503,70.53248353195191,70.56300483512878,70.59352613830566,70.62404744148255,70.65456874465943,70.6850900478363,70.71561135101318,70.74613265419006,70.77665395736695,70.80717526054383,70.8376965637207,70.86821786689758,70.89873917007446,70.92926047325135,70.95978177642823,70.9903030796051,71.02082438278198,71.05134568595886,71.08186698913575,71.11238829231262,71.1429095954895,71.17343089866638,71.20395220184326,71.23447350502015,71.26499480819702,71.2955161113739,71.32603741455078,71.35655871772767,71.38708002090453,71.41760132408142,71.4481226272583,71.47864393043518,71.50916523361207,71.53968653678893,71.57020783996582,71.6007291431427,71.63125044631958,71.66177174949647,71.69229305267334,71.72281435585022,71.7533356590271,71.78385696220398,71.81437826538085,71.84489956855774,71.87542087173462,71.9059421749115,71.93646347808838,71.96698478126525,71.99750608444214,72.02802738761902,72.0585486907959,72.08906999397279,72.11959129714965,72.15011260032654,72.18063390350342,72.2111552066803,72.24167650985717,72.27219781303405,72.30271911621094,72.33324041938782,72.3637617225647,72.39428302574157,72.42480432891846,72.45532563209534,72.48584693527222,72.5163682384491,72.54688954162597,72.57741084480286,72.60793214797974,72.63845345115662,72.66897475433349,72.69949605751037,72.73001736068726,72.76053866386414,72.79105996704102,72.82158127021789,72.85210257339477,72.88262387657166,72.91314517974854,72.94366648292541,72.97418778610229,73.00470908927917,73.03523039245606,73.06575169563294,73.09627299880981,73.12679430198669,73.15731560516357,73.18783690834046,73.21835821151734,73.24887951469421,73.27940081787109,73.30992212104798,73.34044342422486,73.37096472740173,73.40148603057861,73.4320073337555,73.46252863693238,73.49304994010926,73.52357124328613,73.55409254646301,73.5846138496399,73.61513515281678,73.64565645599366,73.67617775917053,73.70669906234741,73.7372203655243,73.76774166870118,73.79826297187805,73.82878427505493,73.85930557823181,73.8898268814087,73.92034818458558,73.95086948776245,73.98139079093933,74.01191209411621,74.0424333972931,74.07295470046996,74.10347600364685,74.13399730682373,74.16451861000061,74.1950399131775,74.22556121635436,74.25608251953125,74.28660382270813,74.31712512588501,74.3476464290619,74.37816773223877,74.40868903541565,74.43921033859253,74.46973164176941,74.50025294494628,74.53077424812317,74.56129555130005,74.59181685447693,74.62233815765381,74.65285946083068,74.68338076400757,74.71390206718445,74.74442337036133,74.77494467353822,74.80546597671508,74.83598727989197,74.86650858306885,74.89702988624573,74.9275511894226,74.95807249259948,74.98859379577637,75.01911509895325,75.04963640213013,75.080157705307,75.11067900848388,75.14120031166077,75.17172161483765,75.20224291801452,75.2327642211914,75.26328552436829,75.29380682754517,75.32432813072205,75.35484943389892,75.3853707370758,75.41589204025269,75.44641334342957,75.47693464660645,75.50745594978332,75.5379772529602,75.56849855613709,75.59901985931397,75.62954116249084,75.66006246566772,75.6905837688446,75.72110507202149,75.75162637519837,75.78214767837524,75.81266898155212,75.843190284729,75.87371158790589,75.90423289108277,75.93475419425964,75.96527549743652,75.9957968006134,76.02631810379029,76.05683940696716,76.08736071014404,76.11788201332092,76.1484033164978,76.17892461967469,76.20944592285156,76.23996722602844,76.27048852920532,76.3010098323822,76.33153113555908,76.36205243873596,76.39257374191284,76.42309504508972,76.4536163482666,76.48413765144348,76.51465895462036,76.54518025779724,76.57570156097412,76.60622286415101,76.63674416732788,76.66726547050476,76.69778677368164,76.72830807685853,76.7588293800354,76.78935068321228,76.81987198638916,76.85039328956604,76.88091459274293,76.9114358959198,76.94195719909668,76.97247850227356,77.00299980545044,77.03352110862733,77.0640424118042,77.09456371498108,77.12508501815796,77.15560632133484,77.18612762451171,77.2166489276886,77.24717023086548,77.27769153404236,77.30821283721924,77.33873414039611,77.369255443573,77.39977674674988,77.43029804992676,77.46081935310364,77.49134065628051,77.5218619594574,77.55238326263428,77.58290456581116,77.61342586898803,77.64394717216491,77.6744684753418,77.70498977851868,77.73551108169556,77.76603238487243,77.79655368804931,77.8270749912262,77.85759629440308,77.88811759757995,77.91863890075683,77.94916020393372,77.9796815071106,78.01020281028748,78.04072411346435,78.07124541664123,78.10176671981812,78.132288022995,78.16280932617188,78.19333062934875,78.22385193252563,78.25437323570252,78.2848945388794,78.31541584205627,78.34593714523315,78.37645844841003,78.40697975158692,78.4375010547638,78.46802235794067,78.49854366111755,78.52906496429443,78.55958626747132,78.5901075706482,78.62062887382507,78.65115017700195,78.68167148017884,78.71219278335572,78.74271408653259,78.77323538970947,78.80375669288635,78.83427799606324,78.86479929924012,78.89532060241699,78.92584190559387,78.95636320877075,78.98688451194764,79.0174058151245,79.04792711830139,79.07844842147827,79.10896972465515,79.13949102783204,79.1700123310089,79.20053363418579,79.23105493736267,79.26157624053955,79.29209754371644,79.3226188468933,79.35314015007019,79.38366145324707,79.41418275642395,79.44470405960082,79.4752253627777,79.50574666595459,79.53626796913147,79.56678927230836,79.59731057548522,79.6278318786621,79.65835318183899,79.68887448501587,79.71939578819276,79.74991709136962,79.78043839454651,79.81095969772339,79.84148100090027,79.87200230407714,79.90252360725403,79.93304491043091,79.96356621360779,79.99408751678467,80.02460881996154,80.05513012313843,80.08565142631531,80.11617272949219,80.14669403266906,80.17721533584594,80.20773663902283,80.23825794219971,80.26877924537659,80.29930054855346,80.32982185173034,80.36034315490723,80.39086445808411,80.42138576126099,80.45190706443786,80.48242836761474,80.51294967079163,80.54347097396851,80.57399227714538,80.60451358032226,80.63503488349915,80.66555618667603,80.69607748985291,80.72659879302978,80.75712009620666,80.78764139938355,80.81816270256043,80.84868400573731,80.87920530891418,80.90972661209106,80.94024791526795,80.97076921844483,81.0012905216217,81.03181182479858,81.06233312797546,81.09285443115235,81.12337573432923,81.1538970375061,81.18441834068298,81.21493964385986,81.24546094703675,81.27598225021362,81.3065035533905,81.33702485656738,81.36754615974426,81.39806746292115,81.42858876609802,81.4591100692749,81.48963137245178,81.52015267562867,81.55067397880555,81.58119528198242,81.6117165851593,81.64223788833618,81.67275919151307,81.70328049468993,81.73380179786682,81.7643231010437,81.79484440422058,81.82536570739747,81.85588701057434,81.88640831375122,81.9169296169281,81.94745092010498,81.97797222328187,82.00849352645874,82.03901482963562,82.0695361328125,82.10005743598938,82.13057873916625,82.16110004234314,82.19162134552002,82.2221426486969,82.25266395187379,82.28318525505065,82.31370655822754,82.34422786140442,82.3747491645813,82.40527046775817,82.43579177093505,82.46631307411194,82.49683437728882,82.5273556804657,82.55787698364257,82.58839828681946,82.61891958999634,82.64944089317322,82.6799621963501,82.71048349952697,82.74100480270386,82.77152610588074,82.80204740905762,82.83256871223449,82.86309001541137,82.89361131858826,82.92413262176514,82.95465392494202,82.98517522811889,83.01569653129577,83.04621783447266,83.07673913764954,83.10726044082642,83.13778174400329,83.16830304718017,83.19882435035706,83.22934565353394,83.25986695671081,83.29038825988769,83.32090956306457,83.35143086624146,83.38195216941834,83.41247347259521,83.44299477577209,83.47351607894898,83.50403738212586,83.53455868530274,83.56507998847961,83.5956012916565,83.62612259483338,83.65664389801026,83.68716520118713,83.71768650436401,83.7482078075409,83.77872911071778,83.80925041389466,83.83977171707153,83.87029302024841,83.9008143234253,83.93133562660218,83.96185692977905,83.99237823295593,84.02289953613281,84.0534208393097,84.08394214248658,84.11446344566345,84.14498474884033,84.17550605201721,84.2060273551941,84.23654865837098,84.26706996154785,84.29759126472473,84.32811256790161,84.3586338710785,84.38915517425536,84.41967647743225,84.45019778060913,84.48071908378601,84.5112403869629,84.54176169013977,84.57228299331665,84.60280429649353,84.63332559967041,84.6638469028473,84.69436820602417,84.72488950920105,84.75541081237793,84.78593211555481,84.81645341873168,84.84697472190857,84.87749602508545,84.90801732826233,84.93853863143922,84.96905993461608,84.99958123779297,85.03010254096985,85.06062384414673,85.0911451473236,85.12166645050048,85.15218775367737,85.18270905685425,85.21323036003113,85.243751663208,85.27427296638488,85.30479426956177,85.33531557273865,85.36583687591553,85.3963581790924,85.42687948226929,85.45740078544617,85.48792208862305,85.51844339179992,85.5489646949768,85.57948599815369,85.61000730133057,85.64052860450745,85.67104990768432,85.7015712108612,85.73209251403809,85.76261381721497,85.79313512039185,85.82365642356872,85.8541777267456,85.88469902992249,85.91522033309937,85.94574163627624,85.97626293945312,86.00678424263,86.03730554580689,86.06782684898377,86.09834815216064,86.12886945533752,86.1593907585144,86.18991206169129,86.22043336486816,86.25095466804504,86.28147597122192,86.3119972743988,86.34251857757569,86.37303988075256,86.40356118392944,86.43408248710632,86.4646037902832,86.49512509346009,86.52564639663696,86.55616769981384,86.58668900299072,86.6172103061676,86.64773160934448,86.67825291252136,86.70877421569824,86.73929551887512,86.76981682205201,86.80033812522888,86.83085942840576,86.86138073158264,86.89190203475953,86.92242333793641,86.95294464111328,86.98346594429016,87.01398724746704,87.04450855064393,87.0750298538208,87.10555115699768,87.13607246017456,87.16659376335144,87.19711506652833,87.2276363697052,87.25815767288208,87.28867897605896,87.31920027923584,87.34972158241271,87.3802428855896,87.41076418876648,87.44128549194336,87.47180679512024,87.50232809829711,87.532849401474,87.56337070465088,87.59389200782776,87.62441331100464,87.65493461418151,87.6854559173584,87.71597722053528,87.74649852371216,87.77701982688903,87.80754113006591,87.8380624332428,87.86858373641968,87.89910503959656,87.92962634277343,87.96014764595031,87.9906689491272,88.02119025230408,88.05171155548096,88.08223285865783,88.11275416183472,88.1432754650116,88.17379676818848,88.20431807136535,88.23483937454223,88.26536067771912,88.295881980896,88.32640328407288,88.35692458724975,88.38744589042663,88.41796719360352,88.4484884967804,88.47900979995728,88.50953110313415,88.54005240631103,88.57057370948792,88.6010950126648,88.63161631584167,88.66213761901855,88.69265892219543,88.72318022537232,88.7537015285492,88.78422283172607,88.81474413490295,88.84526543807984,88.87578674125672,88.90630804443359,88.93682934761047,88.96735065078735,88.99787195396424,89.02839325714112,89.05891456031799,89.08943586349487,89.11995716667175,89.15047846984864,89.18099977302552,89.21152107620239,89.24204237937927,89.27256368255615,89.30308498573304,89.3336062889099,89.36412759208679,89.39464889526367,89.42517019844055,89.45569150161744,89.4862128047943,89.51673410797119,89.54725541114807,89.57777671432495,89.60829801750184,89.6388193206787,89.66934062385559,89.69986192703247,89.73038323020936,89.76090453338622,89.7914258365631,89.82194713973999,89.85246844291687,89.88298974609376,89.91351104927062,89.94403235244751,89.97455365562439,90.00507495880127,90.03559626197814,90.06611756515503,90.09663886833191,90.12716017150879,90.15768147468567,90.18820277786254,90.21872408103943,90.24924538421631,90.27976668739319,90.31028799057007,90.34080929374694,90.37133059692383,90.40185190010071,90.43237320327759,90.46289450645446,90.49341580963134,90.52393711280823,90.55445841598511,90.58497971916199,90.61550102233886,90.64602232551574,90.67654362869263,90.70706493186951,90.7375862350464,90.76810753822326,90.79862884140015,90.82915014457703,90.85967144775391,90.89019275093078,90.92071405410766,90.95123535728455,90.98175666046143,91.01227796363831,91.04279926681518,91.07332056999206,91.10384187316895,91.13436317634583,91.1648844795227,91.19540578269958,91.22592708587646,91.25644838905335,91.28696969223023,91.3174909954071,91.34801229858398,91.37853360176086,91.40905490493775,91.43957620811463,91.4700975112915,91.50061881446838,91.53114011764526,91.56166142082215,91.59218272399902,91.6227040271759,91.65322533035278,91.68374663352967,91.71426793670655,91.74478923988342,91.7753105430603,91.80583184623718,91.83635314941407,91.86687445259095,91.89739575576782,91.9279170589447,91.95843836212158,91.98895966529847,92.01948096847534,92.05000227165222,92.0805235748291,92.11104487800598,92.14156618118287,92.17208748435974,92.20260878753662,92.2331300907135,92.26365139389038,92.29417269706725,92.32469400024414,92.35521530342102,92.3857366065979,92.41625790977479,92.44677921295165,92.47730051612854,92.50782181930542,92.5383431224823,92.56886442565919,92.59938572883605,92.62990703201294,92.66042833518982,92.6909496383667,92.72147094154357,92.75199224472046,92.78251354789734,92.81303485107422,92.8435561542511,92.87407745742797,92.90459876060486,92.93512006378174,92.96564136695862,92.9961626701355,93.02668397331237,93.05720527648926,93.08772657966614,93.11824788284302,93.14876918601989,93.17929048919677,93.20981179237366,93.24033309555054,93.27085439872742,93.30137570190429,93.33189700508117,93.36241830825806,93.39293961143494,93.42346091461181,93.45398221778869,93.48450352096557,93.51502482414246,93.54554612731934,93.57606743049621,93.60658873367309,93.63711003684998,93.66763134002686,93.69815264320374,93.72867394638061,93.7591952495575,93.78971655273438,93.82023785591126,93.85075915908813,93.88128046226501,93.9118017654419,93.94232306861878,93.97284437179566,94.00336567497253,94.03388697814941,94.0644082813263,94.09492958450318,94.12545088768006,94.15597219085693,94.18649349403381,94.2170147972107,94.24753610038758,94.27805740356445,94.30857870674133,94.33910000991821,94.3696213130951,94.40014261627198,94.43066391944885,94.46118522262573,94.49170652580261,94.5222278289795,94.55274913215638,94.58327043533325,94.61379173851013,94.64431304168701,94.6748343448639,94.70535564804077,94.73587695121765,94.76639825439453,94.79691955757141,94.8274408607483,94.85796216392517,94.88848346710205,94.91900477027893,94.94952607345581,94.98004737663268,95.01056867980957,95.04108998298645,95.07161128616333,95.10213258934021,95.13265389251708,95.16317519569397,95.19369649887085,95.22421780204773,95.25473910522462,95.28526040840148,95.31578171157837,95.34630301475525,95.37682431793213,95.407345621109,95.43786692428588,95.46838822746277,95.49890953063965,95.52943083381653,95.5599521369934,95.59047344017029,95.62099474334717,95.65151604652405,95.68203734970093,95.7125586528778,95.74307995605469,95.77360125923157,95.80412256240845,95.83464386558532,95.8651651687622,95.89568647193909,95.92620777511597,95.95672907829285,95.98725038146972,96.0177716846466,96.04829298782349,96.07881429100037,96.10933559417724,96.13985689735412,96.170378200531,96.20089950370789,96.23142080688477,96.26194211006164,96.29246341323852,96.3229847164154,96.35350601959229,96.38402732276917,96.41454862594604,96.44506992912292,96.4755912322998,96.50611253547669,96.53663383865356,96.56715514183044,96.59767644500732,96.6281977481842,96.65871905136109,96.68924035453796,96.71976165771484,96.75028296089172,96.7808042640686,96.81132556724549,96.84184687042236,96.87236817359924,96.90288947677612,96.93341077995301,96.96393208312988,96.99445338630676,97.02497468948364,97.05549599266052,97.08601729583741,97.11653859901428,97.14705990219116,97.17758120536804,97.20810250854493,97.2386238117218,97.26914511489868,97.29966641807556,97.33018772125244,97.36070902442933,97.3912303276062,97.42175163078308,97.45227293395996,97.48279423713684,97.51331554031373,97.5438368434906,97.57435814666748,97.60487944984436,97.63540075302124,97.66592205619811,97.696443359375,97.72696466255188,97.75748596572876,97.78800726890564,97.81852857208251,97.8490498752594,97.87957117843628,97.91009248161316,97.94061378479005,97.97113508796691,98.0016563911438,98.03217769432068,98.06269899749756,98.09322030067443,98.12374160385131,98.1542629070282,98.18478421020508,98.21530551338196,98.24582681655883,98.27634811973572,98.3068694229126,98.33739072608948,98.36791202926635,98.39843333244323,98.42895463562012,98.459475938797,98.48999724197388,98.52051854515075,98.55103984832763,98.58156115150452,98.6120824546814,98.64260375785828,98.67312506103515,98.70364636421203,98.73416766738892,98.7646889705658,98.79521027374267,98.82573157691955,98.85625288009643,98.88677418327332,98.9172954864502,98.94781678962707,98.97833809280395,99.00885939598083,99.03938069915772,99.0699020023346,99.10042330551147,99.13094460868835,99.16146591186524,99.19198721504212,99.22250851821899,99.25302982139587,99.28355112457275,99.31407242774964,99.34459373092652,99.37511503410339,99.40563633728027,99.43615764045715,99.46667894363404,99.49720024681092,99.52772154998779,99.55824285316467,99.58876415634155,99.61928545951844,99.6498067626953,99.68032806587219,99.71084936904907,99.74137067222595,99.77189197540284,99.8024132785797,99.83293458175659,99.86345588493347,99.89397718811036,99.92449849128722,99.9550197944641,99.98554109764099,100.01606240081787,100.04658370399476,100.07710500717162,100.10762631034851,100.13814761352539,100.16866891670227,100.19919021987916,100.22971152305603,100.26023282623291,100.29075412940979,100.32127543258667,100.35179673576354,100.38231803894043,100.41283934211731,100.44336064529419,100.47388194847107,100.50440325164794,100.53492455482483,100.56544585800171,100.59596716117859,100.62648846435548,100.65700976753234,100.68753107070923,100.71805237388611,100.74857367706299,100.77909498023986,100.80961628341674,100.84013758659363,100.87065888977051,100.9011801929474,100.93170149612426,100.96222279930114,100.99274410247803,101.02326540565491,101.05378670883178,101.08430801200866,101.11482931518555,101.14535061836243,101.17587192153931,101.20639322471618,101.23691452789306,101.26743583106995,101.29795713424683,101.32847843742371,101.35899974060058,101.38952104377746,101.42004234695435,101.45056365013123,101.4810849533081,101.51160625648498,101.54212755966186,101.57264886283875,101.60317016601563,101.6336914691925,101.66421277236938,101.69473407554626,101.72525537872315,101.75577668190003,101.7862979850769,101.81681928825378,101.84734059143067,101.87786189460755,101.90838319778442,101.9389045009613,101.96942580413818,101.99994710731507,102.03046841049195,102.06098971366882,102.0915110168457,102.12203232002258,102.15255362319947,102.18307492637634,102.21359622955322,102.2441175327301,102.27463883590698,102.30516013908387,102.33568144226074,102.36620274543762,102.3967240486145,102.42724535179138,102.45776665496827,102.48828795814514,102.51880926132202,102.5493305644989,102.57985186767579,102.61037317085265,102.64089447402954,102.67141577720642,102.7019370803833,102.73245838356019,102.76297968673705,102.79350098991394,102.82402229309082,102.8545435962677,102.88506489944459,102.91558620262145,102.94610750579834,102.97662880897522,103.0071501121521,103.03767141532897,103.06819271850586,103.09871402168274,103.12923532485962,103.1597566280365,103.19027793121337,103.22079923439026,103.25132053756714,103.28184184074402,103.31236314392089,103.34288444709777,103.37340575027466,103.40392705345154,103.43444835662842,103.46496965980529,103.49549096298217,103.52601226615906,103.55653356933594,103.58705487251282,103.61757617568969,103.64809747886657,103.67861878204346,103.70914008522034,103.73966138839721,103.77018269157409,103.80070399475098,103.83122529792786,103.86174660110474,103.89226790428161,103.9227892074585,103.95331051063538,103.98383181381226,104.01435311698914,104.04487442016601,104.0753957233429,104.10591702651978,104.13643832969666,104.16695963287353,104.19748093605041,104.2280022392273,104.25852354240418,104.28904484558106,104.31956614875793,104.35008745193481,104.3806087551117,104.41113005828858,104.44165136146545,104.47217266464233,104.50269396781921,104.5332152709961,104.56373657417298,104.59425787734985,104.62477918052673,104.65530048370361,104.6858217868805,104.71634309005738,104.74686439323425,104.77738569641113,104.80790699958801,104.8384283027649,104.86894960594176,104.89947090911865,104.92999221229553,104.96051351547241,104.9910348186493,105.02155612182617,105.05207742500305,105.08259872817993,105.11312003135681,105.1436413345337,105.17416263771057,105.20468394088745,105.23520524406433,105.26572654724121,105.29624785041808,105.32676915359497,105.35729045677185,105.38781175994873,105.41833306312562,105.44885436630248,105.47937566947937,105.50989697265625,105.54041827583313,105.57093957901002,105.60146088218688,105.63198218536377,105.66250348854065,105.69302479171753,105.7235460948944,105.75406739807129,105.78458870124817,105.81511000442505,105.84563130760193,105.8761526107788,105.90667391395569,105.93719521713257,105.96771652030945,105.99823782348632,106.0287591266632,106.05928042984009,106.08980173301697,106.12032303619385,106.15084433937072,106.1813656425476,106.21188694572449,106.24240824890137,106.27292955207825,106.30345085525512,106.333972158432,106.36449346160889,106.39501476478577,106.42553606796264,106.45605737113952,106.4865786743164,106.51709997749329,106.54762128067017,106.57814258384704,106.60866388702392,106.6391851902008,106.66970649337769,106.70022779655457,106.73074909973144,106.76127040290832,106.7917917060852,106.82231300926209,106.85283431243896,106.88335561561584,106.91387691879272,106.9443982219696,106.97491952514649,107.00544082832336,107.03596213150024,107.06648343467712,107.09700473785401,107.12752604103088,107.15804734420776,107.18856864738464,107.21908995056152,107.24961125373841,107.28013255691528,107.31065386009216,107.34117516326904,107.37169646644593,107.40221776962281,107.43273907279968,107.46326037597656,107.49378167915344,107.52430298233033,107.5548242855072,107.58534558868408,107.61586689186096,107.64638819503784,107.67690949821473,107.7074308013916,107.73795210456848,107.76847340774536,107.79899471092224,107.82951601409913,107.860037317276,107.89055862045288,107.92107992362976,107.95160122680664,107.98212252998351,108.0126438331604,108.04316513633728,108.07368643951416,108.10420774269105,108.13472904586791,108.1652503490448,108.19577165222168,108.22629295539856,108.25681425857543,108.28733556175231,108.3178568649292,108.34837816810608,108.37889947128296,108.40942077445983,108.43994207763672,108.4704633808136,108.50098468399048,108.53150598716736,108.56202729034423,108.59254859352112,108.623069896698,108.65359119987488,108.68411250305175,108.71463380622863,108.74515510940552,108.7756764125824,108.80619771575928,108.83671901893615,108.86724032211303,108.89776162528992,108.9282829284668,108.95880423164368,108.98932553482055,109.01984683799743,109.05036814117432,109.0808894443512,109.11141074752807,109.14193205070495,109.17245335388183,109.20297465705872,109.2334959602356,109.26401726341247,109.29453856658935,109.32505986976624,109.35558117294312,109.38610247611999,109.41662377929687,109.44714508247375,109.47766638565064,109.50818768882752,109.53870899200439,109.56923029518127,109.59975159835815,109.63027290153504,109.66079420471192,109.69131550788879,109.72183681106567,109.75235811424255,109.78287941741944,109.8134007205963,109.84392202377319,109.87444332695007,109.90496463012695,109.93548593330384,109.9660072364807,109.99652853965759,110.02704984283447,110.05757114601136,110.08809244918824,110.1186137523651,110.14913505554199,110.17965635871887,110.21017766189576,110.24069896507262,110.27122026824951,110.30174157142639,110.33226287460327,110.36278417778016,110.39330548095703,110.42382678413391,110.45434808731079,110.48486939048767,110.51539069366456,110.54591199684143,110.57643330001831,110.60695460319519,110.63747590637207,110.66799720954894,110.69851851272583,110.72903981590271,110.75956111907959,110.79008242225648,110.82060372543334,110.85112502861023,110.88164633178711,110.91216763496399,110.94268893814086,110.97321024131774,111.00373154449463,111.03425284767151,111.0647741508484,111.09529545402526,111.12581675720214,111.15633806037903,111.18685936355591,111.2173806667328,111.24790196990966,111.27842327308655,111.30894457626343,111.33946587944031,111.36998718261718,111.40050848579406,111.43102978897095,111.46155109214783,111.49207239532471,111.52259369850158,111.55311500167846,111.58363630485535,111.61415760803223,111.64467891120911,111.67520021438598,111.70572151756286,111.73624282073975,111.76676412391663,111.7972854270935,111.82780673027038,111.85832803344726,111.88884933662415,111.91937063980103,111.9498919429779,111.98041324615478,112.01093454933167,112.04145585250855,112.07197715568542,112.1024984588623,112.13301976203918,112.16354106521607,112.19406236839295,112.22458367156982,112.2551049747467,112.28562627792358,112.31614758110047,112.34666888427735,112.37719018745422,112.4077114906311,112.43823279380798,112.46875409698487,112.49927540016174,112.52979670333862,112.5603180065155,112.59083930969238,112.62136061286927,112.65188191604614,112.68240321922302,112.7129245223999,112.74344582557679,112.77396712875367,112.80448843193054,112.83500973510742,112.8655310382843,112.89605234146119,112.92657364463805,112.95709494781494,112.98761625099182,113.0181375541687,113.04865885734559,113.07918016052245,113.10970146369934,113.14022276687622,113.1707440700531,113.20126537322997,113.23178667640686,113.26230797958374,113.29282928276062,113.3233505859375,113.35387188911437,113.38439319229126,113.41491449546814,113.44543579864502,113.4759571018219,113.50647840499877,113.53699970817566,113.56752101135254,113.59804231452942,113.62856361770629,113.65908492088317,113.68960622406006,113.72012752723694,113.75064883041382,113.78117013359069,113.81169143676757,113.84221273994446,113.87273404312134,113.90325534629822,113.93377664947509,113.96429795265198,113.99481925582886,114.02534055900574,114.05586186218261,114.08638316535949,114.11690446853638,114.14742577171326,114.17794707489014,114.20846837806701,114.2389896812439,114.26951098442078,114.30003228759766,114.33055359077453,114.36107489395141,114.3915961971283,114.42211750030518,114.45263880348206,114.48316010665893,114.51368140983581,114.5442027130127,114.57472401618958,114.60524531936646,114.63576662254333,114.66628792572021,114.6968092288971,114.72733053207398,114.75785183525085,114.78837313842773,114.81889444160461,114.8494157447815,114.87993704795838,114.91045835113525,114.94097965431213,114.97150095748901,115.0020222606659,115.03254356384278,115.06306486701965,115.09358617019653,115.12410747337341,115.1546287765503,115.18515007972717,115.21567138290405,115.24619268608093,115.27671398925781,115.3072352924347,115.33775659561157,115.36827789878845,115.39879920196533,115.42932050514221,115.4598418083191,115.49036311149597,115.52088441467285,115.55140571784973,115.58192702102662,115.61244832420348,115.64296962738037,115.67349093055725,115.70401223373413,115.73453353691102,115.76505484008788,115.79557614326477,115.82609744644165,115.85661874961853,115.8871400527954,115.91766135597229,115.94818265914917,115.97870396232605,116.00922526550293,116.0397465686798,116.07026787185669,116.10078917503357,116.13131047821045,116.16183178138733,116.1923530845642,116.22287438774109,116.25339569091797,116.28391699409485,116.31443829727172,116.3449596004486,116.37548090362549,116.40600220680237,116.43652350997925,116.46704481315612,116.497566116333,116.52808741950989,116.55860872268677,116.58913002586365,116.61965132904052,116.6501726322174,116.68069393539429,116.71121523857117,116.74173654174804,116.77225784492492,116.8027791481018,116.83330045127869,116.86382175445557,116.89434305763244,116.92486436080932,116.9553856639862,116.98590696716309,117.01642827033996,117.04694957351684,117.07747087669372,117.1079921798706,117.13851348304749,117.16903478622436,117.19955608940124,117.23007739257812,117.26059869575501,117.29111999893189,117.32164130210876,117.35216260528564,117.38268390846252,117.41320521163941,117.44372651481628,117.47424781799316,117.50476912117004,117.53529042434693,117.56581172752381,117.59633303070068,117.62685433387756,117.65737563705444,117.68789694023133,117.71841824340821,117.74893954658508,117.77946084976196,117.80998215293884,117.84050345611573,117.8710247592926,117.90154606246948,117.93206736564636,117.96258866882324,117.99310997200013,118.023631275177,118.05415257835388,118.08467388153076,118.11519518470764,118.14571648788451,118.1762377910614,118.20675909423828,118.23728039741516,118.26780170059205,118.29832300376891,118.3288443069458,118.35936561012268,118.38988691329956,118.42040821647645,118.45092951965331,118.4814508228302,118.51197212600708,118.54249342918396,118.57301473236083,118.60353603553772,118.6340573387146,118.66457864189148,118.69509994506836,118.72562124824523,118.75614255142212,118.786663854599,118.81718515777588,118.84770646095276,118.87822776412963,118.90874906730652,118.9392703704834,118.96979167366028,119.00031297683715,119.03083428001403,119.06135558319092,119.0918768863678,119.12239818954468,119.15291949272155,119.18344079589843,119.21396209907532,119.2444834022522,119.27500470542907,119.30552600860595,119.33604731178283,119.36656861495972,119.3970899181366,119.42761122131347,119.45813252449035,119.48865382766724,119.51917513084412,119.549696434021,119.58021773719787,119.61073904037475,119.64126034355164,119.67178164672852,119.70230294990539,119.73282425308227,119.76334555625915,119.79386685943604,119.82438816261292,119.85490946578979,119.88543076896667,119.91595207214355,119.94647337532044,119.97699467849732,120.00751598167419,120.03803728485107,120.06855858802795,120.09907989120484,120.1296011943817,120.16012249755859,120.19064380073547,120.22116510391236,120.25168640708924,120.2822077102661,120.31272901344299,120.34325031661987,120.37377161979676,120.40429292297362,120.43481422615051,120.46533552932739,120.49585683250427,120.52637813568116,120.55689943885803,120.58742074203491,120.61794204521179,120.64846334838867,120.67898465156556,120.70950595474243,120.74002725791931,120.77054856109619,120.80106986427307,120.83159116744994,120.86211247062683,120.89263377380371,120.92315507698059,120.95367638015748,120.98419768333434,121.01471898651123,121.04524028968811,121.07576159286499,121.10628289604188,121.13680419921874,121.16732550239563,121.19784680557251,121.2283681087494,121.25888941192626,121.28941071510314,121.31993201828003,121.35045332145691,121.3809746246338,121.41149592781066,121.44201723098755,121.47253853416443,121.50305983734131,121.5335811405182,121.56410244369506,121.59462374687195,121.62514505004883,121.65566635322571,121.68618765640258,121.71670895957946,121.74723026275635,121.77775156593323,121.80827286911011,121.83879417228698,121.86931547546386,121.89983677864075,121.93035808181763,121.9608793849945,121.99140068817138,122.02192199134826,122.05244329452515,122.08296459770203,122.1134859008789,122.14400720405578,122.17452850723267,122.20504981040955,122.23557111358643,122.2660924167633,122.29661371994018,122.32713502311707,122.35765632629395,122.38817762947082,122.4186989326477,122.44922023582458,122.47974153900147,122.51026284217835,122.54078414535522,122.5713054485321,122.60182675170898,122.63234805488587,122.66286935806275,122.69339066123962,122.7239119644165,122.75443326759338,122.78495457077027,122.81547587394714,122.84599717712402,122.8765184803009,122.90703978347779,122.93756108665467,122.96808238983154,122.99860369300842,123.0291249961853,123.05964629936219,123.09016760253905,123.12068890571594,123.15121020889282,123.1817315120697,123.21225281524659,123.24277411842345,123.27329542160034,123.30381672477722,123.3343380279541,123.36485933113099,123.39538063430786,123.42590193748474,123.45642324066162,123.4869445438385,123.51746584701537,123.54798715019226,123.57850845336914,123.60902975654602,123.6395510597229,123.67007236289977,123.70059366607666,123.73111496925354,123.76163627243042,123.7921575756073,123.82267887878417,123.85320018196106,123.88372148513794,123.91424278831482,123.94476409149169,123.97528539466857,124.00580669784546,124.03632800102234,124.06684930419922,124.09737060737609,124.12789191055298,124.15841321372986,124.18893451690674,124.21945582008361,124.24997712326049,124.28049842643738,124.31101972961426,124.34154103279114,124.37206233596801,124.4025836391449,124.43310494232178,124.46362624549866,124.49414754867554,124.52466885185241,124.5551901550293,124.58571145820618,124.61623276138306,124.64675406455993,124.67727536773681,124.7077966709137,124.73831797409058,124.76883927726746,124.79936058044433,124.82988188362121,124.8604031867981,124.89092448997498,124.92144579315186,124.95196709632873,124.98248839950561,125.0130097026825,125.04353100585938,125.07405230903625,125.10457361221313,125.13509491539001,125.1656162185669,125.19613752174378,125.22665882492065,125.25718012809753,125.28770143127441,125.3182227344513,125.34874403762817,125.37926534080505,125.40978664398193,125.44030794715881,125.4708292503357,125.50135055351257,125.53187185668945,125.56239315986633,125.59291446304321,125.6234357662201,125.65395706939697,125.68447837257385,125.71499967575073,125.74552097892762,125.77604228210448,125.80656358528137,125.83708488845825,125.86760619163513,125.89812749481202,125.92864879798888,125.95917010116577,125.98969140434265,126.02021270751953,126.05073401069642,126.08125531387329,126.11177661705017,126.14229792022705,126.17281922340393,126.2033405265808,126.23386182975769,126.26438313293457,126.29490443611145,126.32542573928833,126.3559470424652,126.38646834564209,126.41698964881897,126.44751095199585,126.47803225517274,126.5085535583496,126.53907486152649,126.56959616470337,126.60011746788025,126.63063877105712,126.661160074234,126.69168137741089,126.72220268058777,126.75272398376465,126.78324528694152,126.8137665901184,126.84428789329529,126.87480919647217,126.90533049964904,126.93585180282592,126.9663731060028,126.99689440917969,127.02741571235657,127.05793701553344,127.08845831871032,127.1189796218872,127.14950092506409,127.18002222824097,127.21054353141784,127.24106483459472,127.2715861377716,127.30210744094849,127.33262874412536,127.36315004730224,127.39367135047912,127.42419265365601,127.45471395683289,127.48523526000976,127.51575656318664,127.54627786636352,127.57679916954041,127.60732047271729,127.63784177589416,127.66836307907104,127.69888438224793,127.72940568542481,127.75992698860168,127.79044829177856,127.82096959495544,127.85149089813233,127.88201220130921,127.91253350448608,127.94305480766296,127.97357611083984,128.0040974140167,128.03461871719358,128.06514002037048,128.09566132354735,128.12618262672424,128.1567039299011,128.18722523307798,128.21774653625488,128.24826783943175,128.27878914260864,128.3093104457855,128.33983174896238,128.37035305213928,128.40087435531615,128.43139565849305,128.4619169616699,128.49243826484678,128.52295956802368,128.55348087120055,128.58400217437745,128.61452347755431,128.64504478073118,128.67556608390808,128.70608738708495,128.73660869026185,128.76712999343872,128.79765129661558,128.82817259979248,128.85869390296935,128.88921520614622,128.91973650932312,128.95025781249998,128.98077911567688,129.01130041885375,129.04182172203062,129.07234302520752,129.10286432838438,129.13338563156128,129.16390693473815,129.19442823791502,129.22494954109192,129.25547084426879,129.28599214744568,129.31651345062255,129.34703475379942,129.37755605697632,129.4080773601532,129.43859866333008,129.46911996650695,129.49964126968382,129.53016257286072,129.5606838760376,129.59120517921446,129.62172648239135,129.65224778556822,129.68276908874512,129.713290391922,129.74381169509886,129.77433299827575,129.80485430145262,129.83537560462952,129.8658969078064,129.89641821098326,129.92693951416015,129.95746081733702,129.98798212051392,130.0185034236908,130.04902472686766,130.07954603004455,130.11006733322142,130.14058863639832,130.1711099395752,130.20163124275206,130.23215254592895,130.26267384910582,130.2931951522827,130.3237164554596,130.35423775863646,130.38475906181336,130.41528036499022,130.4458016681671,130.476322971344,130.50684427452086,130.53736557769776,130.56788688087462,130.5984081840515,130.6289294872284,130.65945079040526,130.68997209358216,130.72049339675903,130.7510146999359,130.7815360031128,130.81205730628966,130.84257860946656,130.87309991264343,130.9036212158203,130.9341425189972,130.96466382217406,130.99518512535096,131.02570642852783,131.0562277317047,131.0867490348816,131.11727033805846,131.14779164123533,131.17831294441223,131.2088342475891,131.239355550766,131.26987685394286,131.30039815711973,131.33091946029663,131.3614407634735,131.3919620666504,131.42248336982726,131.45300467300413,131.48352597618103,131.5140472793579,131.5445685825348,131.57508988571166,131.60561118888853,131.63613249206543,131.6666537952423,131.6971750984192,131.72769640159606,131.75821770477293,131.78873900794983,131.8192603111267,131.84978161430357,131.88030291748046,131.91082422065733,131.94134552383423,131.9718668270111,132.002388130188,132.03290943336486,132.06343073654173,132.09395203971863,132.1244733428955,132.1549946460724,132.18551594924926,132.21603725242613,132.24655855560303,132.2770798587799,132.3076011619568,132.33812246513367,132.36864376831053,132.39916507148743,132.4296863746643,132.4602076778412,132.49072898101807,132.52125028419493,132.55177158737183,132.5822928905487,132.6128141937256,132.64333549690247,132.67385680007934,132.70437810325623,132.7348994064331,132.76542070960997,132.79594201278687,132.82646331596374,132.85698461914063,132.8875059223175,132.91802722549437,132.94854852867127,132.97906983184814,133.00959113502503,133.0401124382019,133.07063374137877,133.10115504455567,133.13167634773254,133.16219765090943,133.1927189540863,133.22324025726317,133.25376156044007,133.28428286361694,133.31480416679383,133.3453254699707,133.37584677314757,133.40636807632447,133.43688937950134,133.46741068267823,133.4979319858551,133.52845328903197,133.55897459220887,133.58949589538574,133.6200171985626,133.6505385017395,133.68105980491637,133.71158110809327,133.74210241127014,133.772623714447,133.8031450176239,133.83366632080077,133.86418762397767,133.89470892715454,133.9252302303314,133.9557515335083,133.98627283668517,134.01679413986207,134.04731544303894,134.0778367462158,134.1083580493927,134.13887935256957,134.16940065574647,134.19992195892334,134.2304432621002,134.2609645652771,134.29148586845398,134.32200717163084,134.35252847480774,134.3830497779846,134.4135710811615,134.44409238433838,134.47461368751524,134.50513499069214,134.535656293869,134.5661775970459,134.59669890022278,134.62722020339965,134.65774150657654,134.6882628097534,134.7187841129303,134.74930541610718,134.77982671928405,134.81034802246094,134.8408693256378,134.8713906288147,134.90191193199158,134.93243323516845,134.96295453834534,134.9934758415222,135.0239971446991,135.05451844787598,135.08503975105285,135.11556105422974,135.1460823574066,135.17660366058348,135.20712496376038,135.23764626693725,135.26816757011414,135.298688873291,135.32921017646788,135.35973147964478,135.39025278282165,135.42077408599854,135.4512953891754,135.48181669235228,135.51233799552918,135.54285929870605,135.57338060188295,135.60390190505981,135.63442320823668,135.66494451141358,135.69546581459045,135.72598711776735,135.75650842094421,135.78702972412108,135.81755102729798,135.84807233047485,135.87859363365172,135.90911493682862,135.93963624000548,135.97015754318238,136.00067884635925,136.03120014953612,136.06172145271302,136.09224275588988,136.12276405906678,136.15328536224365,136.18380666542052,136.21432796859742,136.24484927177429,136.27537057495118,136.30589187812805,136.33641318130492,136.36693448448182,136.39745578765869,136.42797709083558,136.45849839401245,136.48901969718932,136.51954100036622,136.5500623035431,136.58058360671996,136.61110490989685,136.64162621307372,136.67214751625062,136.7026688194275,136.73319012260436,136.76371142578125,136.79423272895812,136.82475403213502,136.8552753353119,136.88579663848876,136.91631794166565,136.94683924484252,136.97736054801942,137.0078818511963,137.03840315437316,137.06892445755005,137.09944576072692,137.12996706390382,137.1604883670807,137.19100967025756,137.22153097343445,137.25205227661132,137.28257357978822,137.3130948829651,137.34361618614196,137.37413748931885,137.40465879249572,137.4351800956726,137.4657013988495,137.49622270202636,137.52674400520326,137.55726530838012,137.587786611557,137.6183079147339,137.64882921791076,137.67935052108766,137.70987182426452,137.7403931274414,137.7709144306183,137.80143573379516,137.83195703697206,137.86247834014893,137.8929996433258,137.9235209465027,137.95404224967956,137.98456355285646,138.01508485603333,138.0456061592102,138.0761274623871,138.10664876556396,138.13717006874083,138.16769137191773,138.1982126750946,138.2287339782715,138.25925528144836,138.28977658462523,138.32029788780213,138.350819190979,138.3813404941559,138.41186179733276,138.44238310050963,138.47290440368653,138.5034257068634,138.5339470100403,138.56446831321716,138.59498961639403,138.62551091957093,138.6560322227478,138.6865535259247,138.71707482910156,138.74759613227843,138.77811743545533,138.8086387386322,138.83916004180907,138.86968134498596,138.90020264816283,138.93072395133973,138.9612452545166,138.99176655769347,139.02228786087036,139.05280916404723,139.08333046722413,139.113851770401,139.14437307357787,139.17489437675476,139.20541567993163,139.23593698310853,139.2664582862854,139.29697958946227,139.32750089263916,139.35802219581603,139.38854349899293,139.4190648021698,139.44958610534667,139.48010740852357,139.51062871170043,139.54115001487733,139.5716713180542,139.60219262123107,139.63271392440797,139.66323522758483,139.6937565307617,139.7242778339386,139.75479913711547,139.78532044029237,139.81584174346924,139.8463630466461,139.876884349823,139.90740565299987,139.93792695617677,139.96844825935364,139.9989695625305,140.0294908657074,140.06001216888427,140.09053347206117,140.12105477523804,140.1515760784149,140.1820973815918,140.21261868476867,140.24313998794557,140.27366129112244,140.3041825942993,140.3347038974762,140.36522520065307,140.39574650382994,140.42626780700684,140.4567891101837,140.4873104133606,140.51783171653747,140.54835301971434,140.57887432289124,140.6093956260681,140.639916929245,140.67043823242187,140.70095953559874,140.73148083877564,140.7620021419525,140.7925234451294,140.82304474830627,140.85356605148314,140.88408735466004,140.9146086578369,140.9451299610138,140.97565126419067,141.00617256736754,141.03669387054444,141.0672151737213,141.0977364768982,141.12825778007507,141.15877908325194,141.18930038642884,141.2198216896057,141.25034299278258,141.28086429595947,141.31138559913634,141.34190690231324,141.3724282054901,141.40294950866698,141.43347081184388,141.46399211502074,141.49451341819764,141.5250347213745,141.55555602455138,141.58607732772828,141.61659863090514,141.64711993408204,141.6776412372589,141.70816254043578,141.73868384361268,141.76920514678955,141.79972644996644,141.8302477531433,141.86076905632018,141.89129035949708,141.92181166267395,141.95233296585081,141.9828542690277,142.01337557220458,142.04389687538148,142.07441817855835,142.10493948173522,142.1354607849121,142.16598208808898,142.19650339126588,142.22702469444275,142.25754599761962,142.2880673007965,142.31858860397338,142.34910990715028,142.37963121032715,142.41015251350402,142.4406738166809,142.47119511985778,142.50171642303468,142.53223772621155,142.56275902938842,142.5932803325653,142.62380163574218,142.65432293891905,142.68484424209595,142.71536554527282,142.74588684844971,142.77640815162658,142.80692945480345,142.83745075798035,142.86797206115722,142.89849336433412,142.92901466751098,142.95953597068785,142.99005727386475,143.02057857704162,143.05109988021852,143.08162118339538,143.11214248657225,143.14266378974915,143.17318509292602,143.20370639610292,143.23422769927978,143.26474900245665,143.29527030563355,143.32579160881042,143.35631291198732,143.38683421516419,143.41735551834105,143.44787682151795,143.47839812469482,143.5089194278717,143.5394407310486,143.56996203422545,143.60048333740235,143.63100464057922,143.6615259437561,143.692047246933,143.72256855010986,143.75308985328675,143.78361115646362,143.8141324596405,143.8446537628174,143.87517506599426,143.90569636917115,143.93621767234802,143.9667389755249,143.9972602787018,144.02778158187866,144.05830288505555,144.08882418823242,144.1193454914093,144.1498667945862,144.18038809776306,144.21090940093993,144.24143070411682,144.2719520072937,144.3024733104706,144.33299461364746,144.36351591682433,144.39403722000122,144.4245585231781,144.455079826355,144.48560112953186,144.51612243270873,144.54664373588562,144.5771650390625,144.6076863422394,144.63820764541626,144.66872894859313,144.69925025177002,144.7297715549469,144.7602928581238,144.79081416130066,144.82133546447753,144.85185676765443,144.8823780708313,144.91289937400816,144.94342067718506,144.97394198036193,145.00446328353883,145.0349845867157,145.06550588989256,145.09602719306946,145.12654849624633,145.15706979942323,145.1875911026001,145.21811240577696,145.24863370895386,145.27915501213073,145.30967631530763,145.3401976184845,145.37071892166136,145.40124022483826,145.43176152801513,145.46228283119203,145.4928041343689,145.52332543754576,145.55384674072266,145.58436804389953,145.61488934707643,145.6454106502533,145.67593195343017,145.70645325660706,145.73697455978393,145.7674958629608,145.7980171661377,145.82853846931457,145.85905977249146,145.88958107566833,145.9201023788452,145.9506236820221,145.98114498519897,146.01166628837586,146.04218759155273,146.0727088947296,146.1032301979065,146.13375150108337,146.16427280426026,146.19479410743713,146.225315410614,146.2558367137909,146.28635801696777,146.31687932014466,146.34740062332153,146.3779219264984,146.4084432296753,146.43896453285217,146.46948583602904,146.50000713920593,146.5305284423828,146.5610497455597,146.59157104873657,146.62209235191344,146.65261365509033,146.6831349582672,146.7136562614441,146.74417756462097,146.77469886779784,146.80522017097474,146.8357414741516,146.8662627773285,146.89678408050537,146.92730538368224,146.95782668685914,146.988347990036,147.0188692932129,147.04939059638977,147.07991189956664,147.11043320274354,147.1409545059204,147.1714758090973,147.20199711227417,147.23251841545104,147.26303971862794,147.2935610218048,147.32408232498167,147.35460362815857,147.38512493133544,147.41564623451234,147.4461675376892,147.47668884086607,147.50721014404297,147.53773144721984,147.56825275039674,147.5987740535736,147.62929535675048,147.65981665992737,147.69033796310424,147.72085926628114,147.751380569458,147.78190187263488,147.81242317581177,147.84294447898864,147.87346578216554,147.9039870853424,147.93450838851928,147.96502969169617,147.99555099487304,148.0260722980499,148.0565936012268,148.08711490440368,148.11763620758057,148.14815751075744,148.1786788139343,148.2092001171112,148.23972142028808,148.27024272346497,148.30076402664184,148.3312853298187,148.3618066329956,148.39232793617248,148.42284923934938,148.45337054252624,148.4838918457031,148.51441314888,148.54493445205688,148.57545575523378,148.60597705841064,148.6364983615875,148.6670196647644,148.69754096794128,148.72806227111815,148.75858357429505,148.7891048774719,148.8196261806488,148.85014748382568,148.88066878700255,148.91119009017945,148.94171139335631,148.9722326965332,149.00275399971008,149.03327530288695,149.06379660606385,149.09431790924071,149.1248392124176,149.15536051559448,149.18588181877135,149.21640312194825,149.24692442512512,149.277445728302,149.30796703147888,149.33848833465575,149.36900963783265,149.39953094100952,149.4300522441864,149.46057354736328,149.49109485054015,149.52161615371705,149.55213745689392,149.58265876007079,149.61318006324768,149.64370136642455,149.67422266960145,149.70474397277832,149.7352652759552,149.76578657913208,149.79630788230895,149.82682918548585,149.85735048866272,149.8878717918396,149.91839309501648,149.94891439819335,149.97943570137025,150.00995700454712,150.040478307724,150.07099961090088,150.10152091407775,150.13204221725465,150.16256352043152,150.1930848236084,150.22360612678528,150.25412742996215,150.28464873313902,150.31517003631592,150.3456913394928,150.37621264266969,150.40673394584655,150.43725524902342,150.46777655220032,150.4982978553772,150.52881915855409,150.55934046173095,150.58986176490782,150.62038306808472,150.6509043712616,150.6814256744385,150.71194697761536,150.74246828079222,150.77298958396912,150.803510887146,150.8340321903229,150.86455349349976,150.89507479667662,150.92559609985352,150.9561174030304,150.9866387062073,151.01716000938416,151.04768131256102,151.07820261573792,151.1087239189148,151.13924522209166,151.16976652526856,151.20028782844543,151.23080913162232,151.2613304347992,151.29185173797606,151.32237304115296,151.35289434432983,151.38341564750672,151.4139369506836,151.44445825386046,151.47497955703736,151.50550086021423,151.53602216339112,151.566543466568,151.59706476974486,151.62758607292176,151.65810737609863,151.68862867927552,151.7191499824524,151.74967128562926,151.78019258880616,151.81071389198303,151.8412351951599,151.8717564983368,151.90227780151366,151.93279910469056,151.96332040786743,151.9938417110443,152.0243630142212,152.05488431739806,152.08540562057496,152.11592692375183,152.1464482269287,152.1769695301056,152.20749083328246,152.23801213645936,152.26853343963623,152.2990547428131,152.32957604599,152.36009734916686,152.39061865234376,152.42113995552063,152.4516612586975,152.4821825618744,152.51270386505126,152.54322516822813,152.57374647140503,152.6042677745819,152.6347890777588,152.66531038093567,152.69583168411253,152.72635298728943,152.7568742904663,152.7873955936432,152.81791689682007,152.84843819999693,152.87895950317383,152.9094808063507,152.9400021095276,152.97052341270447,153.00104471588133,153.03156601905823,153.0620873222351,153.092608625412,153.12312992858887,153.15365123176574,153.18417253494263,153.2146938381195,153.2452151412964,153.27573644447327,153.30625774765014,153.33677905082703,153.3673003540039,153.39782165718077,153.42834296035767,153.45886426353454,153.48938556671143,153.5199068698883,153.55042817306517,153.58094947624207,153.61147077941894,153.64199208259583,153.6725133857727,153.70303468894957,153.73355599212647,153.76407729530334,153.79459859848023,153.8251199016571,153.85564120483397,153.88616250801087,153.91668381118774,153.94720511436464,153.9777264175415,154.00824772071837,154.03876902389527,154.06929032707214,154.099811630249,154.1303329334259,154.16085423660277,154.19137553977967,154.22189684295654,154.2524181461334,154.2829394493103,154.31346075248717,154.34398205566407,154.37450335884094,154.4050246620178,154.4355459651947,154.46606726837157,154.49658857154847,154.52710987472534,154.5576311779022,154.5881524810791,154.61867378425598,154.64919508743287,154.67971639060974,154.7102376937866,154.7407589969635,154.77128030014038,154.80180160331724,154.83232290649414,154.862844209671,154.8933655128479,154.92388681602478,154.95440811920164,154.98492942237854,155.0154507255554,155.0459720287323,155.07649333190918,155.10701463508605,155.13753593826294,155.1680572414398,155.1985785446167,155.22909984779358,155.25962115097045,155.29014245414734,155.3206637573242,155.3511850605011,155.38170636367798,155.41222766685485,155.44274897003174,155.4732702732086,155.5037915763855,155.53431287956238,155.56483418273925,155.59535548591614,155.625876789093,155.65639809226988,155.68691939544678,155.71744069862365,155.74796200180054,155.7784833049774,155.80900460815428,155.83952591133118,155.87004721450805,155.90056851768495,155.9310898208618,155.96161112403868,155.99213242721558,156.02265373039245,156.05317503356935,156.08369633674621,156.11421763992308,156.14473894309998,156.17526024627685,156.20578154945375,156.23630285263062,156.26682415580748,156.29734545898438,156.32786676216125,156.35838806533812,156.38890936851502,156.41943067169188,156.44995197486878,156.48047327804565,156.51099458122252,156.54151588439942,156.57203718757629,156.60255849075318,156.63307979393005,156.66360109710692,156.69412240028382,156.72464370346069,156.75516500663758,156.78568630981445,156.81620761299132,156.84672891616822,156.8772502193451,156.90777152252198,156.93829282569885,156.96881412887572,156.99933543205262,157.0298567352295,157.06037803840638,157.09089934158325,157.12142064476012,157.15194194793702,157.1824632511139,157.21298455429076,157.24350585746765,157.27402716064452,157.30454846382142,157.3350697669983,157.36559107017516,157.39611237335205,157.42663367652892,157.45715497970582,157.4876762828827,157.51819758605956,157.54871888923645,157.57924019241332,157.60976149559022,157.6402827987671,157.67080410194396,157.70132540512085,157.73184670829772,157.76236801147462,157.7928893146515,157.82341061782836,157.85393192100526,157.88445322418212,157.914974527359,157.9454958305359,157.97601713371276,158.00653843688966,158.03705974006652,158.0675810432434,158.0981023464203,158.12862364959716,158.15914495277406,158.18966625595093,158.2201875591278,158.2507088623047,158.28123016548156,158.31175146865846,158.34227277183533,158.3727940750122,158.4033153781891,158.43383668136596,158.46435798454286,158.49487928771973,158.5254005908966,158.5559218940735,158.58644319725036,158.61696450042723,158.64748580360413,158.678007106781,158.7085284099579,158.73904971313476,158.76957101631163,158.80009231948853,158.8306136226654,158.8611349258423,158.89165622901916,158.92217753219603,158.95269883537293,158.9832201385498,159.0137414417267,159.04426274490356,159.07478404808043,159.10530535125733,159.1358266544342,159.1663479576111,159.19686926078796,159.22739056396483,159.25791186714173,159.2884331703186,159.3189544734955,159.34947577667236,159.37999707984923,159.41051838302613,159.441039686203,159.47156098937987,159.50208229255676,159.53260359573363,159.56312489891053,159.5936462020874,159.62416750526427,159.65468880844116,159.68521011161803,159.71573141479493,159.7462527179718,159.77677402114867,159.80729532432557,159.83781662750243,159.86833793067933,159.8988592338562,159.92938053703307,159.95990184020997,159.99042314338683,160.02094444656373,160.0514657497406,160.08198705291747,160.11250835609437,160.14302965927124,160.1735509624481,160.204072265625,160.23459356880187,160.26511487197877,160.29563617515564,160.3261574783325,160.3566787815094,160.38720008468627,160.41772138786317,160.44824269104004,160.4787639942169,160.5092852973938,160.53980660057067,160.57032790374757,160.60084920692444,160.6313705101013,160.6618918132782,160.69241311645507,160.72293441963197,160.75345572280884,160.7839770259857,160.8144983291626,160.84501963233947,160.87554093551634,160.90606223869324,160.9365835418701,160.967104845047,160.99762614822387,161.02814745140074,161.05866875457764,161.0891900577545,161.1197113609314,161.15023266410827,161.18075396728514,161.21127527046204,161.2417965736389,161.2723178768158,161.30283917999267,161.33336048316954,161.36388178634644,161.3944030895233,161.4249243927002,161.45544569587707,161.48596699905394,161.51648830223084,161.5470096054077,161.5775309085846,161.60805221176147,161.63857351493834,161.66909481811524,161.6996161212921,161.73013742446898,161.76065872764588,161.79118003082274,161.82170133399964,161.8522226371765,161.88274394035338,161.91326524353028,161.94378654670714,161.97430784988404,162.0048291530609,162.03535045623778,162.06587175941468,162.09639306259155,162.12691436576844,162.1574356689453,162.18795697212218,162.21847827529908,162.24899957847595,162.27952088165284,162.3100421848297,162.34056348800658,162.37108479118348,162.40160609436035,162.43212739753722,162.4626487007141,162.49317000389098,162.52369130706788,162.55421261024475,162.58473391342162,162.6152552165985,162.64577651977538,162.67629782295228,162.70681912612915,162.73734042930602,162.7678617324829,162.79838303565978,162.82890433883668,162.85942564201355,162.88994694519042,162.9204682483673,162.95098955154418,162.98151085472108,163.01203215789795,163.04255346107482,163.07307476425171,163.10359606742858,163.13411737060548,163.16463867378235,163.19515997695922,163.22568128013611,163.25620258331298,163.28672388648985,163.31724518966675,163.34776649284362,163.37828779602052,163.40880909919738,163.43933040237425,163.46985170555115,163.50037300872802,163.53089431190492,163.56141561508178,163.59193691825865,163.62245822143555,163.65297952461242,163.68350082778932,163.71402213096619,163.74454343414305,163.77506473731995,163.80558604049682,163.83610734367372,163.8666286468506,163.89714995002745,163.92767125320435,163.95819255638122,163.9887138595581,164.019235162735,164.04975646591186,164.08027776908875,164.11079907226562,164.1413203754425,164.1718416786194,164.20236298179626,164.23288428497315,164.26340558815002,164.2939268913269,164.3244481945038,164.35496949768066,164.38549080085755,164.41601210403442,164.4465334072113,164.4770547103882,164.50757601356506,164.53809731674195,164.56861861991882,164.5991399230957,164.6296612262726,164.66018252944946,164.69070383262633,164.72122513580322,164.7517464389801,164.782267742157,164.81278904533386,164.84331034851073,164.87383165168762,164.9043529548645,164.9348742580414,164.96539556121826,164.99591686439513,165.02643816757202,165.0569594707489,165.0874807739258,165.11800207710266,165.14852338027953,165.17904468345642,165.2095659866333,165.2400872898102,165.27060859298706,165.30112989616393,165.33165119934083,165.3621725025177,165.3926938056946,165.42321510887146,165.45373641204833,165.48425771522523,165.5147790184021,165.54530032157896,165.57582162475586,165.60634292793273,165.63686423110963,165.6673855342865,165.69790683746336,165.72842814064026,165.75894944381713,165.78947074699403,165.8199920501709,165.85051335334776,165.88103465652466,165.91155595970153,165.94207726287843,165.9725985660553,166.00311986923217,166.03364117240906,166.06416247558593,166.09468377876283,166.1252050819397,166.15572638511657,166.18624768829346,166.21676899147033,166.2472902946472,166.2778115978241,166.30833290100097,166.33885420417786,166.36937550735473,166.3998968105316,166.4304181137085,166.46093941688537,166.49146072006226,166.52198202323913,166.552503326416,166.5830246295929,166.61354593276977,166.64406723594666,166.67458853912353,166.7051098423004,166.7356311454773,166.76615244865417,166.79667375183107,166.82719505500793,166.8577163581848,166.8882376613617,166.91875896453857,166.94928026771544,166.97980157089233,167.0103228740692,167.0408441772461,167.07136548042297,167.10188678359984,167.13240808677673,167.1629293899536,167.1934506931305,167.22397199630737,167.25449329948424,167.28501460266114,167.315535905838,167.3460572090149,167.37657851219177,167.40709981536864,167.43762111854554,167.4681424217224,167.4986637248993,167.52918502807617,167.55970633125304,167.59022763442994,167.6207489376068,167.6512702407837,167.68179154396057,167.71231284713744,167.74283415031434,167.7733554534912,167.80387675666807,167.83439805984497,167.86491936302184,167.89544066619874,167.9259619693756,167.95648327255248,167.98700457572937,168.01752587890624,168.04804718208314,168.07856848526,168.10908978843688,168.13961109161377,168.17013239479064,168.20065369796754,168.2311750011444,168.26169630432128,168.29221760749817,168.32273891067504,168.35326021385194,168.3837815170288,168.41430282020568,168.44482412338257,168.47534542655944,168.5058667297363,168.5363880329132,168.56690933609008,168.59743063926697,168.62795194244384,168.6584732456207,168.6889945487976,168.71951585197448,168.75003715515138,168.78055845832824,168.8110797615051,168.841601064682,168.87212236785888,168.90264367103578,168.93316497421264,168.9636862773895,168.9942075805664,169.02472888374328,169.05525018692018,169.08577149009704,169.1162927932739,169.1468140964508,169.17733539962768,169.20785670280458,169.23837800598145,169.26889930915831,169.2994206123352,169.32994191551208,169.36046321868895,169.39098452186585,169.42150582504271,169.4520271282196,169.48254843139648,169.51306973457335,169.54359103775025,169.57411234092712,169.604633644104,169.63515494728088,169.66567625045775,169.69619755363465,169.72671885681152,169.7572401599884,169.78776146316528,169.81828276634215,169.84880406951905,169.87932537269592,169.9098466758728,169.94036797904968,169.97088928222655,170.00141058540345,170.03193188858032,170.06245319175719,170.09297449493408,170.12349579811095,170.15401710128785,170.18453840446472,170.2150597076416,170.24558101081848,170.27610231399535,170.30662361717225,170.33714492034912,170.367666223526,170.39818752670288,170.42870882987975,170.45923013305665,170.48975143623352,170.5202727394104,170.55079404258728,170.58131534576415,170.61183664894105,170.64235795211792,170.6728792552948,170.70340055847169,170.73392186164855,170.76444316482542,170.79496446800232,170.8254857711792,170.85600707435609,170.88652837753295,170.91704968070982,170.94757098388672,170.9780922870636,171.0086135902405,171.03913489341735,171.06965619659422,171.10017749977112,171.130698802948,171.1612201061249,171.19174140930176,171.22226271247862,171.25278401565552,171.2833053188324,171.3138266220093,171.34434792518616,171.37486922836302,171.40539053153992,171.4359118347168,171.4664331378937,171.49695444107056,171.52747574424743,171.55799704742432,171.5885183506012,171.61903965377806,171.64956095695496,171.68008226013183,171.71060356330872,171.7411248664856,171.77164616966246,171.80216747283936,171.83268877601623,171.86321007919312,171.89373138237,171.92425268554686,171.95477398872376,171.98529529190063,172.01581659507752,172.0463378982544,172.07685920143126,172.10738050460816,172.13790180778503,172.16842311096192,172.1989444141388,172.22946571731566,172.25998702049256,172.29050832366943,172.3210296268463,172.3515509300232,172.38207223320006,172.41259353637696,172.44311483955383,172.4736361427307,172.5041574459076,172.53467874908446,172.56520005226136,172.59572135543823,172.6262426586151,172.656763961792,172.68728526496886,172.71780656814576,172.74832787132263,172.7788491744995,172.8093704776764,172.83989178085326,172.87041308403016,172.90093438720703,172.9314556903839,172.9619769935608,172.99249829673766,173.02301959991456,173.05354090309143,173.0840622062683,173.1145835094452,173.14510481262207,173.17562611579893,173.20614741897583,173.2366687221527,173.2671900253296,173.29771132850647,173.32823263168333,173.35875393486023,173.3892752380371,173.419796541214,173.45031784439087,173.48083914756774,173.51136045074463,173.5418817539215,173.5724030570984,173.60292436027527,173.63344566345214,173.66396696662903,173.6944882698059,173.7250095729828,173.75553087615967,173.78605217933654,173.81657348251343,173.8470947856903,173.87761608886717,173.90813739204407,173.93865869522094,173.96917999839783,173.9997013015747,174.03022260475157,174.06074390792847,174.09126521110534,174.12178651428223,174.1523078174591,174.18282912063597,174.21335042381287,174.24387172698974,174.27439303016664,174.3049143333435,174.33543563652037,174.36595693969727,174.39647824287414,174.42699954605104,174.4575208492279,174.48804215240477,174.51856345558167,174.54908475875854,174.5796060619354,174.6101273651123,174.64064866828917,174.67116997146607,174.70169127464294,174.7322125778198,174.7627338809967,174.79325518417357,174.82377648735047,174.85429779052734,174.8848190937042,174.9153403968811,174.94586170005797,174.97638300323487,175.00690430641174,175.0374256095886,175.0679469127655,175.09846821594238,175.12898951911927,175.15951082229614,175.190032125473,175.2205534286499,175.25107473182678,175.28159603500367,175.31211733818054,175.3426386413574,175.3731599445343,175.40368124771118,175.43420255088805,175.46472385406494,175.4952451572418,175.5257664604187,175.55628776359558,175.58680906677245,175.61733036994934,175.6478516731262,175.6783729763031,175.70889427947998,175.73941558265685,175.76993688583374,175.8004581890106,175.8309794921875,175.86150079536438,175.89202209854125,175.92254340171814,175.953064704895,175.9835860080719,176.01410731124878,176.04462861442565,176.07514991760254,176.1056712207794,176.13619252395628,176.16671382713318,176.19723513031005,176.22775643348695,176.2582777366638,176.28879903984068,176.31932034301758,176.34984164619445,176.38036294937135,176.41088425254821,176.44140555572508,176.47192685890198,176.50244816207885,176.53296946525575,176.56349076843262,176.59401207160948,176.62453337478638,176.65505467796325,176.68557598114015,176.71609728431702,176.74661858749388,176.77713989067078,176.80766119384765,176.83818249702452,176.86870380020142,176.89922510337828,176.92974640655518,176.96026770973205,176.99078901290892,177.02131031608582,177.05183161926269,177.08235292243958,177.11287422561645,177.14339552879332,177.17391683197022,177.2044381351471,177.23495943832398,177.26548074150085,177.29600204467772,177.32652334785462,177.3570446510315,177.38756595420838,177.41808725738525,177.44860856056212,177.47912986373902,177.5096511669159,177.54017247009278,177.57069377326965,177.60121507644652,177.63173637962342,177.6622576828003,177.69277898597716,177.72330028915405,177.75382159233092,177.78434289550782,177.8148641986847,177.84538550186156,177.87590680503845,177.90642810821532,177.93694941139222,177.9674707145691,177.99799201774596,178.02851332092285,178.05903462409972,178.08955592727662,178.1200772304535,178.15059853363036,178.18111983680726,178.21164113998412,178.24216244316102,178.2726837463379,178.30320504951476,178.33372635269166,178.36424765586852,178.3947689590454,178.4252902622223,178.45581156539916,178.48633286857606,178.51685417175293,178.5473754749298,178.5778967781067,178.60841808128356,178.63893938446046,178.66946068763733,178.6999819908142,178.7305032939911,178.76102459716796,178.79154590034486,178.82206720352173,178.8525885066986,178.8831098098755,178.91363111305236,178.94415241622926,178.97467371940613,179.005195022583,179.0357163257599,179.06623762893676,179.09675893211366,179.12728023529053,179.1578015384674,179.1883228416443,179.21884414482116,179.24936544799803,179.27988675117493,179.3104080543518,179.3409293575287,179.37145066070556,179.40197196388243,179.43249326705933,179.4630145702362,179.4935358734131,179.52405717658996,179.55457847976683,179.58509978294373,179.6156210861206,179.6461423892975,179.67666369247436,179.70718499565123,179.73770629882813,179.768227602005,179.7987489051819,179.82927020835876,179.85979151153563,179.89031281471253,179.9208341178894,179.95135542106627,179.98187672424316,180.01239802742003,180.04291933059693,180.0734406337738,180.10396193695067,180.13448324012757,180.16500454330443,180.19552584648133,180.2260471496582,180.25656845283507,180.28708975601197,180.31761105918883,180.34813236236573,180.3786536655426,180.40917496871947,180.43969627189637,180.47021757507324,180.50073887825013,180.531260181427,180.56178148460387,180.59230278778077,180.62282409095764,180.6533453941345,180.6838666973114,180.71438800048827,180.74490930366517,180.77543060684204,180.8059519100189,180.8364732131958,180.86699451637267,180.89751581954957,180.92803712272644,180.9585584259033,180.9890797290802,181.01960103225707,181.05012233543397,181.08064363861084,181.1111649417877,181.1416862449646,181.17220754814147,181.20272885131837,181.23325015449524,181.2637714576721,181.294292760849,181.32481406402587,181.35533536720277,181.38585667037964,181.4163779735565,181.4468992767334,181.47742057991027,181.50794188308714,181.53846318626404,181.5689844894409,181.5995057926178,181.63002709579467,181.66054839897154,181.69106970214844,181.7215910053253,181.7521123085022,181.78263361167907,181.81315491485594,181.84367621803284,181.8741975212097,181.9047188243866,181.93524012756347,181.96576143074034,181.99628273391724,182.0268040370941,182.057325340271,182.08784664344788,182.11836794662474,182.14888924980164,182.1794105529785,182.20993185615538,182.24045315933228,182.27097446250914,182.30149576568604,182.3320170688629,182.36253837203978,182.39305967521668,182.42358097839355,182.45410228157044,182.4846235847473,182.51514488792418,182.54566619110108,182.57618749427795,182.60670879745484,182.6372301006317,182.66775140380858,182.69827270698548,182.72879401016235,182.75931531333924,182.7898366165161,182.82035791969298,182.85087922286988,182.88140052604675,182.91192182922362,182.9424431324005,182.97296443557738,183.00348573875428,183.03400704193115,183.06452834510802,183.0950496482849,183.12557095146178,183.15609225463868,183.18661355781555,183.21713486099242,183.2476561641693,183.27817746734618,183.30869877052308,183.33922007369995,183.36974137687682,183.40026268005371,183.43078398323058,183.46130528640748,183.49182658958435,183.52234789276122,183.55286919593811,183.58339049911498,183.61391180229188,183.64443310546875,183.67495440864562,183.70547571182252,183.73599701499938,183.76651831817625,183.79703962135315,183.82756092453002,183.85808222770692,183.88860353088378,183.91912483406065,183.94964613723755,183.98016744041442,184.01068874359132,184.04121004676819,184.07173134994505,184.10225265312195,184.13277395629882,184.16329525947572,184.1938165626526,184.22433786582945,184.25485916900635,184.28538047218322,184.31590177536012,184.346423078537,184.37694438171386,184.40746568489075,184.43798698806762,184.4685082912445,184.4990295944214,184.52955089759826,184.56007220077515,184.59059350395202,184.6211148071289,184.6516361103058,184.68215741348266,184.71267871665955,184.74320001983642,184.7737213230133,184.8042426261902,184.83476392936706,184.86528523254395,184.89580653572082,184.9263278388977,184.9568491420746,184.98737044525146,185.01789174842835,185.04841305160522,185.0789343547821,185.109455657959,185.13997696113586,185.17049826431276,185.20101956748962,185.2315408706665,185.2620621738434,185.29258347702026,185.32310478019713,185.35362608337402,185.3841473865509,185.4146686897278,185.44518999290466,185.47571129608153,185.50623259925842,185.5367539024353,185.5672752056122,185.59779650878906,185.62831781196593,185.65883911514283,185.6893604183197,185.7198817214966,185.75040302467346,185.78092432785033,185.81144563102723,185.8419669342041,185.872488237381,185.90300954055786,185.93353084373473,185.96405214691163,185.9945734500885,186.02509475326536,186.05561605644226,186.08613735961913,186.11665866279603,186.1471799659729,186.17770126914976,186.20822257232666,186.23874387550353,186.26926517868043,186.2997864818573,186.33030778503417,186.36082908821106,186.39135039138793,186.42187169456483,186.4523929977417,186.48291430091857,186.51343560409546,186.54395690727233,186.57447821044923,186.6049995136261,186.63552081680297,186.66604211997986,186.69656342315673,186.7270847263336,186.7576060295105,186.78812733268737,186.81864863586426,186.84916993904113,186.879691242218,186.9102125453949,186.94073384857177,186.97125515174866,187.00177645492553,187.0322977581024,187.0628190612793,187.09334036445617,187.12386166763307,187.15438297080993,187.1849042739868,187.2154255771637,187.24594688034057,187.27646818351747,187.30698948669433,187.3375107898712,187.3680320930481,187.39855339622497,187.42907469940187,187.45959600257873,187.4901173057556,187.5206386089325,187.55115991210937,187.58168121528624,187.61220251846314,187.64272382164,187.6732451248169,187.70376642799377,187.73428773117064,187.76480903434754,187.7953303375244,187.8258516407013,187.85637294387817,187.88689424705504,187.91741555023194,187.9479368534088,187.9784581565857,188.00897945976257,188.03950076293944,188.07002206611634,188.1005433692932,188.1310646724701,188.16158597564697,188.19210727882384,188.22262858200074,188.2531498851776,188.28367118835448,188.31419249153137,188.34471379470824,188.37523509788514,188.405756401062,188.43627770423888,188.46679900741577,188.49732031059264,188.52784161376954,188.5583629169464,188.58888422012328,188.61940552330017,188.64992682647704,188.68044812965394,188.7109694328308,188.74149073600768,188.77201203918457,188.80253334236144,188.83305464553834,188.8635759487152,188.89409725189208,188.92461855506897,188.95513985824584,188.98566116142274,189.0161824645996,189.04670376777648,189.07722507095338,189.10774637413024,189.1382676773071,189.168788980484,189.19931028366088,189.22983158683778,189.26035289001464,189.2908741931915,189.3213954963684,189.35191679954528,189.38243810272218,189.41295940589904,189.4434807090759,189.4740020122528,189.50452331542968,189.53504461860658,189.56556592178345,189.5960872249603,189.6266085281372,189.65712983131408,189.68765113449098,189.71817243766785,189.74869374084471,189.7792150440216,189.80973634719848,189.84025765037535,189.87077895355225,189.90130025672912,189.931821559906,189.96234286308288,189.99286416625975,190.02338546943665,190.05390677261352,190.0844280757904,190.11494937896728,190.14547068214415,190.17599198532105,190.20651328849792,190.2370345916748,190.26755589485168,190.29807719802855,190.32859850120545,190.35911980438232,190.3896411075592,190.42016241073608,190.45068371391295,190.48120501708985,190.51172632026672,190.5422476234436,190.57276892662048,190.60329022979735,190.63381153297425,190.66433283615112,190.694854139328,190.72537544250488,190.75589674568175,190.78641804885865,190.81693935203552,190.8474606552124,190.87798195838928,190.90850326156615,190.93902456474305,190.96954586791992,191.0000671710968,191.03058847427369,191.06110977745055,191.09163108062745,191.12215238380432,191.1526736869812,191.18319499015809,191.21371629333495,191.24423759651185,191.27475889968872,191.3052802028656,191.3358015060425,191.36632280921935,191.39684411239622,191.42736541557312,191.45788671875,191.4884080219269,191.51892932510376,191.54945062828062,191.57997193145752,191.6104932346344,191.6410145378113,191.67153584098816,191.70205714416502,191.73257844734192,191.7630997505188,191.7936210536957,191.82414235687256,191.85466366004943,191.88518496322632,191.9157062664032,191.9462275695801,191.97674887275696,192.00727017593383,192.03779147911072,192.0683127822876,192.09883408546446,192.12935538864136,192.15987669181823,192.19039799499512,192.220919298172,192.25144060134886,192.28196190452576,192.31248320770263,192.34300451087952,192.3735258140564,192.40404711723326,192.43456842041016,192.46508972358703,192.49561102676392,192.5261323299408,192.55665363311766,192.58717493629456,192.61769623947143,192.64821754264833,192.6787388458252,192.70926014900206,192.73978145217896,192.77030275535583,192.8008240585327,192.8313453617096,192.86186666488646,192.89238796806336,192.92290927124023,192.9534305744171,192.983951877594,193.01447318077086,193.04499448394776,193.07551578712463,193.1060370903015,193.1365583934784,193.16707969665526,193.19760099983216,193.22812230300903,193.2586436061859,193.2891649093628,193.31968621253966,193.35020751571656,193.38072881889343,193.4112501220703,193.4417714252472,193.47229272842407,193.50281403160096,193.53333533477783,193.5638566379547,193.5943779411316,193.62489924430847,193.65542054748533,193.68594185066223,193.7164631538391,193.746984457016,193.77750576019287,193.80802706336974,193.83854836654663,193.8690696697235,193.8995909729004,193.93011227607727,193.96063357925414,193.99115488243103,194.0216761856079,194.0521974887848,194.08271879196167,194.11324009513854,194.14376139831543,194.1742827014923,194.2048040046692,194.23532530784607,194.26584661102294,194.29636791419983,194.3268892173767,194.35741052055357,194.38793182373047,194.41845312690734,194.44897443008423,194.4794957332611,194.51001703643797,194.54053833961487,194.57105964279174,194.60158094596864,194.6321022491455,194.66262355232237,194.69314485549927,194.72366615867614,194.75418746185304,194.7847087650299,194.81523006820677,194.84575137138367,194.87627267456054,194.90679397773744,194.9373152809143,194.96783658409117,194.99835788726807,195.02887919044494,195.05940049362184,195.0899217967987,195.12044309997557,195.15096440315247,195.18148570632934,195.2120070095062,195.2425283126831,195.27304961585997,195.30357091903687,195.33409222221374,195.3646135253906,195.3951348285675,195.42565613174438,195.45617743492127,195.48669873809814,195.517220041275,195.5477413444519,195.57826264762878,195.60878395080567,195.63930525398254,195.6698265571594,195.7003478603363,195.73086916351318,195.76139046669007,195.79191176986694,195.8224330730438,195.8529543762207,195.88347567939758,195.91399698257445,195.94451828575134,195.9750395889282,196.0055608921051,196.03608219528198,196.06660349845885,196.09712480163574,196.1276461048126,196.1581674079895,196.18868871116638,196.21921001434325,196.24973131752014,196.280252620697,196.3107739238739,196.34129522705078,196.37181653022765,196.40233783340454,196.4328591365814,196.4633804397583,196.49390174293518,196.52442304611205,196.55494434928895,196.5854656524658,196.61598695564268,196.64650825881958,196.67702956199645,196.70755086517335,196.73807216835021,196.76859347152708,196.79911477470398,196.82963607788085,196.86015738105775,196.89067868423462,196.92119998741148,196.95172129058838,196.98224259376525,197.01276389694215,197.04328520011902,197.07380650329588,197.10432780647278,197.13484910964965,197.16537041282655,197.19589171600342,197.22641301918028,197.25693432235718,197.28745562553405,197.31797692871095,197.34849823188782,197.37901953506469,197.40954083824158,197.44006214141845,197.47058344459532,197.50110474777222,197.5316260509491,197.56214735412598,197.59266865730285,197.62318996047972,197.65371126365662,197.6842325668335,197.71475387001038,197.74527517318725,197.77579647636412,197.80631777954102,197.8368390827179,197.86736038589478,197.89788168907165,197.92840299224852,197.95892429542542,197.9894455986023,198.01996690177918,198.05048820495605,198.08100950813292,198.11153081130982,198.1420521144867,198.17257341766356,198.20309472084045,198.23361602401732,198.26413732719422,198.2946586303711,198.32517993354796,198.35570123672485,198.38622253990172,198.41674384307862,198.4472651462555,198.47778644943236,198.50830775260926,198.53882905578612,198.56935035896302,198.5998716621399,198.63039296531676,198.66091426849366,198.69143557167052,198.72195687484742,198.7524781780243,198.78299948120116,198.81352078437806,198.84404208755493,198.8745633907318,198.9050846939087,198.93560599708556,198.96612730026246,198.99664860343933,199.0271699066162,199.0576912097931,199.08821251296996,199.11873381614686,199.14925511932373,199.1797764225006,199.2102977256775,199.24081902885436,199.27134033203126,199.30186163520813,199.332382938385,199.3629042415619,199.39342554473876,199.42394684791566,199.45446815109253,199.4849894542694,199.5155107574463,199.54603206062316,199.57655336380006,199.60707466697693,199.6375959701538,199.6681172733307,199.69863857650756,199.72915987968443,199.75968118286133,199.7902024860382,199.8207237892151,199.85124509239196,199.88176639556883,199.91228769874573,199.9428090019226,199.9733303050995,200.00385160827636,200.03437291145323,200.06489421463013,200.095415517807,200.1259368209839,200.15645812416076,200.18697942733763,200.21750073051453,200.2480220336914,200.2785433368683,200.30906464004516,200.33958594322203,200.37010724639893,200.4006285495758,200.43114985275267,200.46167115592957,200.49219245910643,200.52271376228333,200.5532350654602,200.58375636863707,200.61427767181397,200.64479897499083,200.67532027816773,200.7058415813446,200.73636288452147,200.76688418769837,200.79740549087524,200.82792679405213,200.858448097229,200.88896940040587,200.91949070358277,200.95001200675964,200.98053330993653,201.0110546131134,201.04157591629027,201.07209721946717,201.10261852264404,201.13313982582093,201.1636611289978,201.19418243217467,201.22470373535157,201.25522503852844,201.2857463417053,201.3162676448822,201.34678894805907,201.37731025123597,201.40783155441284,201.4383528575897,201.4688741607666,201.49939546394347,201.52991676712037,201.56043807029724,201.5909593734741,201.621480676651,201.65200197982787,201.68252328300477,201.71304458618164,201.7435658893585,201.7740871925354,201.80460849571227,201.83512979888917,201.86565110206604,201.8961724052429,201.9266937084198,201.95721501159667,201.98773631477354,202.01825761795044,202.0487789211273,202.0793002243042,202.10982152748107,202.14034283065794,202.17086413383484,202.2013854370117,202.2319067401886,202.26242804336547,202.29294934654234,202.32347064971924,202.3539919528961,202.384513256073,202.41503455924988,202.44555586242674,202.47607716560364,202.5065984687805,202.5371197719574,202.56764107513428,202.59816237831114,202.62868368148804,202.6592049846649,202.68972628784178,202.72024759101868,202.75076889419555,202.78129019737244,202.8118115005493,202.84233280372618,202.87285410690308,202.90337541007995,202.93389671325684,202.9644180164337,202.99493931961058,203.02546062278748,203.05598192596435,203.08650322914124,203.1170245323181,203.14754583549498,203.17806713867188,203.20858844184875,203.23910974502564,203.2696310482025,203.30015235137938,203.33067365455628,203.36119495773315,203.39171626091004,203.4222375640869,203.45275886726378,203.48328017044068,203.51380147361755,203.54432277679442,203.5748440799713,203.60536538314818,203.63588668632508,203.66640798950195,203.69692929267882,203.72745059585571,203.75797189903258,203.78849320220948,203.81901450538635,203.84953580856322,203.88005711174011,203.91057841491698,203.94109971809388,203.97162102127075,204.00214232444762,204.03266362762452,204.06318493080138,204.09370623397828,204.12422753715515,204.15474884033202,204.18527014350892,204.21579144668578,204.24631274986265,204.27683405303955,204.30735535621642,204.33787665939332,204.36839796257019,204.39891926574705,204.42944056892395,204.45996187210082,204.49048317527772,204.52100447845459,204.55152578163145,204.58204708480835,204.61256838798522,204.64308969116212,204.673610994339,204.70413229751586,204.73465360069275,204.76517490386962,204.79569620704652,204.8262175102234,204.85673881340026,204.88726011657715,204.91778141975402,204.9483027229309,204.9788240261078,205.00934532928466,205.03986663246155,205.07038793563842,205.1009092388153,205.1314305419922,205.16195184516906,205.19247314834595,205.22299445152282,205.2535157546997,205.2840370578766,205.31455836105346,205.34507966423035,205.37560096740722,205.4061222705841,205.436643573761,205.46716487693786,205.49768618011475,205.52820748329162,205.5587287864685,205.5892500896454,205.61977139282226,205.65029269599916,205.68081399917602,205.7113353023529,205.7418566055298,205.77237790870666,205.80289921188353,205.83342051506042,205.8639418182373,205.8944631214142,205.92498442459106,205.95550572776793,205.98602703094483,206.0165483341217,206.0470696372986,206.07759094047546,206.10811224365233,206.13863354682923,206.1691548500061,206.199676153183,206.23019745635986,206.26071875953673,206.29124006271363,206.3217613658905,206.3522826690674,206.38280397224426,206.41332527542113,206.44384657859803,206.4743678817749,206.50488918495176,206.53541048812866,206.56593179130553,206.59645309448243,206.6269743976593,206.65749570083617,206.68801700401306,206.71853830718993,206.74905961036683,206.7795809135437,206.81010221672057,206.84062351989746,206.87114482307433,206.90166612625123,206.9321874294281,206.96270873260497,206.99323003578186,207.02375133895873,207.05427264213563,207.0847939453125,207.11531524848937,207.14583655166626,207.17635785484313,207.20687915802003,207.2374004611969,207.26792176437377,207.29844306755066,207.32896437072753,207.3594856739044,207.3900069770813,207.42052828025817,207.45104958343506,207.48157088661193,207.5120921897888,207.5426134929657,207.57313479614257,207.60365609931947,207.63417740249633,207.6646987056732,207.6952200088501,207.72574131202697,207.75626261520387,207.78678391838073,207.8173052215576,207.8478265247345,207.87834782791137,207.90886913108827,207.93939043426514,207.969911737442,208.0004330406189,208.03095434379577,208.06147564697264,208.09199695014954,208.1225182533264,208.1530395565033,208.18356085968017,208.21408216285704,208.24460346603394,208.2751247692108,208.3056460723877,208.33616737556457,208.36668867874144,208.39720998191834,208.4277312850952,208.4582525882721,208.48877389144897,208.51929519462584,208.54981649780274,208.5803378009796,208.6108591041565,208.64138040733337,208.67190171051024,208.70242301368714,208.732944316864,208.76346562004088,208.79398692321777,208.82450822639464,208.85502952957154,208.8855508327484,208.91607213592528,208.94659343910217,208.97711474227904,209.00763604545594,209.0381573486328,209.06867865180968,209.09919995498657,209.12972125816344,209.16024256134034,209.1907638645172,209.22128516769408,209.25180647087097,209.28232777404784,209.31284907722474,209.3433703804016,209.37389168357848,209.40441298675537,209.43493428993224,209.46545559310914,209.495976896286,209.52649819946288,209.55701950263978,209.58754080581664,209.6180621089935,209.6485834121704,209.67910471534728,209.70962601852418,209.74014732170104,209.7706686248779,209.8011899280548,209.83171123123168,209.86223253440858,209.89275383758545,209.9232751407623,209.9537964439392,209.98431774711608,210.01483905029298,210.04536035346985,210.07588165664671,210.1064029598236,210.13692426300048,210.16744556617738,210.19796686935425,210.22848817253112,210.259009475708,210.28953077888488,210.32005208206175,210.35057338523865,210.38109468841552,210.4116159915924,210.44213729476928,210.47265859794615,210.50317990112305,210.53370120429992,210.5642225074768,210.59474381065368,210.62526511383055,210.65578641700745,210.68630772018432,210.7168290233612,210.74735032653808,210.77787162971495,210.80839293289185,210.83891423606872,210.86943553924561,210.89995684242248,210.93047814559935,210.96099944877625,210.99152075195312,211.02204205513002,211.05256335830688,211.08308466148375,211.11360596466065,211.14412726783752,211.1746485710144,211.20516987419128,211.23569117736815,211.26621248054505,211.29673378372192,211.3272550868988,211.35777639007568,211.38829769325255,211.41881899642945,211.44934029960632,211.4798616027832,211.51038290596009,211.54090420913695,211.57142551231385,211.60194681549072,211.6324681186676,211.6629894218445,211.69351072502135,211.72403202819825,211.75455333137512,211.785074634552,211.8155959377289,211.84611724090576,211.87663854408262,211.90715984725952,211.9376811504364,211.9682024536133,211.99872375679016,212.02924505996702,212.05976636314392,212.0902876663208,212.1208089694977,212.15133027267456,212.18185157585143,212.21237287902832,212.2428941822052,212.2734154853821,212.30393678855896,212.33445809173583,212.36497939491272,212.3955006980896,212.4260220012665,212.45654330444336,212.48706460762023,212.51758591079712,212.548107213974,212.57862851715086,212.60914982032776,212.63967112350463,212.67019242668152,212.7007137298584,212.73123503303526,212.76175633621216,212.79227763938903,212.82279894256592,212.8533202457428,212.88384154891966,212.91436285209656,212.94488415527343,212.97540545845033,213.0059267616272,213.03644806480406,213.06696936798096,213.09749067115783,213.12801197433473,213.1585332775116,213.18905458068846,213.21957588386536,213.25009718704223,213.28061849021913,213.311139793396,213.34166109657286,213.37218239974976,213.40270370292663,213.4332250061035,213.4637463092804,213.49426761245726,213.52478891563416,213.55531021881103,213.5858315219879,213.6163528251648,213.64687412834166,213.67739543151856,213.70791673469543,213.7384380378723,213.7689593410492,213.79948064422607,213.83000194740296,213.86052325057983,213.8910445537567,213.9215658569336,213.95208716011047,213.98260846328736,214.01312976646423,214.0436510696411,214.074172372818,214.10469367599487,214.13521497917174,214.16573628234863,214.1962575855255,214.2267788887024,214.25730019187927,214.28782149505614,214.31834279823303,214.3488641014099,214.3793854045868,214.40990670776367,214.44042801094054,214.47094931411743,214.5014706172943,214.5319919204712,214.56251322364807,214.59303452682494,214.62355583000183,214.6540771331787,214.6845984363556,214.71511973953247,214.74564104270934,214.77616234588623,214.8066836490631,214.83720495223997,214.86772625541687,214.89824755859374,214.92876886177064,214.9592901649475,214.98981146812437,215.02033277130127,215.05085407447814,215.08137537765504,215.1118966808319,215.14241798400877,215.17293928718567,215.20346059036254,215.23398189353944,215.2645031967163,215.29502449989317,215.32554580307007,215.35606710624694,215.38658840942384,215.4171097126007,215.44763101577757,215.47815231895447,215.50867362213134,215.53919492530824,215.5697162284851,215.60023753166197,215.63075883483887,215.66128013801574,215.6918014411926,215.7223227443695,215.75284404754638,215.78336535072327,215.81388665390014,215.844407957077,215.8749292602539,215.90545056343078,215.93597186660767,215.96649316978454,215.9970144729614,216.0275357761383,216.05805707931518,216.08857838249207,216.11909968566894,216.1496209888458,216.1801422920227,216.21066359519958,216.24118489837647,216.27170620155334,216.3022275047302,216.3327488079071,216.36327011108398,216.39379141426085,216.42431271743774,216.4548340206146,216.4853553237915,216.51587662696838,216.54639793014525,216.57691923332214,216.607440536499,216.6379618396759,216.66848314285278,216.69900444602965,216.72952574920654,216.7600470523834,216.7905683555603,216.82108965873718,216.85161096191405,216.88213226509095,216.9126535682678,216.9431748714447,216.97369617462158,217.00421747779845,217.03473878097535,217.06526008415221,217.0957813873291,217.12630269050598,217.15682399368285,217.18734529685975,217.21786660003661,217.24838790321348,217.27890920639038,217.30943050956725,217.33995181274415,217.37047311592102,217.40099441909788,217.43151572227478,217.46203702545165,217.49255832862855,217.52307963180542,217.55360093498228,217.58412223815918,217.61464354133605,217.64516484451295,217.67568614768982,217.70620745086669,217.73672875404358,217.76725005722045,217.79777136039735,217.82829266357422,217.8588139667511,217.88933526992798,217.91985657310485,217.95037787628172,217.98089917945862,218.0114204826355,218.04194178581238,218.07246308898925,218.10298439216612,218.13350569534302,218.1640269985199,218.19454830169678,218.22506960487365,218.25559090805052,218.28611221122742,218.3166335144043,218.34715481758118,218.37767612075805,218.40819742393492,218.43871872711182,218.4692400302887,218.49976133346559,218.53028263664245,218.56080393981932,218.59132524299622,218.6218465461731,218.65236784934996,218.68288915252685,218.71341045570372,218.74393175888062,218.7744530620575,218.80497436523436,218.83549566841126,218.86601697158812,218.89653827476502,218.9270595779419,218.95758088111876,218.98810218429566,219.01862348747252,219.04914479064942,219.0796660938263,219.11018739700316,219.14070870018006,219.17123000335692,219.20175130653382,219.2322726097107,219.26279391288756,219.29331521606446,219.32383651924133,219.35435782241822,219.3848791255951,219.41540042877196,219.44592173194886,219.47644303512573,219.5069643383026,219.5374856414795,219.56800694465636,219.59852824783326,219.62904955101013,219.659570854187,219.6900921573639,219.72061346054076,219.75113476371766,219.78165606689453,219.8121773700714,219.8426986732483,219.87321997642516,219.90374127960206,219.93426258277893,219.9647838859558,219.9953051891327,220.02582649230956,220.05634779548646,220.08686909866333,220.1173904018402,220.1479117050171,220.17843300819396,220.20895431137083,220.23947561454773,220.2699969177246,220.3005182209015,220.33103952407836,220.36156082725523,220.39208213043213,220.422603433609,220.4531247367859,220.48364603996276,220.51416734313963,220.54468864631653,220.5752099494934,220.6057312526703,220.63625255584716,220.66677385902403,220.69729516220093,220.7278164653778,220.7583377685547,220.78885907173157,220.81938037490843,220.84990167808533,220.8804229812622,220.91094428443907,220.94146558761597,220.97198689079283,221.00250819396973,221.0330294971466,221.06355080032347,221.09407210350037,221.12459340667723,221.15511470985413,221.185636013031,221.21615731620787,221.24667861938477,221.27719992256164,221.30772122573853,221.3382425289154,221.36876383209227,221.39928513526917,221.42980643844604,221.46032774162293,221.4908490447998,221.52137034797667,221.55189165115357,221.58241295433044,221.61293425750733,221.6434555606842,221.67397686386107,221.70449816703797,221.73501947021484,221.7655407733917,221.7960620765686,221.82658337974547,221.85710468292237,221.88762598609924,221.9181472892761,221.948668592453,221.97918989562987,222.00971119880677,222.04023250198364,222.0707538051605,222.1012751083374,222.13179641151427,222.16231771469117,222.19283901786804,222.2233603210449,222.2538816242218,222.28440292739867,222.31492423057557,222.34544553375244,222.3759668369293,222.4064881401062,222.43700944328307,222.46753074645994,222.49805204963684,222.5285733528137,222.5590946559906,222.58961595916747,222.62013726234434,222.65065856552124,222.6811798686981,222.711701171875,222.74222247505188,222.77274377822874,222.80326508140564,222.8337863845825,222.8643076877594,222.89482899093628,222.92535029411314,222.95587159729004,222.9863929004669,223.0169142036438,223.04743550682068,223.07795680999754,223.10847811317444,223.1389994163513,223.1695207195282,223.20004202270508,223.23056332588195,223.26108462905884,223.2916059322357,223.32212723541258,223.35264853858948,223.38316984176635,223.41369114494324,223.4442124481201,223.47473375129698,223.50525505447388,223.53577635765075,223.56629766082764,223.5968189640045,223.62734026718138,223.65786157035828,223.68838287353515,223.71890417671204,223.7494254798889,223.77994678306578,223.81046808624268,223.84098938941955,223.87151069259644,223.9020319957733,223.93255329895018,223.96307460212708,223.99359590530395,224.02411720848082,224.0546385116577,224.08515981483458,224.11568111801148,224.14620242118835,224.17672372436522,224.20724502754211,224.23776633071898,224.26828763389588,224.29880893707275,224.32933024024962,224.35985154342652,224.39037284660338,224.42089414978028,224.45141545295715,224.48193675613402,224.51245805931092,224.54297936248778,224.57350066566468,224.60402196884155,224.63454327201842,224.66506457519532,224.69558587837219,224.72610718154905,224.75662848472595,224.78714978790282,224.81767109107972,224.84819239425659,224.87871369743345,224.90923500061035,224.93975630378722,224.97027760696412,225.000798910141,225.03132021331785,225.06184151649475,225.09236281967162,225.12288412284852,225.1534054260254,225.18392672920226,225.21444803237915,225.24496933555602,225.27549063873292,225.3060119419098,225.33653324508666,225.36705454826355,225.39757585144042,225.42809715461732,225.4586184577942,225.48913976097106,225.51966106414795,225.55018236732482,225.5807036705017,225.6112249736786,225.64174627685546,225.67226758003235,225.70278888320922,225.7333101863861,225.763831489563,225.79435279273986,225.82487409591675,225.85539539909362,225.8859167022705,225.9164380054474,225.94695930862426,225.97748061180116,226.00800191497802,226.0385232181549,226.0690445213318,226.09956582450866,226.13008712768556,226.16060843086242,226.1911297340393,226.2216510372162,226.25217234039306,226.28269364356993,226.31321494674683,226.3437362499237,226.3742575531006,226.40477885627746,226.43530015945433,226.46582146263123,226.4963427658081,226.526864068985,226.55738537216186,226.58790667533873,226.61842797851563,226.6489492816925,226.6794705848694,226.70999188804626,226.74051319122313,226.77103449440003,226.8015557975769,226.8320771007538,226.86259840393066,226.89311970710753,226.92364101028443,226.9541623134613,226.9846836166382,227.01520491981506,227.04572622299193,227.07624752616883,227.1067688293457,227.13729013252257,227.16781143569946,227.19833273887633,227.22885404205323,227.2593753452301,227.28989664840697,227.32041795158386,227.35093925476073,227.38146055793763,227.4119818611145,227.44250316429137,227.47302446746826,227.50354577064513,227.53406707382203,227.5645883769989,227.59510968017577,227.62563098335266,227.65615228652953,227.68667358970643,227.7171948928833,227.74771619606017,227.77823749923706,227.80875880241393,227.8392801055908,227.8698014087677,227.90032271194457,227.93084401512147,227.96136531829833,227.9918866214752,228.0224079246521,228.05292922782897,228.08345053100587,228.11397183418273,228.1444931373596,228.1750144405365,228.20553574371337,228.23605704689027,228.26657835006714,228.297099653244,228.3276209564209,228.35814225959777,228.38866356277467,228.41918486595154,228.4497061691284,228.4802274723053,228.51074877548217,228.54127007865904,228.57179138183594,228.6023126850128,228.6328339881897,228.66335529136657,228.69387659454344,228.72439789772034,228.7549192008972,228.7854405040741,228.81596180725097,228.84648311042784,228.87700441360474,228.9075257167816,228.9380470199585,228.96856832313537,228.99908962631224,229.02961092948914,229.060132232666,229.0906535358429,229.12117483901977,229.15169614219664,229.18221744537354,229.2127387485504,229.2432600517273,229.27378135490417,229.30430265808104,229.33482396125794,229.3653452644348,229.39586656761168,229.42638787078857,229.45690917396544,229.48743047714234,229.5179517803192,229.54847308349608,229.57899438667297,229.60951568984984,229.64003699302674,229.6705582962036,229.70107959938048,229.73160090255737,229.76212220573424,229.79264350891114,229.823164812088,229.85368611526488,229.88420741844178,229.91472872161864,229.94525002479554,229.9757713279724,230.00629263114928,230.03681393432618,230.06733523750304,230.0978565406799,230.1283778438568,230.15889914703368,230.18942045021058,230.21994175338745,230.2504630565643,230.2809843597412,230.31150566291808,230.34202696609498,230.37254826927185,230.40306957244871,230.4335908756256,230.46411217880248,230.49463348197938,230.52515478515625,230.55567608833312,230.58619739151,230.61671869468688,230.64723999786378,230.67776130104065,230.70828260421752,230.7388039073944,230.76932521057128,230.79984651374815,230.83036781692505,230.86088912010192,230.8914104232788,230.92193172645568,230.95245302963255,230.98297433280945,231.01349563598632,231.0440169391632,231.07453824234008,231.10505954551695,231.13558084869385,231.16610215187072,231.19662345504761,231.22714475822448,231.25766606140135,231.28818736457825,231.31870866775512,231.34922997093202,231.37975127410888,231.41027257728575,231.44079388046265,231.47131518363952,231.50183648681642,231.53235778999328,231.56287909317015,231.59340039634705,231.62392169952392,231.6544430027008,231.68496430587768,231.71548560905455,231.74600691223145,231.77652821540832,231.8070495185852,231.83757082176209,231.86809212493895,231.89861342811585,231.92913473129272,231.9596560344696,231.9901773376465,232.02069864082335,232.05121994400025,232.08174124717712,232.112262550354,232.1427838535309,232.17330515670776,232.20382645988465,232.23434776306152,232.2648690662384,232.2953903694153,232.32591167259216,232.35643297576902,232.38695427894592,232.4174755821228,232.4479968852997,232.47851818847656,232.50903949165343,232.53956079483032,232.5700820980072,232.6006034011841,232.63112470436096,232.66164600753783,232.69216731071472,232.7226886138916,232.7532099170685,232.78373122024536,232.81425252342223,232.84477382659912,232.875295129776,232.9058164329529,232.93633773612976,232.96685903930663,232.99738034248352,233.0279016456604,233.0584229488373,233.08894425201416,233.11946555519103,233.14998685836792,233.1805081615448,233.21102946472166,233.24155076789856,233.27207207107543,233.30259337425233,233.3331146774292,233.36363598060606,233.39415728378296,233.42467858695983,233.45519989013673,233.4857211933136,233.51624249649046,233.54676379966736,233.57728510284423,233.60780640602113,233.638327709198,233.66884901237486,233.69937031555176,233.72989161872863,233.76041292190553,233.7909342250824,233.82145552825926,233.85197683143616,233.88249813461303,233.9130194377899,233.9435407409668,233.97406204414366,234.00458334732056,234.03510465049743,234.0656259536743,234.0961472568512,234.12666856002807,234.15718986320496,234.18771116638183,234.2182324695587,234.2487537727356,234.27927507591247,234.30979637908936,234.34031768226623,234.3708389854431,234.40136028862,234.43188159179687,234.46240289497376,234.49292419815063,234.5234455013275,234.5539668045044,234.58448810768127,234.61500941085814,234.64553071403503,234.6760520172119,234.7065733203888,234.73709462356567,234.76761592674254,234.79813722991943,234.8286585330963,234.8591798362732,234.88970113945007,234.92022244262694,234.95074374580383,234.9812650489807,235.0117863521576,235.04230765533447,235.07282895851134,235.10335026168823,235.1338715648651,235.164392868042,235.19491417121887,235.22543547439574,235.25595677757264,235.2864780807495,235.3169993839264,235.34752068710327,235.37804199028014,235.40856329345704,235.4390845966339,235.46960589981077,235.50012720298767,235.53064850616454,235.56116980934144,235.5916911125183,235.62221241569517,235.65273371887207,235.68325502204894,235.71377632522584,235.7442976284027,235.77481893157957,235.80534023475647,235.83586153793334,235.86638284111024,235.8969041442871,235.92742544746397,235.95794675064087,235.98846805381774,236.01898935699464,236.0495106601715,236.08003196334838,236.11055326652527,236.14107456970214,236.171595872879,236.2021171760559,236.23263847923278,236.26315978240967,236.29368108558654,236.3242023887634,236.3547236919403,236.38524499511718,236.41576629829407,236.44628760147094,236.4768089046478,236.5073302078247,236.53785151100158,236.56837281417847,236.59889411735534,236.6294154205322,236.6599367237091,236.69045802688598,236.72097933006287,236.75150063323974,236.7820219364166,236.8125432395935,236.84306454277038,236.87358584594725,236.90410714912414,236.934628452301,236.9651497554779,236.99567105865478,237.02619236183165,237.05671366500854,237.0872349681854,237.1177562713623,237.14827757453918,237.17879887771605,237.20932018089295,237.2398414840698,237.2703627872467,237.30088409042358,237.33140539360045,237.36192669677735,237.39244799995421,237.4229693031311,237.45349060630798,237.48401190948485,237.51453321266175,237.54505451583861,237.5755758190155,237.60609712219238,237.63661842536925,237.66713972854615,237.69766103172302,237.72818233489988,237.75870363807678,237.78922494125365,237.81974624443055,237.85026754760742,237.88078885078428,237.91131015396118,237.94183145713805,237.97235276031495,238.00287406349182,238.03339536666869,238.06391666984558,238.09443797302245,238.12495927619935,238.15548057937622,238.1860018825531,238.21652318572998,238.24704448890685,238.27756579208375,238.30808709526062,238.3386083984375,238.36912970161438,238.39965100479125,238.43017230796812,238.46069361114502,238.4912149143219,238.52173621749878,238.55225752067565,238.58277882385252,238.61330012702942,238.6438214302063,238.67434273338318,238.70486403656005,238.73538533973692,238.76590664291382,238.7964279460907,238.82694924926759,238.85747055244445,238.88799185562132,238.91851315879822,238.9490344619751,238.97955576515199,239.01007706832885,239.04059837150572,239.07111967468262,239.1016409778595,239.1321622810364,239.16268358421326,239.19320488739012,239.22372619056702,239.2542474937439,239.28476879692076,239.31529010009766,239.34581140327452,239.37633270645142,239.4068540096283,239.43737531280516,239.46789661598206,239.49841791915892,239.52893922233582,239.5594605255127,239.58998182868956,239.62050313186646,239.65102443504333,239.68154573822022,239.7120670413971,239.74258834457396,239.77310964775086,239.80363095092773,239.83415225410462,239.8646735572815,239.89519486045836,239.92571616363526,239.95623746681213,239.986758769989,240.0172800731659,240.04780137634276,240.07832267951966,240.10884398269653,240.1393652858734,240.1698865890503,240.20040789222716,240.23092919540406,240.26145049858093,240.2919718017578,240.3224931049347,240.35301440811156,240.38353571128846,240.41405701446533,240.4445783176422,240.4750996208191,240.50562092399596,240.53614222717286,240.56666353034973,240.5971848335266,240.6277061367035,240.65822743988036,240.68874874305723,240.71927004623413,240.749791349411,240.7803126525879,240.81083395576476,240.84135525894163,240.87187656211853,240.9023978652954,240.9329191684723,240.96344047164916,240.99396177482603,241.02448307800293,241.0550043811798,241.0855256843567,241.11604698753357,241.14656829071043,241.17708959388733,241.2076108970642,241.2381322002411,241.26865350341797,241.29917480659483,241.32969610977173,241.3602174129486,241.3907387161255,241.42126001930237,241.45178132247923,241.48230262565613,241.512823928833,241.54334523200987,241.57386653518677,241.60438783836364,241.63490914154053,241.6654304447174,241.69595174789427,241.72647305107117,241.75699435424804,241.78751565742493,241.8180369606018,241.84855826377867,241.87907956695557,241.90960087013244,241.94012217330933,241.9706434764862,242.00116477966307,242.03168608283997,242.06220738601684,242.09272868919373,242.1232499923706,242.15377129554747,242.18429259872437,242.21481390190124,242.2453352050781,242.275856508255,242.30637781143187,242.33689911460877,242.36742041778564,242.3979417209625,242.4284630241394,242.45898432731627,242.48950563049317,242.52002693367004,242.5505482368469,242.5810695400238,242.61159084320067,242.64211214637757,242.67263344955444,242.7031547527313,242.7336760559082,242.76419735908507,242.79471866226197,242.82523996543884,242.8557612686157,242.8862825717926,242.91680387496947,242.94732517814634,242.97784648132324,243.0083677845001,243.038889087677,243.06941039085388,243.09993169403074,243.13045299720764,243.1609743003845,243.1914956035614,243.22201690673828,243.25253820991514,243.28305951309204,243.3135808162689,243.3441021194458,243.37462342262268,243.40514472579954,243.43566602897644,243.4661873321533,243.4967086353302,243.52722993850708,243.55775124168395,243.58827254486084,243.6187938480377,243.6493151512146,243.67983645439148,243.71035775756835,243.74087906074524,243.7714003639221,243.80192166709898,243.83244297027588,243.86296427345275,243.89348557662964,243.9240068798065,243.95452818298338,243.98504948616028,244.01557078933715,244.04609209251404,244.0766133956909,244.10713469886778,244.13765600204468,244.16817730522155,244.19869860839844,244.2292199115753,244.25974121475218,244.29026251792908,244.32078382110595,244.35130512428285,244.3818264274597,244.41234773063658,244.44286903381348,244.47339033699035,244.50391164016722,244.53443294334411,244.56495424652098,244.59547554969788,244.62599685287475,244.65651815605162,244.68703945922852,244.71756076240538,244.74808206558228,244.77860336875915,244.80912467193602,244.83964597511292,244.87016727828978,244.90068858146668,244.93120988464355,244.96173118782042,244.99225249099732,245.02277379417419,245.05329509735108,245.08381640052795,245.11433770370482,245.14485900688172,245.17538031005859,245.20590161323548,245.23642291641235,245.26694421958922,245.29746552276612,245.327986825943,245.35850812911985,245.38902943229675,245.41955073547362,245.45007203865052,245.4805933418274,245.51111464500426,245.54163594818115,245.57215725135802,245.60267855453492,245.6331998577118,245.66372116088866,245.69424246406555,245.72476376724242,245.75528507041932,245.7858063735962,245.81632767677306,245.84684897994995,245.87737028312682,245.90789158630372,245.9384128894806,245.96893419265746,245.99945549583435,246.02997679901122,246.0604981021881,246.091019405365,246.12154070854186,246.15206201171875,246.18258331489562,246.2131046180725,246.2436259212494,246.27414722442626,246.30466852760316,246.33518983078002,246.3657111339569,246.3962324371338,246.42675374031066,246.45727504348756,246.48779634666442,246.5183176498413,246.5488389530182,246.57936025619506,246.60988155937196,246.64040286254883,246.6709241657257,246.7014454689026,246.73196677207946,246.76248807525633,246.79300937843323,246.8235306816101,246.854051984787,246.88457328796386,246.91509459114073,246.94561589431763,246.9761371974945,247.0066585006714,247.03717980384826,247.06770110702513,247.09822241020203,247.1287437133789,247.1592650165558,247.18978631973266,247.22030762290953,247.25082892608643,247.2813502292633,247.3118715324402,247.34239283561706,247.37291413879393,247.40343544197083,247.4339567451477,247.4644780483246,247.49499935150146,247.52552065467833,247.55604195785523,247.5865632610321,247.61708456420897,247.64760586738586,247.67812717056273,247.70864847373963,247.7391697769165,247.76969108009337,247.80021238327026,247.83073368644713,247.86125498962403,247.8917762928009,247.92229759597777,247.95281889915466,247.98334020233153,248.01386150550843,248.0443828086853,248.07490411186217,248.10542541503906,248.13594671821593,248.16646802139283,248.1969893245697,248.22751062774657,248.25803193092347,248.28855323410033,248.3190745372772,248.3495958404541,248.38011714363097,248.41063844680787,248.44115974998473,248.4716810531616,248.5022023563385,248.53272365951537,248.56324496269227,248.59376626586914,248.624287569046,248.6548088722229,248.68533017539977,248.71585147857667,248.74637278175354,248.7768940849304,248.8074153881073,248.83793669128417,248.86845799446107,248.89897929763794,248.9295006008148,248.9600219039917,248.99054320716857,249.02106451034547,249.05158581352234,249.0821071166992,249.1126284198761,249.14314972305297,249.17367102622984,249.20419232940674,249.2347136325836,249.2652349357605,249.29575623893737,249.32627754211424,249.35679884529114,249.387320148468,249.4178414516449,249.44836275482177,249.47888405799864,249.50940536117554,249.5399266643524,249.5704479675293,249.60096927070617,249.63149057388304,249.66201187705994,249.6925331802368,249.7230544834137,249.75357578659057,249.78409708976744,249.81461839294434,249.8451396961212,249.87566099929808,249.90618230247497,249.93670360565184,249.96722490882874,249.9977462120056,250.02826751518248,250.05878881835937,250.08931012153624,250.11983142471314,250.15035272789,250.18087403106688,250.21139533424378,250.24191663742064,250.27243794059754,250.3029592437744,250.33348054695128,250.36400185012818,250.39452315330504,250.42504445648194,250.4555657596588,250.48608706283568,250.51660836601258,250.54712966918945,250.5776509723663,250.6081722755432,250.63869357872008,250.66921488189698,250.69973618507385,250.73025748825071,250.7607787914276,250.79130009460448,250.82182139778138,250.85234270095825,250.88286400413512,250.913385307312,250.94390661048888,250.97442791366578,251.00494921684265,251.03547052001952,251.0659918231964,251.09651312637328,251.12703442955018,251.15755573272705,251.18807703590392,251.2185983390808,251.24911964225768,251.27964094543458,251.31016224861145,251.34068355178832,251.3712048549652,251.40172615814208,251.43224746131895,251.46276876449585,251.49329006767272,251.52381137084961,251.55433267402648,251.58485397720335,251.61537528038025,251.64589658355712,251.67641788673401,251.70693918991088,251.73746049308775,251.76798179626465,251.79850309944152,251.82902440261842,251.85954570579528,251.89006700897215,251.92058831214905,251.95110961532592,251.98163091850282,252.01215222167968,252.04267352485655,252.07319482803345,252.10371613121032,252.1342374343872,252.16475873756409,252.19528004074095,252.22580134391785,252.25632264709472,252.2868439502716,252.3173652534485,252.34788655662535,252.37840785980225,252.40892916297912,252.439450466156,252.4699717693329,252.50049307250976,252.53101437568665,252.56153567886352,252.5920569820404,252.6225782852173,252.65309958839416,252.68362089157105,252.71414219474792,252.7446634979248,252.7751848011017,252.80570610427856,252.83622740745543,252.86674871063232,252.8972700138092,252.9277913169861,252.95831262016296,252.98883392333983,253.01935522651672,253.0498765296936,253.0803978328705,253.11091913604736,253.14144043922423,253.17196174240112,253.202483045578,253.2330043487549,253.26352565193176,253.29404695510863,253.32456825828552,253.3550895614624,253.3856108646393,253.41613216781616,253.44665347099303,253.47717477416992,253.5076960773468,253.5382173805237,253.56873868370056,253.59925998687743,253.62978129005432,253.6603025932312,253.69082389640806,253.72134519958496,253.75186650276183,253.78238780593873,253.8129091091156,253.84343041229246,253.87395171546936,253.90447301864623,253.93499432182313,253.93499432182313]},{"y":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,null],"type":"scatter","name":"Re{S(t)}","hovertemplate":"(%{x:.4f} ms, %{y:.3f} a.u.)","x":[3.935,3.96552130317688,3.9960426063537597,4.02656390953064,4.05708521270752,4.087606515884399,4.11812781906128,4.148649122238159,4.179170425415039,4.209691728591919,4.240213031768799,4.270734334945679,4.301255638122559,4.331776941299439,4.362298244476318,4.392819547653199,4.423340850830078,4.453862154006958,4.484383457183838,4.514904760360718,4.545426063537597,4.575947366714478,4.606468669891358,4.636989973068237,4.667511276245117,4.698032579421997,4.728553882598877,4.759075185775757,4.789596488952637,4.820117792129516,4.850639095306397,4.881160398483276,4.911681701660156,4.942203004837037,4.972724308013916,5.0032456111907955,5.033766914367676,5.064288217544556,5.0948095207214354,5.125330823898316,5.155852127075195,5.186373430252075,5.216894733428955,5.247416036605835,5.277937339782715,5.308458642959595,5.338979946136474,5.3695012493133545,5.400022552490235,5.430543855667114,5.4610651588439945,5.491586462020874,5.522107765197754,5.5526290683746335,5.583150371551514,5.613671674728393,5.6441929779052735,5.674714281082153,5.705235584259033,5.7357568874359135,5.766278190612793,5.796799493789672,5.827320796966553,5.857842100143433,5.888363403320312,5.918884706497193,5.949406009674073,5.979927312850952,6.010448616027832,6.040969919204712,6.071491222381592,6.102012525558472,6.132533828735351,6.163055131912231,6.193576435089112,6.224097738265991,6.254619041442871,6.285140344619752,6.315661647796631,6.34618295097351,6.376704254150391,6.407225557327271,6.43774686050415,6.46826816368103,6.49878946685791,6.52931077003479,6.55983207321167,6.590353376388549,6.62087467956543,6.65139598274231,6.681917285919189,6.712438589096069,6.74295989227295,6.773481195449829,6.8040024986267085,6.834523801803589,6.865045104980469,6.8955664081573484,6.926087711334228,6.956609014511109,6.987130317687988,7.017651620864868,7.048172924041748,7.078694227218628,7.109215530395508,7.139736833572387,7.1702581367492675,7.200779439926148,7.231300743103027,7.261822046279907,7.292343349456787,7.322864652633667,7.3533859558105465,7.383907258987427,7.414428562164307,7.4449498653411865,7.475471168518066,7.505992471694946,7.5365137748718265,7.567035078048706,7.597556381225585,7.628077684402466,7.658598987579346,7.689120290756225,7.719641593933106,7.750162897109986,7.780684200286865,7.811205503463745,7.841726806640625,7.872248109817505,7.902769412994385,7.933290716171264,7.963812019348145,7.994333322525025,8.024854625701904,8.055375928878783,8.085897232055665,8.116418535232544,8.146939838409423,8.177461141586303,8.207982444763184,8.238503747940063,8.269025051116943,8.299546354293824,8.330067657470703,8.360588960647583,8.391110263824462,8.421631567001343,8.452152870178223,8.482674173355102,8.513195476531981,8.543716779708863,8.574238082885742,8.604759386062621,8.635280689239503,8.665801992416382,8.696323295593261,8.72684459877014,8.757365901947022,8.787887205123901,8.81840850830078,8.84892981147766,8.879451114654541,8.90997241783142,8.9404937210083,8.971015024185181,9.00153632736206,9.03205763053894,9.06257893371582,9.0931002368927,9.12362154006958,9.15414284324646,9.184664146423339,9.21518544960022,9.2457067527771,9.276228055953979,9.30674935913086,9.33727066230774,9.367791965484619,9.398313268661498,9.42883457183838,9.459355875015259,9.489877178192138,9.520398481369018,9.550919784545899,9.581441087722778,9.611962390899658,9.642483694076539,9.673004997253418,9.703526300430298,9.734047603607177,9.764568906784058,9.795090209960938,9.825611513137817,9.856132816314696,9.886654119491578,9.917175422668457,9.947696725845336,9.978218029022218,10.008739332199097,10.039260635375976,10.069781938552856,10.100303241729737,10.130824544906616,10.161345848083496,10.191867151260375,10.222388454437256,10.252909757614136,10.283431060791015,10.313952363967894,10.344473667144776,10.374994970321655,10.405516273498534,10.436037576675416,10.466558879852295,10.497080183029174,10.527601486206054,10.558122789382935,10.588644092559814,10.619165395736694,10.649686698913573,10.680208002090454,10.710729305267334,10.741250608444213,10.771771911621094,10.802293214797974,10.832814517974853,10.863335821151733,10.893857124328614,10.924378427505493,10.954899730682373,10.985421033859252,11.015942337036133,11.046463640213013,11.076984943389892,11.107506246566773,11.138027549743653,11.168548852920532,11.199070156097411,11.229591459274292,11.260112762451172,11.290634065628051,11.32115536880493,11.351676671981812,11.382197975158691,11.41271927833557,11.443240581512452,11.473761884689331,11.50428318786621,11.53480449104309,11.565325794219971,11.59584709739685,11.62636840057373,11.65688970375061,11.68741100692749,11.71793231010437,11.74845361328125,11.77897491645813,11.80949621963501,11.84001752281189,11.870538825988769,11.90106012916565,11.93158143234253,11.962102735519409,11.99262403869629,12.02314534187317,12.053666645050049,12.084187948226928,12.11470925140381,12.145230554580689,12.175751857757568,12.20627316093445,12.236794464111329,12.267315767288208,12.297837070465087,12.328358373641969,12.358879676818848,12.389400979995727,12.419922283172607,12.450443586349488,12.480964889526367,12.511486192703247,12.542007495880128,12.572528799057007,12.603050102233887,12.633571405410766,12.664092708587647,12.694614011764527,12.725135314941406,12.755656618118286,12.786177921295167,12.816699224472046,12.847220527648926,12.877741830825807,12.908263134002686,12.938784437179566,12.969305740356445,12.999827043533326,13.030348346710205,13.060869649887085,13.091390953063964,13.121912256240845,13.152433559417725,13.182954862594604,13.213476165771485,13.243997468948365,13.274518772125244,13.305040075302124,13.335561378479005,13.366082681655884,13.396603984832764,13.427125288009643,13.457646591186524,13.488167894363404,13.518689197540283,13.549210500717164,13.579731803894044,13.610253107070923,13.640774410247802,13.671295713424684,13.701817016601563,13.732338319778442,13.762859622955322,13.793380926132203,13.823902229309082,13.854423532485962,13.884944835662843,13.915466138839722,13.945987442016602,13.976508745193481,14.007030048370362,14.037551351547242,14.068072654724121,14.098593957901,14.129115261077882,14.159636564254761,14.19015786743164,14.22067917060852,14.251200473785401,14.28172177696228,14.31224308013916,14.342764383316041,14.37328568649292,14.4038069896698,14.43432829284668,14.46484959602356,14.49537089920044,14.52589220237732,14.556413505554199,14.58693480873108,14.61745611190796,14.647977415084839,14.67849871826172,14.709020021438599,14.739541324615479,14.770062627792358,14.800583930969239,14.831105234146118,14.861626537322998,14.892147840499877,14.922669143676758,14.953190446853638,14.983711750030517,15.014233053207398,15.044754356384278,15.075275659561157,15.105796962738037,15.136318265914918,15.166839569091797,15.197360872268677,15.227882175445556,15.258403478622437,15.288924781799317,15.319446084976196,15.349967388153077,15.380488691329957,15.411009994506836,15.441531297683715,15.472052600860597,15.502573904037476,15.533095207214355,15.563616510391235,15.594137813568116,15.624659116744995,15.655180419921875,15.685701723098756,15.716223026275635,15.746744329452515,15.777265632629394,15.807786935806275,15.838308238983155,15.868829542160034,15.899350845336913,15.929872148513795,15.960393451690674,15.990914754867553,16.021436058044433,16.051957361221312,16.08247866439819,16.11299996757507,16.143521270751954,16.174042573928833,16.204563877105713,16.235085180282592,16.26560648345947,16.29612778663635,16.32664908981323,16.35717039299011,16.387691696166993,16.418212999343872,16.44873430252075,16.47925560569763,16.50977690887451,16.54029821205139,16.57081951522827,16.601340818405152,16.63186212158203,16.66238342475891,16.69290472793579,16.72342603111267,16.75394733428955,16.78446863746643,16.81498994064331,16.84551124382019,16.87603254699707,16.90655385017395,16.93707515335083,16.96759645652771,16.998117759704588,17.028639062881467,17.05916036605835,17.08968166923523,17.12020297241211,17.15072427558899,17.181245578765868,17.211766881942747,17.242288185119627,17.27280948829651,17.30333079147339,17.33385209465027,17.364373397827148,17.394894701004027,17.425416004180907,17.455937307357786,17.48645861053467,17.51697991371155,17.547501216888428,17.578022520065307,17.608543823242186,17.639065126419066,17.669586429595945,17.700107732772825,17.730629035949708,17.761150339126587,17.791671642303466,17.822192945480346,17.852714248657225,17.883235551834105,17.913756855010984,17.944278158187867,17.974799461364746,18.005320764541626,18.035842067718505,18.066363370895385,18.096884674072264,18.127405977249143,18.157927280426026,18.188448583602906,18.218969886779785,18.249491189956665,18.280012493133544,18.310533796310423,18.341055099487303,18.371576402664182,18.402097705841065,18.432619009017944,18.463140312194824,18.493661615371703,18.524182918548583,18.554704221725462,18.58522552490234,18.615746828079224,18.646268131256104,18.676789434432983,18.707310737609863,18.737832040786742,18.76835334396362,18.7988746471405,18.82939595031738,18.859917253494263,18.890438556671143,18.920959859848022,18.9514811630249,18.98200246620178,19.01252376937866,19.04304507255554,19.073566375732423,19.104087678909302,19.13460898208618,19.16513028526306,19.19565158843994,19.22617289161682,19.2566941947937,19.287215497970582,19.31773680114746,19.34825810432434,19.37877940750122,19.4093007106781,19.43982201385498,19.47034331703186,19.500864620208738,19.53138592338562,19.5619072265625,19.59242852973938,19.62294983291626,19.65347113609314,19.683992439270018,19.714513742446897,19.74503504562378,19.77555634880066,19.80607765197754,19.836598955154418,19.867120258331298,19.897641561508177,19.928162864685056,19.958684167861936,19.989205471038815,20.019726774215698,20.050248077392578,20.080769380569457,20.111290683746336,20.141811986923216,20.172333290100095,20.202854593276975,20.233375896453854,20.263897199630737,20.294418502807616,20.324939805984496,20.355461109161375,20.385982412338254,20.416503715515134,20.447025018692013,20.477546321868896,20.508067625045776,20.538588928222655,20.569110231399534,20.599631534576414,20.630152837753293,20.660674140930173,20.691195444107056,20.721716747283935,20.752238050460814,20.782759353637694,20.813280656814573,20.843801959991453,20.874323263168332,20.90484456634521,20.935365869522094,20.965887172698974,20.996408475875853,21.026929779052733,21.057451082229612,21.08797238540649,21.11849368858337,21.149014991760254,21.179536294937133,21.210057598114012,21.240578901290892,21.27110020446777,21.30162150764465,21.33214281082153,21.362664113998413,21.393185417175292,21.423706720352172,21.45422802352905,21.48474932670593,21.51527062988281,21.54579193305969,21.57631323623657,21.606834539413452,21.63735584259033,21.66787714576721,21.69839844894409,21.72891975212097,21.75944105529785,21.789962358474728,21.82048366165161,21.85100496482849,21.88152626800537,21.91204757118225,21.94256887435913,21.973090177536008,22.003611480712888,22.034132783889767,22.06465408706665,22.09517539024353,22.12569669342041,22.156217996597288,22.186739299774167,22.217260602951047,22.247781906127926,22.27830320930481,22.30882451248169,22.339345815658568,22.369867118835447,22.400388422012327,22.430909725189206,22.461431028366086,22.49195233154297,22.522473634719848,22.552994937896727,22.583516241073607,22.614037544250486,22.644558847427366,22.675080150604245,22.705601453781124,22.736122756958007,22.766644060134887,22.797165363311766,22.827686666488646,22.858207969665525,22.888729272842404,22.919250576019284,22.949771879196167,22.980293182373046,23.010814485549925,23.041335788726805,23.071857091903684,23.102378395080564,23.132899698257443,23.163421001434326,23.193942304611205,23.224463607788085,23.254984910964964,23.285506214141844,23.316027517318723,23.346548820495602,23.377070123672482,23.407591426849365,23.438112730026244,23.468634033203124,23.499155336380003,23.529676639556882,23.560197942733762,23.59071924591064,23.621240549087524,23.651761852264404,23.682283155441283,23.712804458618162,23.74332576179504,23.77384706497192,23.8043683681488,23.834889671325683,23.865410974502563,23.895932277679442,23.92645358085632,23.9569748840332,23.98749618721008,24.01801749038696,24.04853879356384,24.079060096740722,24.1095813999176,24.14010270309448,24.17062400627136,24.20114530944824,24.23166661262512,24.262187915802,24.29270921897888,24.32323052215576,24.35375182533264,24.38427312850952,24.4147944316864,24.44531573486328,24.475837038040158,24.506358341217037,24.53687964439392,24.5674009475708,24.59792225074768,24.62844355392456,24.658964857101438,24.689486160278317,24.720007463455197,24.75052876663208,24.78105006980896,24.81157137298584,24.842092676162718,24.872613979339597,24.903135282516477,24.933656585693356,24.96417788887024,24.99469919204712,25.025220495223998,25.055741798400877,25.086263101577757,25.116784404754636,25.147305707931515,25.177827011108395,25.208348314285278,25.238869617462157,25.269390920639037,25.299912223815916,25.330433526992795,25.360954830169675,25.391476133346554,25.421997436523437,25.452518739700317,25.483040042877196,25.513561346054075,25.544082649230955,25.574603952407834,25.605125255584714,25.635646558761596,25.666167861938476,25.696689165115355,25.727210468292235,25.757731771469114,25.788253074645993,25.818774377822873,25.849295680999752,25.879816984176635,25.910338287353515,25.940859590530394,25.971380893707273,26.001902196884153,26.032423500061032,26.06294480323791,26.093466106414795,26.123987409591674,26.154508712768553,26.185030015945433,26.215551319122312,26.24607262229919,26.27659392547607,26.30711522865295,26.337636531829833,26.368157835006713,26.398679138183592,26.42920044136047,26.45972174453735,26.49024304771423,26.52076435089111,26.551285654067993,26.581806957244872,26.61232826042175,26.64284956359863,26.67337086677551,26.70389216995239,26.73441347312927,26.764934776306152,26.79545607948303,26.82597738265991,26.85649868583679,26.88701998901367,26.91754129219055,26.94806259536743,26.978583898544308,27.00910520172119,27.03962650489807,27.07014780807495,27.10066911125183,27.13119041442871,27.161711717605588,27.192233020782467,27.22275432395935,27.25327562713623,27.28379693031311,27.31431823348999,27.344839536666868,27.375360839843747,27.405882143020627,27.43640344619751,27.46692474937439,27.49744605255127,27.527967355728148,27.558488658905027,27.589009962081906,27.619531265258786,27.650052568435665,27.68057387161255,27.711095174789428,27.741616477966307,27.772137781143186,27.802659084320066,27.833180387496945,27.863701690673825,27.894222993850708,27.924744297027587,27.955265600204466,27.985786903381346,28.016308206558225,28.046829509735105,28.077350812911984,28.107872116088867,28.138393419265746,28.168914722442626,28.199436025619505,28.229957328796385,28.260478631973264,28.290999935150143,28.321521238327023,28.352042541503906,28.382563844680785,28.413085147857664,28.443606451034544,28.474127754211423,28.504649057388303,28.535170360565182,28.565691663742065,28.596212966918944,28.626734270095824,28.657255573272703,28.687776876449583,28.718298179626462,28.74881948280334,28.77934078598022,28.809862089157104,28.840383392333983,28.870904695510863,28.901425998687742,28.93194730186462,28.9624686050415,28.99298990821838,29.023511211395263,29.054032514572143,29.084553817749022,29.1150751209259,29.14559642410278,29.17611772727966,29.20663903045654,29.237160333633422,29.267681636810302,29.29820293998718,29.32872424316406,29.35924554634094,29.38976684951782,29.4202881526947,29.45080945587158,29.48133075904846,29.51185206222534,29.54237336540222,29.5728946685791,29.60341597175598,29.63393727493286,29.664458578109738,29.69497988128662,29.7255011844635,29.75602248764038,29.78654379081726,29.817065093994138,29.847586397171018,29.878107700347897,29.90862900352478,29.93915030670166,29.96967160987854,30.000192913055418,30.030714216232298,30.061235519409177,30.091756822586056,30.122278125762936,30.15279942893982,30.183320732116698,30.213842035293577,30.244363338470457,30.274884641647336,30.305405944824216,30.335927248001095,30.366448551177978,30.396969854354857,30.427491157531737,30.458012460708616,30.488533763885496,30.519055067062375,30.549576370239254,30.580097673416137,30.610618976593017,30.641140279769896,30.671661582946776,30.702182886123655,30.732704189300534,30.763225492477414,30.793746795654293,30.824268098831176,30.854789402008056,30.885310705184935,30.915832008361814,30.946353311538694,30.976874614715573,31.007395917892453,31.037917221069335,31.068438524246215,31.098959827423094,31.129481130599974,31.160002433776853,31.190523736953732,31.221045040130612,31.25156634330749,31.282087646484374,31.312608949661254,31.343130252838133,31.373651556015012,31.404172859191892,31.43469416236877,31.46521546554565,31.495736768722534,31.526258071899413,31.556779375076292,31.587300678253172,31.61782198143005,31.64834328460693,31.67886458778381,31.709385890960693,31.739907194137572,31.77042849731445,31.80094980049133,31.83147110366821,31.86199240684509,31.89251371002197,31.92303501319885,31.95355631637573,31.98407761955261,32.01459892272949,32.04512022590637,32.07564152908325,32.10616283226013,32.13668413543701,32.16720543861389,32.197726741790774,32.22824804496765,32.25876934814453,32.28929065132141,32.31981195449829,32.35033325767517,32.38085456085205,32.41137586402893,32.44189716720581,32.47241847038269,32.50293977355957,32.53346107673645,32.56398237991333,32.59450368309021,32.62502498626709,32.65554628944397,32.68606759262085,32.71658889579773,32.74711019897461,32.777631502151486,32.80815280532837,32.83867410850525,32.86919541168213,32.89971671485901,32.93023801803589,32.96075932121277,32.991280624389645,33.02180192756653,33.052323230743404,33.08284453392029,33.11336583709717,33.143887140274046,33.17440844345093,33.204929746627805,33.23545104980469,33.265972352981564,33.29649365615845,33.32701495933533,33.357536262512205,33.38805756568909,33.418578868865964,33.44910017204285,33.47962147521972,33.510142778396606,33.54066408157349,33.571185384750365,33.60170668792725,33.63222799110412,33.66274929428101,33.69327059745788,33.723791900634765,33.75431320381165,33.784834506988524,33.81535581016541,33.84587711334228,33.876398416519166,33.90691971969604,33.937441022872925,33.96796232604981,33.99848362922668,34.029004932403566,34.05952623558044,34.090047538757325,34.1205688419342,34.151090145111084,34.18161144828797,34.21213275146484,34.242654054641726,34.2731753578186,34.303696660995485,34.33421796417236,34.36473926734924,34.39526057052612,34.425781873703,34.456303176879885,34.48682448005676,34.517345783233644,34.54786708641052,34.5783883895874,34.60890969276428,34.63943099594116,34.669952299118044,34.70047360229492,34.7309949054718,34.76151620864868,34.79203751182556,34.82255881500244,34.85308011817932,34.883601421356204,34.91412272453308,34.94464402770996,34.97516533088684,35.00568663406372,35.0362079372406,35.06672924041748,35.09725054359436,35.12777184677124,35.15829314994812,35.188814453125,35.21933575630188,35.24985705947876,35.28037836265564,35.31089966583252,35.3414209690094,35.37194227218628,35.40246357536316,35.43298487854004,35.463506181716916,35.4940274848938,35.524548788070675,35.55507009124756,35.58559139442444,35.61611269760132,35.6466340007782,35.677155303955075,35.70767660713196,35.738197910308834,35.76871921348572,35.7992405166626,35.829761819839476,35.86028312301636,35.890804426193235,35.92132572937012,35.951847032547,35.982368335723876,36.01288963890076,36.043410942077635,36.07393224525452,36.1044535484314,36.13497485160828,36.16549615478516,36.196017457962036,36.22653876113892,36.257060064315795,36.28758136749268,36.31810267066956,36.348623973846436,36.37914527702332,36.409666580200195,36.44018788337708,36.470709186553954,36.50123048973084,36.53175179290771,36.562273096084596,36.59279439926148,36.623315702438354,36.65383700561524,36.68435830879211,36.714879611968996,36.74540091514587,36.775922218322755,36.80644352149964,36.836964824676514,36.8674861278534,36.89800743103027,36.928528734207156,36.95905003738403,36.989571340560914,37.0200926437378,37.05061394691467,37.081135250091556,37.11165655326843,37.142177856445315,37.17269915962219,37.203220462799074,37.23374176597596,37.26426306915283,37.294784372329715,37.32530567550659,37.355826978683474,37.38634828186035,37.41686958503723,37.447390888214116,37.47791219139099,37.508433494567875,37.53895479774475,37.569476100921634,37.59999740409851,37.63051870727539,37.66104001045227,37.69156131362915,37.722082616806034,37.75260391998291,37.78312522315979,37.81364652633667,37.84416782951355,37.87468913269043,37.90521043586731,37.93573173904419,37.96625304222107,37.99677434539795,38.02729564857483,38.05781695175171,38.08833825492859,38.11885955810547,38.14938086128235,38.17990216445923,38.21042346763611,38.24094477081299,38.27146607398987,38.301987377166746,38.33250868034363,38.36302998352051,38.39355128669739,38.42407258987427,38.45459389305115,38.48511519622803,38.515636499404906,38.54615780258179,38.57667910575867,38.60720040893555,38.63772171211243,38.668243015289306,38.69876431846619,38.729285621643065,38.75980692481995,38.79032822799683,38.82084953117371,38.85137083435059,38.881892137527466,38.91241344070435,38.942934743881224,38.97345604705811,39.00397735023498,39.034498653411866,39.06501995658875,39.095541259765625,39.12606256294251,39.156583866119384,39.18710516929627,39.21762647247314,39.248147775650025,39.27866907882691,39.309190382003784,39.33971168518067,39.37023298835754,39.400754291534426,39.4312755947113,39.461796897888185,39.49231820106507,39.522839504241944,39.55336080741883,39.5838821105957,39.614403413772585,39.64492471694946,39.675446020126344,39.70596732330323,39.7364886264801,39.767009929656986,39.79753123283386,39.828052536010745,39.85857383918762,39.8890951423645,39.919616445541386,39.95013774871826,39.980659051895145,40.01118035507202,40.041701658248904,40.07222296142578,40.10274426460266,40.13326556777954,40.16378687095642,40.194308174133305,40.22482947731018,40.25535078048706,40.28587208366394,40.31639338684082,40.3469146900177,40.37743599319458,40.407957296371464,40.43847859954834,40.46899990272522,40.4995212059021,40.53004250907898,40.56056381225586,40.59108511543274,40.62160641860962,40.6521277217865,40.68264902496338,40.71317032814026,40.74369163131714,40.77421293449402,40.8047342376709,40.83525554084778,40.86577684402466,40.89629814720154,40.92681945037842,40.9573407535553,40.987862056732176,41.01838335990906,41.04890466308594,41.07942596626282,41.1099472694397,41.14046857261658,41.17098987579346,41.201511178970335,41.23203248214722,41.2625537853241,41.29307508850098,41.32359639167786,41.354117694854736,41.38463899803162,41.415160301208495,41.44568160438538,41.476202907562254,41.50672421073914,41.53724551391602,41.567766817092895,41.59828812026978,41.628809423446654,41.65933072662354,41.68985202980041,41.720373332977296,41.75089463615418,41.781415939331055,41.81193724250794,41.84245854568481,41.872979848861696,41.90350115203857,41.934022455215455,41.96454375839234,41.995065061569214,42.0255863647461,42.05610766792297,42.086628971099856,42.11715027427673,42.147671577453615,42.1781928806305,42.20871418380737,42.239235486984256,42.26975679016113,42.300278093338015,42.33079939651489,42.361320699691774,42.39184200286866,42.42236330604553,42.452884609222416,42.48340591239929,42.513927215576174,42.54444851875305,42.57496982192993,42.60549112510681,42.63601242828369,42.666533731460575,42.69705503463745,42.727576337814334,42.75809764099121,42.78861894416809,42.81914024734497,42.84966155052185,42.880182853698734,42.91070415687561,42.94122546005249,42.97174676322937,43.00226806640625,43.03278936958313,43.06331067276001,43.093831975936894,43.12435327911377,43.15487458229065,43.18539588546753,43.21591718864441,43.24643849182129,43.27695979499817,43.30748109817505,43.33800240135193,43.36852370452881,43.39904500770569,43.42956631088257,43.46008761405945,43.49060891723633,43.52113022041321,43.55165152359009,43.58217282676697,43.61269412994385,43.64321543312073,43.673736736297606,43.70425803947449,43.73477934265137,43.76530064582825,43.79582194900513,43.826343252182006,43.85686455535889,43.887385858535765,43.91790716171265,43.948428464889524,43.97894976806641,44.00947107124329,44.039992374420166,44.07051367759705,44.101034980773925,44.13155628395081,44.16207758712768,44.192598890304566,44.22312019348145,44.253641496658325,44.28416279983521,44.314684103012084,44.34520540618897,44.37572670936584,44.406248012542726,44.43676931571961,44.467290618896484,44.49781192207337,44.52833322525024,44.558854528427126,44.589375831604,44.619897134780885,44.65041843795777,44.680939741134644,44.71146104431153,44.7419823474884,44.772503650665286,44.80302495384216,44.833546257019044,44.86406756019593,44.8945888633728,44.925110166549686,44.95563146972656,44.986152772903445,45.01667407608032,45.047195379257204,45.07771668243408,45.10823798561096,45.138759288787845,45.16928059196472,45.199801895141604,45.23032319831848,45.26084450149536,45.29136580467224,45.32188710784912,45.352408411026005,45.38292971420288,45.413451017379764,45.44397232055664,45.47449362373352,45.5050149269104,45.53553623008728,45.566057533264164,45.59657883644104,45.62710013961792,45.6576214427948,45.68814274597168,45.71866404914856,45.74918535232544,45.77970665550232,45.8102279586792,45.84074926185608,45.87127056503296,45.90179186820984,45.93231317138672,45.9628344745636,45.99335577774048,46.02387708091736,46.05439838409424,46.08491968727112,46.115440990448,46.145962293624876,46.17648359680176,46.20700489997864,46.23752620315552,46.2680475063324,46.29856880950928,46.32909011268616,46.359611415863036,46.39013271903992,46.420654022216794,46.45117532539368,46.48169662857056,46.512217931747436,46.54273923492432,46.573260538101195,46.60378184127808,46.634303144454954,46.66482444763184,46.69534575080872,46.725867053985596,46.75638835716248,46.786909660339354,46.81743096351624,46.84795226669311,46.878473569869996,46.90899487304688,46.939516176223755,46.97003747940064,47.000558782577514,47.0310800857544,47.06160138893127,47.092122692108155,47.12264399528504,47.153165298461914,47.1836866016388,47.21420790481567,47.244729207992556,47.27525051116943,47.305771814346315,47.3362931175232,47.366814420700074,47.39733572387696,47.42785702705383,47.458378330230715,47.48889963340759,47.519420936584474,47.54994223976135,47.58046354293823,47.610984846115116,47.64150614929199,47.672027452468875,47.70254875564575,47.73307005882263,47.76359136199951,47.79411266517639,47.824633968353275,47.85515527153015,47.885676574707034,47.91619787788391,47.94671918106079,47.97724048423767,48.00776178741455,48.038283090591435,48.06880439376831,48.09932569694519,48.12984700012207,48.16036830329895,48.19088960647583,48.22141090965271,48.251932212829594,48.28245351600647,48.31297481918335,48.34349612236023,48.37401742553711,48.40453872871399,48.43506003189087,48.46558133506775,48.49610263824463,48.52662394142151,48.55714524459839,48.58766654777527,48.61818785095215,48.64870915412903,48.679230457305906,48.70975176048279,48.74027306365967,48.77079436683655,48.80131567001343,48.831836973190306,48.86235827636719,48.892879579544065,48.92340088272095,48.95392218589783,48.98444348907471,49.01496479225159,49.045486095428465,49.07600739860535,49.106528701782224,49.13705000495911,49.16757130813599,49.198092611312866,49.22861391448975,49.259135217666625,49.28965652084351,49.320177824020384,49.35069912719727,49.38122043037415,49.411741733551025,49.44226303672791,49.472784339904784,49.50330564308167,49.53382694625854,49.564348249435426,49.59486955261231,49.625390855789185,49.65591215896607,49.68643346214294,49.71695476531983,49.7474760684967,49.777997371673585,49.80851867485047,49.839039978027344,49.86956128120423,49.9000825843811,49.930603887557986,49.96112519073486,49.991646493911745,50.02216779708862,50.0526891002655,50.083210403442386,50.11373170661926,50.144253009796145,50.17477431297302,50.205295616149904,50.23581691932678,50.26633822250366,50.296859525680546,50.32738082885742,50.357902132034305,50.38842343521118,50.41894473838806,50.44946604156494,50.47998734474182,50.510508647918705,50.54102995109558,50.571551254272464,50.60207255744934,50.63259386062622,50.6631151638031,50.69363646697998,50.724157770156864,50.75467907333374,50.78520037651062,50.8157216796875,50.84624298286438,50.87676428604126,50.90728558921814,50.937806892395024,50.9683281955719,50.99884949874878,51.02937080192566,51.05989210510254,51.09041340827942,51.1209347114563,51.151456014633176,51.18197731781006,51.21249862098694,51.24301992416382,51.2735412273407,51.30406253051758,51.33458383369446,51.365105136871335,51.39562644004822,51.4261477432251,51.45666904640198,51.48719034957886,51.517711652755736,51.54823295593262,51.578754259109495,51.60927556228638,51.63979686546326,51.67031816864014,51.70083947181702,51.731360774993895,51.76188207817078,51.792403381347654,51.82292468452454,51.85344598770142,51.883967290878296,51.91448859405518,51.945009897232055,51.97553120040894,52.00605250358581,52.036573806762696,52.06709510993958,52.097616413116455,52.12813771629334,52.158659019470214,52.1891803226471,52.21970162582397,52.250222929000856,52.28074423217774,52.311265535354615,52.3417868385315,52.37230814170837,52.402829444885256,52.43335074806213,52.463872051239015,52.49439335441589,52.524914657592774,52.55543596076966,52.58595726394653,52.616478567123416,52.64699987030029,52.677521173477174,52.70804247665405,52.73856377983093,52.769085083007816,52.79960638618469,52.830127689361575,52.86064899253845,52.891170295715334,52.92169159889221,52.95221290206909,52.982734205245976,53.01325550842285,53.043776811599734,53.07429811477661,53.10481941795349,53.13534072113037,53.16586202430725,53.196383327484135,53.22690463066101,53.257425933837894,53.28794723701477,53.31846854019165,53.34898984336853,53.37951114654541,53.410032449722294,53.44055375289917,53.47107505607605,53.50159635925293,53.53211766242981,53.56263896560669,53.59316026878357,53.62368157196045,53.65420287513733,53.68472417831421,53.71524548149109,53.74576678466797,53.77628808784485,53.80680939102173,53.837330694198606,53.86785199737549,53.89837330055237,53.92889460372925,53.95941590690613,53.989937210083006,54.02045851325989,54.050979816436765,54.08150111961365,54.11202242279053,54.14254372596741,54.17306502914429,54.203586332321166,54.23410763549805,54.264628938674925,54.29515024185181,54.32567154502869,54.356192848205566,54.38671415138245,54.417235454559325,54.44775675773621,54.478278060913084,54.50879936408997,54.53932066726685,54.569841970443726,54.60036327362061,54.630884576797484,54.66140587997437,54.69192718315124,54.722448486328126,54.75296978950501,54.783491092681885,54.81401239585877,54.844533699035644,54.87505500221253,54.9055763053894,54.936097608566286,54.96661891174316,54.997140214920044,55.02766151809693,55.0581828212738,55.088704124450686,55.11922542762756,55.149746730804445,55.18026803398132,55.210789337158204,55.24131064033509,55.27183194351196,55.302353246688845,55.33287454986572,55.363395853042604,55.39391715621948,55.42443845939636,55.454959762573246,55.48548106575012,55.516002368927005,55.54652367210388,55.577044975280764,55.60756627845764,55.63808758163452,55.668608884811405,55.69913018798828,55.729651491165164,55.76017279434204,55.79069409751892,55.8212154006958,55.85173670387268,55.882258007049565,55.91277931022644,55.94330061340332,55.9738219165802,56.00434321975708,56.03486452293396,56.06538582611084,56.09590712928772,56.1264284324646,56.15694973564148,56.18747103881836,56.21799234199524,56.24851364517212,56.279034948349,56.309556251525876,56.34007755470276,56.37059885787964,56.40112016105652,56.4316414642334,56.46216276741028,56.49268407058716,56.523205373764036,56.55372667694092,56.5842479801178,56.61476928329468,56.64529058647156,56.675811889648436,56.70633319282532,56.736854496002195,56.76737579917908,56.79789710235596,56.82841840553284,56.85893970870972,56.889461011886596,56.91998231506348,56.950503618240354,56.98102492141724,57.01154622459412,57.042067527770996,57.07258883094788,57.103110134124755,57.13363143730164,57.164152740478514,57.1946740436554,57.22519534683228,57.255716650009155,57.28623795318604,57.316759256362914,57.3472805595398,57.37780186271667,57.408323165893556,57.43884446907043,57.469365772247315,57.4998870754242,57.530408378601074,57.56092968177796,57.59145098495483,57.621972288131715,57.65249359130859,57.683014894485474,57.71353619766236,57.74405750083923,57.774578804016116,57.80510010719299,57.835621410369875,57.86614271354675,57.89666401672363,57.927185319900516,57.95770662307739,57.988227926254275,58.01874922943115,58.049270532608034,58.07979183578491,58.11031313896179,58.140834442138676,58.17135574531555,58.201877048492435,58.23239835166931,58.26291965484619,58.29344095802307,58.32396226119995,58.354483564376835,58.38500486755371,58.415526170730594,58.44604747390747,58.47656877708435,58.50709008026123,58.53761138343811,58.56813268661499,58.59865398979187,58.62917529296875,58.65969659614563,58.69021789932251,58.72073920249939,58.75126050567627,58.78178180885315,58.81230311203003,58.84282441520691,58.87334571838379,58.90386702156067,58.93438832473755,58.96490962791443,58.995430931091306,59.02595223426819,59.05647353744507,59.08699484062195,59.11751614379883,59.14803744697571,59.17855875015259,59.209080053329465,59.23960135650635,59.27012265968323,59.30064396286011,59.33116526603699,59.361686569213866,59.39220787239075,59.422729175567625,59.45325047874451,59.48377178192139,59.51429308509827,59.54481438827515,59.575335691452025,59.60585699462891,59.636378297805784,59.66689960098267,59.69742090415955,59.727942207336426,59.75846351051331,59.788984813690185,59.81950611686707,59.85002742004394,59.880548723220826,59.9110700263977,59.941591329574585,59.97211263275147,60.002633935928344,60.03315523910523,60.0636765422821,60.094197845458986,60.12471914863586,60.155240451812745,60.18576175498963,60.2162830581665,60.246804361343386,60.27732566452026,60.307846967697145,60.33836827087402,60.368889574050904,60.39941087722779,60.42993218040466,60.460453483581546,60.49097478675842,60.521496089935304,60.55201739311218,60.58253869628906,60.613059999465946,60.64358130264282,60.674102605819705,60.70462390899658,60.735145212173464,60.76566651535034,60.79618781852722,60.826709121704106,60.85723042488098,60.887751728057864,60.91827303123474,60.94879433441162,60.9793156375885,61.00983694076538,61.04035824394226,61.07087954711914,61.101400850296024,61.1319221534729,61.16244345664978,61.19296475982666,61.22348606300354,61.25400736618042,61.2845286693573,61.31504997253418,61.34557127571106,61.37609257888794,61.40661388206482,61.4371351852417,61.46765648841858,61.49817779159546,61.52869909477234,61.55922039794922,61.5897417011261,61.62026300430298,61.65078430747986,61.681305610656736,61.71182691383362,61.7423482170105,61.77286952018738,61.80339082336426,61.833912126541136,61.86443342971802,61.894954732894895,61.92547603607178,61.95599733924866,61.98651864242554,62.01703994560242,62.047561248779296,62.07808255195618,62.108603855133055,62.13912515830994,62.16964646148681,62.200167764663696,62.23068906784058,62.261210371017455,62.29173167419434,62.322252977371214,62.3527742805481,62.38329558372497,62.413816886901856,62.44433819007874,62.474859493255614,62.5053807964325,62.53590209960937,62.566423402786256,62.59694470596313,62.627466009140015,62.6579873123169,62.688508615493774,62.71902991867066,62.74955122184753,62.780072525024416,62.81059382820129,62.841115131378174,62.87163643455506,62.90215773773193,62.932679040908816,62.96320034408569,62.993721647262575,63.02424295043945,63.054764253616334,63.08528555679322,63.11580685997009,63.146328163146975,63.17684946632385,63.207370769500734,63.23789207267761,63.26841337585449,63.298934679031376,63.32945598220825,63.359977285385135,63.39049858856201,63.421019891738894,63.45154119491577,63.48206249809265,63.51258380126953,63.54310510444641,63.573626407623294,63.60414771080017,63.63466901397705,63.66519031715393,63.69571162033081,63.72623292350769,63.75675422668457,63.78727552986145,63.81779683303833,63.84831813621521,63.87883943939209,63.90936074256897,63.93988204574585,63.97040334892273,64.00092465209961,64.03144595527648,64.06196725845336,64.09248856163025,64.12300986480713,64.153531167984,64.18405247116088,64.21457377433777,64.24509507751465,64.27561638069153,64.3061376838684,64.33665898704528,64.36718029022217,64.39770159339905,64.42822289657593,64.4587441997528,64.48926550292968,64.51978680610657,64.55030810928345,64.58082941246032,64.6113507156372,64.64187201881408,64.67239332199097,64.70291462516785,64.73343592834472,64.7639572315216,64.79447853469848,64.82499983787537,64.85552114105224,64.88604244422912,64.916563747406,64.94708505058288,64.97760635375977,65.00812765693664,65.03864896011352,65.0691702632904,65.09969156646729,65.13021286964417,65.16073417282104,65.19125547599792,65.2217767791748,65.25229808235169,65.28281938552855,65.31334068870544,65.34386199188232,65.3743832950592,65.40490459823609,65.43542590141296,65.46594720458984,65.49646850776672,65.5269898109436,65.55751111412049,65.58803241729736,65.61855372047424,65.64907502365112,65.679596326828,65.71011763000487,65.74063893318176,65.77116023635864,65.80168153953552,65.8322028427124,65.86272414588927,65.89324544906616,65.92376675224304,65.95428805541992,65.98480935859679,66.01533066177367,66.04585196495056,66.07637326812744,66.10689457130432,66.13741587448119,66.16793717765808,66.19845848083496,66.22897978401184,66.25950108718872,66.29002239036559,66.32054369354248,66.35106499671936,66.38158629989624,66.41210760307311,66.44262890625,66.47315020942688,66.50367151260376,66.53419281578064,66.56471411895751,66.5952354221344,66.62575672531128,66.65627802848816,66.68679933166504,66.71732063484191,66.7478419380188,66.77836324119568,66.80888454437256,66.83940584754943,66.86992715072631,66.9004484539032,66.93096975708008,66.96149106025696,66.99201236343383,67.02253366661071,67.0530549697876,67.08357627296448,67.11409757614135,67.14461887931823,67.17514018249511,67.205661485672,67.23618278884888,67.26670409202575,67.29722539520263,67.32774669837951,67.3582680015564,67.38878930473328,67.41931060791015,67.44983191108703,67.48035321426391,67.5108745174408,67.54139582061767,67.57191712379455,67.60243842697143,67.63295973014831,67.6634810333252,67.69400233650207,67.72452363967895,67.75504494285583,67.78556624603272,67.8160875492096,67.84660885238647,67.87713015556335,67.90765145874023,67.93817276191712,67.968694065094,67.99921536827087,68.02973667144775,68.06025797462463,68.09077927780152,68.1213005809784,68.15182188415527,68.18234318733215,68.21286449050903,68.24338579368592,68.2739070968628,68.30442840003967,68.33494970321655,68.36547100639343,68.39599230957032,68.42651361274719,68.45703491592407,68.48755621910095,68.51807752227784,68.54859882545472,68.57912012863159,68.60964143180847,68.64016273498535,68.67068403816224,68.70120534133912,68.73172664451599,68.76224794769287,68.79276925086975,68.82329055404664,68.8538118572235,68.88433316040039,68.91485446357727,68.94537576675415,68.97589706993104,69.0064183731079,69.03693967628479,69.06746097946167,69.09798228263855,69.12850358581542,69.1590248889923,69.18954619216919,69.22006749534607,69.25058879852295,69.28111010169982,69.3116314048767,69.34215270805359,69.37267401123047,69.40319531440736,69.43371661758422,69.46423792076111,69.49475922393799,69.52528052711487,69.55580183029174,69.58632313346862,69.61684443664551,69.64736573982239,69.67788704299927,69.70840834617614,69.73892964935303,69.76945095252991,69.79997225570679,69.83049355888367,69.86101486206054,69.89153616523743,69.92205746841431,69.95257877159119,69.98310007476806,70.01362137794494,70.04414268112183,70.07466398429871,70.10518528747559,70.13570659065246,70.16622789382934,70.19674919700623,70.22727050018311,70.25779180335998,70.28831310653686,70.31883440971374,70.34935571289063,70.37987701606751,70.41039831924438,70.44091962242126,70.47144092559815,70.50196222877503,70.53248353195191,70.56300483512878,70.59352613830566,70.62404744148255,70.65456874465943,70.6850900478363,70.71561135101318,70.74613265419006,70.77665395736695,70.80717526054383,70.8376965637207,70.86821786689758,70.89873917007446,70.92926047325135,70.95978177642823,70.9903030796051,71.02082438278198,71.05134568595886,71.08186698913575,71.11238829231262,71.1429095954895,71.17343089866638,71.20395220184326,71.23447350502015,71.26499480819702,71.2955161113739,71.32603741455078,71.35655871772767,71.38708002090453,71.41760132408142,71.4481226272583,71.47864393043518,71.50916523361207,71.53968653678893,71.57020783996582,71.6007291431427,71.63125044631958,71.66177174949647,71.69229305267334,71.72281435585022,71.7533356590271,71.78385696220398,71.81437826538085,71.84489956855774,71.87542087173462,71.9059421749115,71.93646347808838,71.96698478126525,71.99750608444214,72.02802738761902,72.0585486907959,72.08906999397279,72.11959129714965,72.15011260032654,72.18063390350342,72.2111552066803,72.24167650985717,72.27219781303405,72.30271911621094,72.33324041938782,72.3637617225647,72.39428302574157,72.42480432891846,72.45532563209534,72.48584693527222,72.5163682384491,72.54688954162597,72.57741084480286,72.60793214797974,72.63845345115662,72.66897475433349,72.69949605751037,72.73001736068726,72.76053866386414,72.79105996704102,72.82158127021789,72.85210257339477,72.88262387657166,72.91314517974854,72.94366648292541,72.97418778610229,73.00470908927917,73.03523039245606,73.06575169563294,73.09627299880981,73.12679430198669,73.15731560516357,73.18783690834046,73.21835821151734,73.24887951469421,73.27940081787109,73.30992212104798,73.34044342422486,73.37096472740173,73.40148603057861,73.4320073337555,73.46252863693238,73.49304994010926,73.52357124328613,73.55409254646301,73.5846138496399,73.61513515281678,73.64565645599366,73.67617775917053,73.70669906234741,73.7372203655243,73.76774166870118,73.79826297187805,73.82878427505493,73.85930557823181,73.8898268814087,73.92034818458558,73.95086948776245,73.98139079093933,74.01191209411621,74.0424333972931,74.07295470046996,74.10347600364685,74.13399730682373,74.16451861000061,74.1950399131775,74.22556121635436,74.25608251953125,74.28660382270813,74.31712512588501,74.3476464290619,74.37816773223877,74.40868903541565,74.43921033859253,74.46973164176941,74.50025294494628,74.53077424812317,74.56129555130005,74.59181685447693,74.62233815765381,74.65285946083068,74.68338076400757,74.71390206718445,74.74442337036133,74.77494467353822,74.80546597671508,74.83598727989197,74.86650858306885,74.89702988624573,74.9275511894226,74.95807249259948,74.98859379577637,75.01911509895325,75.04963640213013,75.080157705307,75.11067900848388,75.14120031166077,75.17172161483765,75.20224291801452,75.2327642211914,75.26328552436829,75.29380682754517,75.32432813072205,75.35484943389892,75.3853707370758,75.41589204025269,75.44641334342957,75.47693464660645,75.50745594978332,75.5379772529602,75.56849855613709,75.59901985931397,75.62954116249084,75.66006246566772,75.6905837688446,75.72110507202149,75.75162637519837,75.78214767837524,75.81266898155212,75.843190284729,75.87371158790589,75.90423289108277,75.93475419425964,75.96527549743652,75.9957968006134,76.02631810379029,76.05683940696716,76.08736071014404,76.11788201332092,76.1484033164978,76.17892461967469,76.20944592285156,76.23996722602844,76.27048852920532,76.3010098323822,76.33153113555908,76.36205243873596,76.39257374191284,76.42309504508972,76.4536163482666,76.48413765144348,76.51465895462036,76.54518025779724,76.57570156097412,76.60622286415101,76.63674416732788,76.66726547050476,76.69778677368164,76.72830807685853,76.7588293800354,76.78935068321228,76.81987198638916,76.85039328956604,76.88091459274293,76.9114358959198,76.94195719909668,76.97247850227356,77.00299980545044,77.03352110862733,77.0640424118042,77.09456371498108,77.12508501815796,77.15560632133484,77.18612762451171,77.2166489276886,77.24717023086548,77.27769153404236,77.30821283721924,77.33873414039611,77.369255443573,77.39977674674988,77.43029804992676,77.46081935310364,77.49134065628051,77.5218619594574,77.55238326263428,77.58290456581116,77.61342586898803,77.64394717216491,77.6744684753418,77.70498977851868,77.73551108169556,77.76603238487243,77.79655368804931,77.8270749912262,77.85759629440308,77.88811759757995,77.91863890075683,77.94916020393372,77.9796815071106,78.01020281028748,78.04072411346435,78.07124541664123,78.10176671981812,78.132288022995,78.16280932617188,78.19333062934875,78.22385193252563,78.25437323570252,78.2848945388794,78.31541584205627,78.34593714523315,78.37645844841003,78.40697975158692,78.4375010547638,78.46802235794067,78.49854366111755,78.52906496429443,78.55958626747132,78.5901075706482,78.62062887382507,78.65115017700195,78.68167148017884,78.71219278335572,78.74271408653259,78.77323538970947,78.80375669288635,78.83427799606324,78.86479929924012,78.89532060241699,78.92584190559387,78.95636320877075,78.98688451194764,79.0174058151245,79.04792711830139,79.07844842147827,79.10896972465515,79.13949102783204,79.1700123310089,79.20053363418579,79.23105493736267,79.26157624053955,79.29209754371644,79.3226188468933,79.35314015007019,79.38366145324707,79.41418275642395,79.44470405960082,79.4752253627777,79.50574666595459,79.53626796913147,79.56678927230836,79.59731057548522,79.6278318786621,79.65835318183899,79.68887448501587,79.71939578819276,79.74991709136962,79.78043839454651,79.81095969772339,79.84148100090027,79.87200230407714,79.90252360725403,79.93304491043091,79.96356621360779,79.99408751678467,80.02460881996154,80.05513012313843,80.08565142631531,80.11617272949219,80.14669403266906,80.17721533584594,80.20773663902283,80.23825794219971,80.26877924537659,80.29930054855346,80.32982185173034,80.36034315490723,80.39086445808411,80.42138576126099,80.45190706443786,80.48242836761474,80.51294967079163,80.54347097396851,80.57399227714538,80.60451358032226,80.63503488349915,80.66555618667603,80.69607748985291,80.72659879302978,80.75712009620666,80.78764139938355,80.81816270256043,80.84868400573731,80.87920530891418,80.90972661209106,80.94024791526795,80.97076921844483,81.0012905216217,81.03181182479858,81.06233312797546,81.09285443115235,81.12337573432923,81.1538970375061,81.18441834068298,81.21493964385986,81.24546094703675,81.27598225021362,81.3065035533905,81.33702485656738,81.36754615974426,81.39806746292115,81.42858876609802,81.4591100692749,81.48963137245178,81.52015267562867,81.55067397880555,81.58119528198242,81.6117165851593,81.64223788833618,81.67275919151307,81.70328049468993,81.73380179786682,81.7643231010437,81.79484440422058,81.82536570739747,81.85588701057434,81.88640831375122,81.9169296169281,81.94745092010498,81.97797222328187,82.00849352645874,82.03901482963562,82.0695361328125,82.10005743598938,82.13057873916625,82.16110004234314,82.19162134552002,82.2221426486969,82.25266395187379,82.28318525505065,82.31370655822754,82.34422786140442,82.3747491645813,82.40527046775817,82.43579177093505,82.46631307411194,82.49683437728882,82.5273556804657,82.55787698364257,82.58839828681946,82.61891958999634,82.64944089317322,82.6799621963501,82.71048349952697,82.74100480270386,82.77152610588074,82.80204740905762,82.83256871223449,82.86309001541137,82.89361131858826,82.92413262176514,82.95465392494202,82.98517522811889,83.01569653129577,83.04621783447266,83.07673913764954,83.10726044082642,83.13778174400329,83.16830304718017,83.19882435035706,83.22934565353394,83.25986695671081,83.29038825988769,83.32090956306457,83.35143086624146,83.38195216941834,83.41247347259521,83.44299477577209,83.47351607894898,83.50403738212586,83.53455868530274,83.56507998847961,83.5956012916565,83.62612259483338,83.65664389801026,83.68716520118713,83.71768650436401,83.7482078075409,83.77872911071778,83.80925041389466,83.83977171707153,83.87029302024841,83.9008143234253,83.93133562660218,83.96185692977905,83.99237823295593,84.02289953613281,84.0534208393097,84.08394214248658,84.11446344566345,84.14498474884033,84.17550605201721,84.2060273551941,84.23654865837098,84.26706996154785,84.29759126472473,84.32811256790161,84.3586338710785,84.38915517425536,84.41967647743225,84.45019778060913,84.48071908378601,84.5112403869629,84.54176169013977,84.57228299331665,84.60280429649353,84.63332559967041,84.6638469028473,84.69436820602417,84.72488950920105,84.75541081237793,84.78593211555481,84.81645341873168,84.84697472190857,84.87749602508545,84.90801732826233,84.93853863143922,84.96905993461608,84.99958123779297,85.03010254096985,85.06062384414673,85.0911451473236,85.12166645050048,85.15218775367737,85.18270905685425,85.21323036003113,85.243751663208,85.27427296638488,85.30479426956177,85.33531557273865,85.36583687591553,85.3963581790924,85.42687948226929,85.45740078544617,85.48792208862305,85.51844339179992,85.5489646949768,85.57948599815369,85.61000730133057,85.64052860450745,85.67104990768432,85.7015712108612,85.73209251403809,85.76261381721497,85.79313512039185,85.82365642356872,85.8541777267456,85.88469902992249,85.91522033309937,85.94574163627624,85.97626293945312,86.00678424263,86.03730554580689,86.06782684898377,86.09834815216064,86.12886945533752,86.1593907585144,86.18991206169129,86.22043336486816,86.25095466804504,86.28147597122192,86.3119972743988,86.34251857757569,86.37303988075256,86.40356118392944,86.43408248710632,86.4646037902832,86.49512509346009,86.52564639663696,86.55616769981384,86.58668900299072,86.6172103061676,86.64773160934448,86.67825291252136,86.70877421569824,86.73929551887512,86.76981682205201,86.80033812522888,86.83085942840576,86.86138073158264,86.89190203475953,86.92242333793641,86.95294464111328,86.98346594429016,87.01398724746704,87.04450855064393,87.0750298538208,87.10555115699768,87.13607246017456,87.16659376335144,87.19711506652833,87.2276363697052,87.25815767288208,87.28867897605896,87.31920027923584,87.34972158241271,87.3802428855896,87.41076418876648,87.44128549194336,87.47180679512024,87.50232809829711,87.532849401474,87.56337070465088,87.59389200782776,87.62441331100464,87.65493461418151,87.6854559173584,87.71597722053528,87.74649852371216,87.77701982688903,87.80754113006591,87.8380624332428,87.86858373641968,87.89910503959656,87.92962634277343,87.96014764595031,87.9906689491272,88.02119025230408,88.05171155548096,88.08223285865783,88.11275416183472,88.1432754650116,88.17379676818848,88.20431807136535,88.23483937454223,88.26536067771912,88.295881980896,88.32640328407288,88.35692458724975,88.38744589042663,88.41796719360352,88.4484884967804,88.47900979995728,88.50953110313415,88.54005240631103,88.57057370948792,88.6010950126648,88.63161631584167,88.66213761901855,88.69265892219543,88.72318022537232,88.7537015285492,88.78422283172607,88.81474413490295,88.84526543807984,88.87578674125672,88.90630804443359,88.93682934761047,88.96735065078735,88.99787195396424,89.02839325714112,89.05891456031799,89.08943586349487,89.11995716667175,89.15047846984864,89.18099977302552,89.21152107620239,89.24204237937927,89.27256368255615,89.30308498573304,89.3336062889099,89.36412759208679,89.39464889526367,89.42517019844055,89.45569150161744,89.4862128047943,89.51673410797119,89.54725541114807,89.57777671432495,89.60829801750184,89.6388193206787,89.66934062385559,89.69986192703247,89.73038323020936,89.76090453338622,89.7914258365631,89.82194713973999,89.85246844291687,89.88298974609376,89.91351104927062,89.94403235244751,89.97455365562439,90.00507495880127,90.03559626197814,90.06611756515503,90.09663886833191,90.12716017150879,90.15768147468567,90.18820277786254,90.21872408103943,90.24924538421631,90.27976668739319,90.31028799057007,90.34080929374694,90.37133059692383,90.40185190010071,90.43237320327759,90.46289450645446,90.49341580963134,90.52393711280823,90.55445841598511,90.58497971916199,90.61550102233886,90.64602232551574,90.67654362869263,90.70706493186951,90.7375862350464,90.76810753822326,90.79862884140015,90.82915014457703,90.85967144775391,90.89019275093078,90.92071405410766,90.95123535728455,90.98175666046143,91.01227796363831,91.04279926681518,91.07332056999206,91.10384187316895,91.13436317634583,91.1648844795227,91.19540578269958,91.22592708587646,91.25644838905335,91.28696969223023,91.3174909954071,91.34801229858398,91.37853360176086,91.40905490493775,91.43957620811463,91.4700975112915,91.50061881446838,91.53114011764526,91.56166142082215,91.59218272399902,91.6227040271759,91.65322533035278,91.68374663352967,91.71426793670655,91.74478923988342,91.7753105430603,91.80583184623718,91.83635314941407,91.86687445259095,91.89739575576782,91.9279170589447,91.95843836212158,91.98895966529847,92.01948096847534,92.05000227165222,92.0805235748291,92.11104487800598,92.14156618118287,92.17208748435974,92.20260878753662,92.2331300907135,92.26365139389038,92.29417269706725,92.32469400024414,92.35521530342102,92.3857366065979,92.41625790977479,92.44677921295165,92.47730051612854,92.50782181930542,92.5383431224823,92.56886442565919,92.59938572883605,92.62990703201294,92.66042833518982,92.6909496383667,92.72147094154357,92.75199224472046,92.78251354789734,92.81303485107422,92.8435561542511,92.87407745742797,92.90459876060486,92.93512006378174,92.96564136695862,92.9961626701355,93.02668397331237,93.05720527648926,93.08772657966614,93.11824788284302,93.14876918601989,93.17929048919677,93.20981179237366,93.24033309555054,93.27085439872742,93.30137570190429,93.33189700508117,93.36241830825806,93.39293961143494,93.42346091461181,93.45398221778869,93.48450352096557,93.51502482414246,93.54554612731934,93.57606743049621,93.60658873367309,93.63711003684998,93.66763134002686,93.69815264320374,93.72867394638061,93.7591952495575,93.78971655273438,93.82023785591126,93.85075915908813,93.88128046226501,93.9118017654419,93.94232306861878,93.97284437179566,94.00336567497253,94.03388697814941,94.0644082813263,94.09492958450318,94.12545088768006,94.15597219085693,94.18649349403381,94.2170147972107,94.24753610038758,94.27805740356445,94.30857870674133,94.33910000991821,94.3696213130951,94.40014261627198,94.43066391944885,94.46118522262573,94.49170652580261,94.5222278289795,94.55274913215638,94.58327043533325,94.61379173851013,94.64431304168701,94.6748343448639,94.70535564804077,94.73587695121765,94.76639825439453,94.79691955757141,94.8274408607483,94.85796216392517,94.88848346710205,94.91900477027893,94.94952607345581,94.98004737663268,95.01056867980957,95.04108998298645,95.07161128616333,95.10213258934021,95.13265389251708,95.16317519569397,95.19369649887085,95.22421780204773,95.25473910522462,95.28526040840148,95.31578171157837,95.34630301475525,95.37682431793213,95.407345621109,95.43786692428588,95.46838822746277,95.49890953063965,95.52943083381653,95.5599521369934,95.59047344017029,95.62099474334717,95.65151604652405,95.68203734970093,95.7125586528778,95.74307995605469,95.77360125923157,95.80412256240845,95.83464386558532,95.8651651687622,95.89568647193909,95.92620777511597,95.95672907829285,95.98725038146972,96.0177716846466,96.04829298782349,96.07881429100037,96.10933559417724,96.13985689735412,96.170378200531,96.20089950370789,96.23142080688477,96.26194211006164,96.29246341323852,96.3229847164154,96.35350601959229,96.38402732276917,96.41454862594604,96.44506992912292,96.4755912322998,96.50611253547669,96.53663383865356,96.56715514183044,96.59767644500732,96.6281977481842,96.65871905136109,96.68924035453796,96.71976165771484,96.75028296089172,96.7808042640686,96.81132556724549,96.84184687042236,96.87236817359924,96.90288947677612,96.93341077995301,96.96393208312988,96.99445338630676,97.02497468948364,97.05549599266052,97.08601729583741,97.11653859901428,97.14705990219116,97.17758120536804,97.20810250854493,97.2386238117218,97.26914511489868,97.29966641807556,97.33018772125244,97.36070902442933,97.3912303276062,97.42175163078308,97.45227293395996,97.48279423713684,97.51331554031373,97.5438368434906,97.57435814666748,97.60487944984436,97.63540075302124,97.66592205619811,97.696443359375,97.72696466255188,97.75748596572876,97.78800726890564,97.81852857208251,97.8490498752594,97.87957117843628,97.91009248161316,97.94061378479005,97.97113508796691,98.0016563911438,98.03217769432068,98.06269899749756,98.09322030067443,98.12374160385131,98.1542629070282,98.18478421020508,98.21530551338196,98.24582681655883,98.27634811973572,98.3068694229126,98.33739072608948,98.36791202926635,98.39843333244323,98.42895463562012,98.459475938797,98.48999724197388,98.52051854515075,98.55103984832763,98.58156115150452,98.6120824546814,98.64260375785828,98.67312506103515,98.70364636421203,98.73416766738892,98.7646889705658,98.79521027374267,98.82573157691955,98.85625288009643,98.88677418327332,98.9172954864502,98.94781678962707,98.97833809280395,99.00885939598083,99.03938069915772,99.0699020023346,99.10042330551147,99.13094460868835,99.16146591186524,99.19198721504212,99.22250851821899,99.25302982139587,99.28355112457275,99.31407242774964,99.34459373092652,99.37511503410339,99.40563633728027,99.43615764045715,99.46667894363404,99.49720024681092,99.52772154998779,99.55824285316467,99.58876415634155,99.61928545951844,99.6498067626953,99.68032806587219,99.71084936904907,99.74137067222595,99.77189197540284,99.8024132785797,99.83293458175659,99.86345588493347,99.89397718811036,99.92449849128722,99.9550197944641,99.98554109764099,100.01606240081787,100.04658370399476,100.07710500717162,100.10762631034851,100.13814761352539,100.16866891670227,100.19919021987916,100.22971152305603,100.26023282623291,100.29075412940979,100.32127543258667,100.35179673576354,100.38231803894043,100.41283934211731,100.44336064529419,100.47388194847107,100.50440325164794,100.53492455482483,100.56544585800171,100.59596716117859,100.62648846435548,100.65700976753234,100.68753107070923,100.71805237388611,100.74857367706299,100.77909498023986,100.80961628341674,100.84013758659363,100.87065888977051,100.9011801929474,100.93170149612426,100.96222279930114,100.99274410247803,101.02326540565491,101.05378670883178,101.08430801200866,101.11482931518555,101.14535061836243,101.17587192153931,101.20639322471618,101.23691452789306,101.26743583106995,101.29795713424683,101.32847843742371,101.35899974060058,101.38952104377746,101.42004234695435,101.45056365013123,101.4810849533081,101.51160625648498,101.54212755966186,101.57264886283875,101.60317016601563,101.6336914691925,101.66421277236938,101.69473407554626,101.72525537872315,101.75577668190003,101.7862979850769,101.81681928825378,101.84734059143067,101.87786189460755,101.90838319778442,101.9389045009613,101.96942580413818,101.99994710731507,102.03046841049195,102.06098971366882,102.0915110168457,102.12203232002258,102.15255362319947,102.18307492637634,102.21359622955322,102.2441175327301,102.27463883590698,102.30516013908387,102.33568144226074,102.36620274543762,102.3967240486145,102.42724535179138,102.45776665496827,102.48828795814514,102.51880926132202,102.5493305644989,102.57985186767579,102.61037317085265,102.64089447402954,102.67141577720642,102.7019370803833,102.73245838356019,102.76297968673705,102.79350098991394,102.82402229309082,102.8545435962677,102.88506489944459,102.91558620262145,102.94610750579834,102.97662880897522,103.0071501121521,103.03767141532897,103.06819271850586,103.09871402168274,103.12923532485962,103.1597566280365,103.19027793121337,103.22079923439026,103.25132053756714,103.28184184074402,103.31236314392089,103.34288444709777,103.37340575027466,103.40392705345154,103.43444835662842,103.46496965980529,103.49549096298217,103.52601226615906,103.55653356933594,103.58705487251282,103.61757617568969,103.64809747886657,103.67861878204346,103.70914008522034,103.73966138839721,103.77018269157409,103.80070399475098,103.83122529792786,103.86174660110474,103.89226790428161,103.9227892074585,103.95331051063538,103.98383181381226,104.01435311698914,104.04487442016601,104.0753957233429,104.10591702651978,104.13643832969666,104.16695963287353,104.19748093605041,104.2280022392273,104.25852354240418,104.28904484558106,104.31956614875793,104.35008745193481,104.3806087551117,104.41113005828858,104.44165136146545,104.47217266464233,104.50269396781921,104.5332152709961,104.56373657417298,104.59425787734985,104.62477918052673,104.65530048370361,104.6858217868805,104.71634309005738,104.74686439323425,104.77738569641113,104.80790699958801,104.8384283027649,104.86894960594176,104.89947090911865,104.92999221229553,104.96051351547241,104.9910348186493,105.02155612182617,105.05207742500305,105.08259872817993,105.11312003135681,105.1436413345337,105.17416263771057,105.20468394088745,105.23520524406433,105.26572654724121,105.29624785041808,105.32676915359497,105.35729045677185,105.38781175994873,105.41833306312562,105.44885436630248,105.47937566947937,105.50989697265625,105.54041827583313,105.57093957901002,105.60146088218688,105.63198218536377,105.66250348854065,105.69302479171753,105.7235460948944,105.75406739807129,105.78458870124817,105.81511000442505,105.84563130760193,105.8761526107788,105.90667391395569,105.93719521713257,105.96771652030945,105.99823782348632,106.0287591266632,106.05928042984009,106.08980173301697,106.12032303619385,106.15084433937072,106.1813656425476,106.21188694572449,106.24240824890137,106.27292955207825,106.30345085525512,106.333972158432,106.36449346160889,106.39501476478577,106.42553606796264,106.45605737113952,106.4865786743164,106.51709997749329,106.54762128067017,106.57814258384704,106.60866388702392,106.6391851902008,106.66970649337769,106.70022779655457,106.73074909973144,106.76127040290832,106.7917917060852,106.82231300926209,106.85283431243896,106.88335561561584,106.91387691879272,106.9443982219696,106.97491952514649,107.00544082832336,107.03596213150024,107.06648343467712,107.09700473785401,107.12752604103088,107.15804734420776,107.18856864738464,107.21908995056152,107.24961125373841,107.28013255691528,107.31065386009216,107.34117516326904,107.37169646644593,107.40221776962281,107.43273907279968,107.46326037597656,107.49378167915344,107.52430298233033,107.5548242855072,107.58534558868408,107.61586689186096,107.64638819503784,107.67690949821473,107.7074308013916,107.73795210456848,107.76847340774536,107.79899471092224,107.82951601409913,107.860037317276,107.89055862045288,107.92107992362976,107.95160122680664,107.98212252998351,108.0126438331604,108.04316513633728,108.07368643951416,108.10420774269105,108.13472904586791,108.1652503490448,108.19577165222168,108.22629295539856,108.25681425857543,108.28733556175231,108.3178568649292,108.34837816810608,108.37889947128296,108.40942077445983,108.43994207763672,108.4704633808136,108.50098468399048,108.53150598716736,108.56202729034423,108.59254859352112,108.623069896698,108.65359119987488,108.68411250305175,108.71463380622863,108.74515510940552,108.7756764125824,108.80619771575928,108.83671901893615,108.86724032211303,108.89776162528992,108.9282829284668,108.95880423164368,108.98932553482055,109.01984683799743,109.05036814117432,109.0808894443512,109.11141074752807,109.14193205070495,109.17245335388183,109.20297465705872,109.2334959602356,109.26401726341247,109.29453856658935,109.32505986976624,109.35558117294312,109.38610247611999,109.41662377929687,109.44714508247375,109.47766638565064,109.50818768882752,109.53870899200439,109.56923029518127,109.59975159835815,109.63027290153504,109.66079420471192,109.69131550788879,109.72183681106567,109.75235811424255,109.78287941741944,109.8134007205963,109.84392202377319,109.87444332695007,109.90496463012695,109.93548593330384,109.9660072364807,109.99652853965759,110.02704984283447,110.05757114601136,110.08809244918824,110.1186137523651,110.14913505554199,110.17965635871887,110.21017766189576,110.24069896507262,110.27122026824951,110.30174157142639,110.33226287460327,110.36278417778016,110.39330548095703,110.42382678413391,110.45434808731079,110.48486939048767,110.51539069366456,110.54591199684143,110.57643330001831,110.60695460319519,110.63747590637207,110.66799720954894,110.69851851272583,110.72903981590271,110.75956111907959,110.79008242225648,110.82060372543334,110.85112502861023,110.88164633178711,110.91216763496399,110.94268893814086,110.97321024131774,111.00373154449463,111.03425284767151,111.0647741508484,111.09529545402526,111.12581675720214,111.15633806037903,111.18685936355591,111.2173806667328,111.24790196990966,111.27842327308655,111.30894457626343,111.33946587944031,111.36998718261718,111.40050848579406,111.43102978897095,111.46155109214783,111.49207239532471,111.52259369850158,111.55311500167846,111.58363630485535,111.61415760803223,111.64467891120911,111.67520021438598,111.70572151756286,111.73624282073975,111.76676412391663,111.7972854270935,111.82780673027038,111.85832803344726,111.88884933662415,111.91937063980103,111.9498919429779,111.98041324615478,112.01093454933167,112.04145585250855,112.07197715568542,112.1024984588623,112.13301976203918,112.16354106521607,112.19406236839295,112.22458367156982,112.2551049747467,112.28562627792358,112.31614758110047,112.34666888427735,112.37719018745422,112.4077114906311,112.43823279380798,112.46875409698487,112.49927540016174,112.52979670333862,112.5603180065155,112.59083930969238,112.62136061286927,112.65188191604614,112.68240321922302,112.7129245223999,112.74344582557679,112.77396712875367,112.80448843193054,112.83500973510742,112.8655310382843,112.89605234146119,112.92657364463805,112.95709494781494,112.98761625099182,113.0181375541687,113.04865885734559,113.07918016052245,113.10970146369934,113.14022276687622,113.1707440700531,113.20126537322997,113.23178667640686,113.26230797958374,113.29282928276062,113.3233505859375,113.35387188911437,113.38439319229126,113.41491449546814,113.44543579864502,113.4759571018219,113.50647840499877,113.53699970817566,113.56752101135254,113.59804231452942,113.62856361770629,113.65908492088317,113.68960622406006,113.72012752723694,113.75064883041382,113.78117013359069,113.81169143676757,113.84221273994446,113.87273404312134,113.90325534629822,113.93377664947509,113.96429795265198,113.99481925582886,114.02534055900574,114.05586186218261,114.08638316535949,114.11690446853638,114.14742577171326,114.17794707489014,114.20846837806701,114.2389896812439,114.26951098442078,114.30003228759766,114.33055359077453,114.36107489395141,114.3915961971283,114.42211750030518,114.45263880348206,114.48316010665893,114.51368140983581,114.5442027130127,114.57472401618958,114.60524531936646,114.63576662254333,114.66628792572021,114.6968092288971,114.72733053207398,114.75785183525085,114.78837313842773,114.81889444160461,114.8494157447815,114.87993704795838,114.91045835113525,114.94097965431213,114.97150095748901,115.0020222606659,115.03254356384278,115.06306486701965,115.09358617019653,115.12410747337341,115.1546287765503,115.18515007972717,115.21567138290405,115.24619268608093,115.27671398925781,115.3072352924347,115.33775659561157,115.36827789878845,115.39879920196533,115.42932050514221,115.4598418083191,115.49036311149597,115.52088441467285,115.55140571784973,115.58192702102662,115.61244832420348,115.64296962738037,115.67349093055725,115.70401223373413,115.73453353691102,115.76505484008788,115.79557614326477,115.82609744644165,115.85661874961853,115.8871400527954,115.91766135597229,115.94818265914917,115.97870396232605,116.00922526550293,116.0397465686798,116.07026787185669,116.10078917503357,116.13131047821045,116.16183178138733,116.1923530845642,116.22287438774109,116.25339569091797,116.28391699409485,116.31443829727172,116.3449596004486,116.37548090362549,116.40600220680237,116.43652350997925,116.46704481315612,116.497566116333,116.52808741950989,116.55860872268677,116.58913002586365,116.61965132904052,116.6501726322174,116.68069393539429,116.71121523857117,116.74173654174804,116.77225784492492,116.8027791481018,116.83330045127869,116.86382175445557,116.89434305763244,116.92486436080932,116.9553856639862,116.98590696716309,117.01642827033996,117.04694957351684,117.07747087669372,117.1079921798706,117.13851348304749,117.16903478622436,117.19955608940124,117.23007739257812,117.26059869575501,117.29111999893189,117.32164130210876,117.35216260528564,117.38268390846252,117.41320521163941,117.44372651481628,117.47424781799316,117.50476912117004,117.53529042434693,117.56581172752381,117.59633303070068,117.62685433387756,117.65737563705444,117.68789694023133,117.71841824340821,117.74893954658508,117.77946084976196,117.80998215293884,117.84050345611573,117.8710247592926,117.90154606246948,117.93206736564636,117.96258866882324,117.99310997200013,118.023631275177,118.05415257835388,118.08467388153076,118.11519518470764,118.14571648788451,118.1762377910614,118.20675909423828,118.23728039741516,118.26780170059205,118.29832300376891,118.3288443069458,118.35936561012268,118.38988691329956,118.42040821647645,118.45092951965331,118.4814508228302,118.51197212600708,118.54249342918396,118.57301473236083,118.60353603553772,118.6340573387146,118.66457864189148,118.69509994506836,118.72562124824523,118.75614255142212,118.786663854599,118.81718515777588,118.84770646095276,118.87822776412963,118.90874906730652,118.9392703704834,118.96979167366028,119.00031297683715,119.03083428001403,119.06135558319092,119.0918768863678,119.12239818954468,119.15291949272155,119.18344079589843,119.21396209907532,119.2444834022522,119.27500470542907,119.30552600860595,119.33604731178283,119.36656861495972,119.3970899181366,119.42761122131347,119.45813252449035,119.48865382766724,119.51917513084412,119.549696434021,119.58021773719787,119.61073904037475,119.64126034355164,119.67178164672852,119.70230294990539,119.73282425308227,119.76334555625915,119.79386685943604,119.82438816261292,119.85490946578979,119.88543076896667,119.91595207214355,119.94647337532044,119.97699467849732,120.00751598167419,120.03803728485107,120.06855858802795,120.09907989120484,120.1296011943817,120.16012249755859,120.19064380073547,120.22116510391236,120.25168640708924,120.2822077102661,120.31272901344299,120.34325031661987,120.37377161979676,120.40429292297362,120.43481422615051,120.46533552932739,120.49585683250427,120.52637813568116,120.55689943885803,120.58742074203491,120.61794204521179,120.64846334838867,120.67898465156556,120.70950595474243,120.74002725791931,120.77054856109619,120.80106986427307,120.83159116744994,120.86211247062683,120.89263377380371,120.92315507698059,120.95367638015748,120.98419768333434,121.01471898651123,121.04524028968811,121.07576159286499,121.10628289604188,121.13680419921874,121.16732550239563,121.19784680557251,121.2283681087494,121.25888941192626,121.28941071510314,121.31993201828003,121.35045332145691,121.3809746246338,121.41149592781066,121.44201723098755,121.47253853416443,121.50305983734131,121.5335811405182,121.56410244369506,121.59462374687195,121.62514505004883,121.65566635322571,121.68618765640258,121.71670895957946,121.74723026275635,121.77775156593323,121.80827286911011,121.83879417228698,121.86931547546386,121.89983677864075,121.93035808181763,121.9608793849945,121.99140068817138,122.02192199134826,122.05244329452515,122.08296459770203,122.1134859008789,122.14400720405578,122.17452850723267,122.20504981040955,122.23557111358643,122.2660924167633,122.29661371994018,122.32713502311707,122.35765632629395,122.38817762947082,122.4186989326477,122.44922023582458,122.47974153900147,122.51026284217835,122.54078414535522,122.5713054485321,122.60182675170898,122.63234805488587,122.66286935806275,122.69339066123962,122.7239119644165,122.75443326759338,122.78495457077027,122.81547587394714,122.84599717712402,122.8765184803009,122.90703978347779,122.93756108665467,122.96808238983154,122.99860369300842,123.0291249961853,123.05964629936219,123.09016760253905,123.12068890571594,123.15121020889282,123.1817315120697,123.21225281524659,123.24277411842345,123.27329542160034,123.30381672477722,123.3343380279541,123.36485933113099,123.39538063430786,123.42590193748474,123.45642324066162,123.4869445438385,123.51746584701537,123.54798715019226,123.57850845336914,123.60902975654602,123.6395510597229,123.67007236289977,123.70059366607666,123.73111496925354,123.76163627243042,123.7921575756073,123.82267887878417,123.85320018196106,123.88372148513794,123.91424278831482,123.94476409149169,123.97528539466857,124.00580669784546,124.03632800102234,124.06684930419922,124.09737060737609,124.12789191055298,124.15841321372986,124.18893451690674,124.21945582008361,124.24997712326049,124.28049842643738,124.31101972961426,124.34154103279114,124.37206233596801,124.4025836391449,124.43310494232178,124.46362624549866,124.49414754867554,124.52466885185241,124.5551901550293,124.58571145820618,124.61623276138306,124.64675406455993,124.67727536773681,124.7077966709137,124.73831797409058,124.76883927726746,124.79936058044433,124.82988188362121,124.8604031867981,124.89092448997498,124.92144579315186,124.95196709632873,124.98248839950561,125.0130097026825,125.04353100585938,125.07405230903625,125.10457361221313,125.13509491539001,125.1656162185669,125.19613752174378,125.22665882492065,125.25718012809753,125.28770143127441,125.3182227344513,125.34874403762817,125.37926534080505,125.40978664398193,125.44030794715881,125.4708292503357,125.50135055351257,125.53187185668945,125.56239315986633,125.59291446304321,125.6234357662201,125.65395706939697,125.68447837257385,125.71499967575073,125.74552097892762,125.77604228210448,125.80656358528137,125.83708488845825,125.86760619163513,125.89812749481202,125.92864879798888,125.95917010116577,125.98969140434265,126.02021270751953,126.05073401069642,126.08125531387329,126.11177661705017,126.14229792022705,126.17281922340393,126.2033405265808,126.23386182975769,126.26438313293457,126.29490443611145,126.32542573928833,126.3559470424652,126.38646834564209,126.41698964881897,126.44751095199585,126.47803225517274,126.5085535583496,126.53907486152649,126.56959616470337,126.60011746788025,126.63063877105712,126.661160074234,126.69168137741089,126.72220268058777,126.75272398376465,126.78324528694152,126.8137665901184,126.84428789329529,126.87480919647217,126.90533049964904,126.93585180282592,126.9663731060028,126.99689440917969,127.02741571235657,127.05793701553344,127.08845831871032,127.1189796218872,127.14950092506409,127.18002222824097,127.21054353141784,127.24106483459472,127.2715861377716,127.30210744094849,127.33262874412536,127.36315004730224,127.39367135047912,127.42419265365601,127.45471395683289,127.48523526000976,127.51575656318664,127.54627786636352,127.57679916954041,127.60732047271729,127.63784177589416,127.66836307907104,127.69888438224793,127.72940568542481,127.75992698860168,127.79044829177856,127.82096959495544,127.85149089813233,127.88201220130921,127.91253350448608,127.94305480766296,127.97357611083984,128.0040974140167,128.03461871719358,128.06514002037048,128.09566132354735,128.12618262672424,128.1567039299011,128.18722523307798,128.21774653625488,128.24826783943175,128.27878914260864,128.3093104457855,128.33983174896238,128.37035305213928,128.40087435531615,128.43139565849305,128.4619169616699,128.49243826484678,128.52295956802368,128.55348087120055,128.58400217437745,128.61452347755431,128.64504478073118,128.67556608390808,128.70608738708495,128.73660869026185,128.76712999343872,128.79765129661558,128.82817259979248,128.85869390296935,128.88921520614622,128.91973650932312,128.95025781249998,128.98077911567688,129.01130041885375,129.04182172203062,129.07234302520752,129.10286432838438,129.13338563156128,129.16390693473815,129.19442823791502,129.22494954109192,129.25547084426879,129.28599214744568,129.31651345062255,129.34703475379942,129.37755605697632,129.4080773601532,129.43859866333008,129.46911996650695,129.49964126968382,129.53016257286072,129.5606838760376,129.59120517921446,129.62172648239135,129.65224778556822,129.68276908874512,129.713290391922,129.74381169509886,129.77433299827575,129.80485430145262,129.83537560462952,129.8658969078064,129.89641821098326,129.92693951416015,129.95746081733702,129.98798212051392,130.0185034236908,130.04902472686766,130.07954603004455,130.11006733322142,130.14058863639832,130.1711099395752,130.20163124275206,130.23215254592895,130.26267384910582,130.2931951522827,130.3237164554596,130.35423775863646,130.38475906181336,130.41528036499022,130.4458016681671,130.476322971344,130.50684427452086,130.53736557769776,130.56788688087462,130.5984081840515,130.6289294872284,130.65945079040526,130.68997209358216,130.72049339675903,130.7510146999359,130.7815360031128,130.81205730628966,130.84257860946656,130.87309991264343,130.9036212158203,130.9341425189972,130.96466382217406,130.99518512535096,131.02570642852783,131.0562277317047,131.0867490348816,131.11727033805846,131.14779164123533,131.17831294441223,131.2088342475891,131.239355550766,131.26987685394286,131.30039815711973,131.33091946029663,131.3614407634735,131.3919620666504,131.42248336982726,131.45300467300413,131.48352597618103,131.5140472793579,131.5445685825348,131.57508988571166,131.60561118888853,131.63613249206543,131.6666537952423,131.6971750984192,131.72769640159606,131.75821770477293,131.78873900794983,131.8192603111267,131.84978161430357,131.88030291748046,131.91082422065733,131.94134552383423,131.9718668270111,132.002388130188,132.03290943336486,132.06343073654173,132.09395203971863,132.1244733428955,132.1549946460724,132.18551594924926,132.21603725242613,132.24655855560303,132.2770798587799,132.3076011619568,132.33812246513367,132.36864376831053,132.39916507148743,132.4296863746643,132.4602076778412,132.49072898101807,132.52125028419493,132.55177158737183,132.5822928905487,132.6128141937256,132.64333549690247,132.67385680007934,132.70437810325623,132.7348994064331,132.76542070960997,132.79594201278687,132.82646331596374,132.85698461914063,132.8875059223175,132.91802722549437,132.94854852867127,132.97906983184814,133.00959113502503,133.0401124382019,133.07063374137877,133.10115504455567,133.13167634773254,133.16219765090943,133.1927189540863,133.22324025726317,133.25376156044007,133.28428286361694,133.31480416679383,133.3453254699707,133.37584677314757,133.40636807632447,133.43688937950134,133.46741068267823,133.4979319858551,133.52845328903197,133.55897459220887,133.58949589538574,133.6200171985626,133.6505385017395,133.68105980491637,133.71158110809327,133.74210241127014,133.772623714447,133.8031450176239,133.83366632080077,133.86418762397767,133.89470892715454,133.9252302303314,133.9557515335083,133.98627283668517,134.01679413986207,134.04731544303894,134.0778367462158,134.1083580493927,134.13887935256957,134.16940065574647,134.19992195892334,134.2304432621002,134.2609645652771,134.29148586845398,134.32200717163084,134.35252847480774,134.3830497779846,134.4135710811615,134.44409238433838,134.47461368751524,134.50513499069214,134.535656293869,134.5661775970459,134.59669890022278,134.62722020339965,134.65774150657654,134.6882628097534,134.7187841129303,134.74930541610718,134.77982671928405,134.81034802246094,134.8408693256378,134.8713906288147,134.90191193199158,134.93243323516845,134.96295453834534,134.9934758415222,135.0239971446991,135.05451844787598,135.08503975105285,135.11556105422974,135.1460823574066,135.17660366058348,135.20712496376038,135.23764626693725,135.26816757011414,135.298688873291,135.32921017646788,135.35973147964478,135.39025278282165,135.42077408599854,135.4512953891754,135.48181669235228,135.51233799552918,135.54285929870605,135.57338060188295,135.60390190505981,135.63442320823668,135.66494451141358,135.69546581459045,135.72598711776735,135.75650842094421,135.78702972412108,135.81755102729798,135.84807233047485,135.87859363365172,135.90911493682862,135.93963624000548,135.97015754318238,136.00067884635925,136.03120014953612,136.06172145271302,136.09224275588988,136.12276405906678,136.15328536224365,136.18380666542052,136.21432796859742,136.24484927177429,136.27537057495118,136.30589187812805,136.33641318130492,136.36693448448182,136.39745578765869,136.42797709083558,136.45849839401245,136.48901969718932,136.51954100036622,136.5500623035431,136.58058360671996,136.61110490989685,136.64162621307372,136.67214751625062,136.7026688194275,136.73319012260436,136.76371142578125,136.79423272895812,136.82475403213502,136.8552753353119,136.88579663848876,136.91631794166565,136.94683924484252,136.97736054801942,137.0078818511963,137.03840315437316,137.06892445755005,137.09944576072692,137.12996706390382,137.1604883670807,137.19100967025756,137.22153097343445,137.25205227661132,137.28257357978822,137.3130948829651,137.34361618614196,137.37413748931885,137.40465879249572,137.4351800956726,137.4657013988495,137.49622270202636,137.52674400520326,137.55726530838012,137.587786611557,137.6183079147339,137.64882921791076,137.67935052108766,137.70987182426452,137.7403931274414,137.7709144306183,137.80143573379516,137.83195703697206,137.86247834014893,137.8929996433258,137.9235209465027,137.95404224967956,137.98456355285646,138.01508485603333,138.0456061592102,138.0761274623871,138.10664876556396,138.13717006874083,138.16769137191773,138.1982126750946,138.2287339782715,138.25925528144836,138.28977658462523,138.32029788780213,138.350819190979,138.3813404941559,138.41186179733276,138.44238310050963,138.47290440368653,138.5034257068634,138.5339470100403,138.56446831321716,138.59498961639403,138.62551091957093,138.6560322227478,138.6865535259247,138.71707482910156,138.74759613227843,138.77811743545533,138.8086387386322,138.83916004180907,138.86968134498596,138.90020264816283,138.93072395133973,138.9612452545166,138.99176655769347,139.02228786087036,139.05280916404723,139.08333046722413,139.113851770401,139.14437307357787,139.17489437675476,139.20541567993163,139.23593698310853,139.2664582862854,139.29697958946227,139.32750089263916,139.35802219581603,139.38854349899293,139.4190648021698,139.44958610534667,139.48010740852357,139.51062871170043,139.54115001487733,139.5716713180542,139.60219262123107,139.63271392440797,139.66323522758483,139.6937565307617,139.7242778339386,139.75479913711547,139.78532044029237,139.81584174346924,139.8463630466461,139.876884349823,139.90740565299987,139.93792695617677,139.96844825935364,139.9989695625305,140.0294908657074,140.06001216888427,140.09053347206117,140.12105477523804,140.1515760784149,140.1820973815918,140.21261868476867,140.24313998794557,140.27366129112244,140.3041825942993,140.3347038974762,140.36522520065307,140.39574650382994,140.42626780700684,140.4567891101837,140.4873104133606,140.51783171653747,140.54835301971434,140.57887432289124,140.6093956260681,140.639916929245,140.67043823242187,140.70095953559874,140.73148083877564,140.7620021419525,140.7925234451294,140.82304474830627,140.85356605148314,140.88408735466004,140.9146086578369,140.9451299610138,140.97565126419067,141.00617256736754,141.03669387054444,141.0672151737213,141.0977364768982,141.12825778007507,141.15877908325194,141.18930038642884,141.2198216896057,141.25034299278258,141.28086429595947,141.31138559913634,141.34190690231324,141.3724282054901,141.40294950866698,141.43347081184388,141.46399211502074,141.49451341819764,141.5250347213745,141.55555602455138,141.58607732772828,141.61659863090514,141.64711993408204,141.6776412372589,141.70816254043578,141.73868384361268,141.76920514678955,141.79972644996644,141.8302477531433,141.86076905632018,141.89129035949708,141.92181166267395,141.95233296585081,141.9828542690277,142.01337557220458,142.04389687538148,142.07441817855835,142.10493948173522,142.1354607849121,142.16598208808898,142.19650339126588,142.22702469444275,142.25754599761962,142.2880673007965,142.31858860397338,142.34910990715028,142.37963121032715,142.41015251350402,142.4406738166809,142.47119511985778,142.50171642303468,142.53223772621155,142.56275902938842,142.5932803325653,142.62380163574218,142.65432293891905,142.68484424209595,142.71536554527282,142.74588684844971,142.77640815162658,142.80692945480345,142.83745075798035,142.86797206115722,142.89849336433412,142.92901466751098,142.95953597068785,142.99005727386475,143.02057857704162,143.05109988021852,143.08162118339538,143.11214248657225,143.14266378974915,143.17318509292602,143.20370639610292,143.23422769927978,143.26474900245665,143.29527030563355,143.32579160881042,143.35631291198732,143.38683421516419,143.41735551834105,143.44787682151795,143.47839812469482,143.5089194278717,143.5394407310486,143.56996203422545,143.60048333740235,143.63100464057922,143.6615259437561,143.692047246933,143.72256855010986,143.75308985328675,143.78361115646362,143.8141324596405,143.8446537628174,143.87517506599426,143.90569636917115,143.93621767234802,143.9667389755249,143.9972602787018,144.02778158187866,144.05830288505555,144.08882418823242,144.1193454914093,144.1498667945862,144.18038809776306,144.21090940093993,144.24143070411682,144.2719520072937,144.3024733104706,144.33299461364746,144.36351591682433,144.39403722000122,144.4245585231781,144.455079826355,144.48560112953186,144.51612243270873,144.54664373588562,144.5771650390625,144.6076863422394,144.63820764541626,144.66872894859313,144.69925025177002,144.7297715549469,144.7602928581238,144.79081416130066,144.82133546447753,144.85185676765443,144.8823780708313,144.91289937400816,144.94342067718506,144.97394198036193,145.00446328353883,145.0349845867157,145.06550588989256,145.09602719306946,145.12654849624633,145.15706979942323,145.1875911026001,145.21811240577696,145.24863370895386,145.27915501213073,145.30967631530763,145.3401976184845,145.37071892166136,145.40124022483826,145.43176152801513,145.46228283119203,145.4928041343689,145.52332543754576,145.55384674072266,145.58436804389953,145.61488934707643,145.6454106502533,145.67593195343017,145.70645325660706,145.73697455978393,145.7674958629608,145.7980171661377,145.82853846931457,145.85905977249146,145.88958107566833,145.9201023788452,145.9506236820221,145.98114498519897,146.01166628837586,146.04218759155273,146.0727088947296,146.1032301979065,146.13375150108337,146.16427280426026,146.19479410743713,146.225315410614,146.2558367137909,146.28635801696777,146.31687932014466,146.34740062332153,146.3779219264984,146.4084432296753,146.43896453285217,146.46948583602904,146.50000713920593,146.5305284423828,146.5610497455597,146.59157104873657,146.62209235191344,146.65261365509033,146.6831349582672,146.7136562614441,146.74417756462097,146.77469886779784,146.80522017097474,146.8357414741516,146.8662627773285,146.89678408050537,146.92730538368224,146.95782668685914,146.988347990036,147.0188692932129,147.04939059638977,147.07991189956664,147.11043320274354,147.1409545059204,147.1714758090973,147.20199711227417,147.23251841545104,147.26303971862794,147.2935610218048,147.32408232498167,147.35460362815857,147.38512493133544,147.41564623451234,147.4461675376892,147.47668884086607,147.50721014404297,147.53773144721984,147.56825275039674,147.5987740535736,147.62929535675048,147.65981665992737,147.69033796310424,147.72085926628114,147.751380569458,147.78190187263488,147.81242317581177,147.84294447898864,147.87346578216554,147.9039870853424,147.93450838851928,147.96502969169617,147.99555099487304,148.0260722980499,148.0565936012268,148.08711490440368,148.11763620758057,148.14815751075744,148.1786788139343,148.2092001171112,148.23972142028808,148.27024272346497,148.30076402664184,148.3312853298187,148.3618066329956,148.39232793617248,148.42284923934938,148.45337054252624,148.4838918457031,148.51441314888,148.54493445205688,148.57545575523378,148.60597705841064,148.6364983615875,148.6670196647644,148.69754096794128,148.72806227111815,148.75858357429505,148.7891048774719,148.8196261806488,148.85014748382568,148.88066878700255,148.91119009017945,148.94171139335631,148.9722326965332,149.00275399971008,149.03327530288695,149.06379660606385,149.09431790924071,149.1248392124176,149.15536051559448,149.18588181877135,149.21640312194825,149.24692442512512,149.277445728302,149.30796703147888,149.33848833465575,149.36900963783265,149.39953094100952,149.4300522441864,149.46057354736328,149.49109485054015,149.52161615371705,149.55213745689392,149.58265876007079,149.61318006324768,149.64370136642455,149.67422266960145,149.70474397277832,149.7352652759552,149.76578657913208,149.79630788230895,149.82682918548585,149.85735048866272,149.8878717918396,149.91839309501648,149.94891439819335,149.97943570137025,150.00995700454712,150.040478307724,150.07099961090088,150.10152091407775,150.13204221725465,150.16256352043152,150.1930848236084,150.22360612678528,150.25412742996215,150.28464873313902,150.31517003631592,150.3456913394928,150.37621264266969,150.40673394584655,150.43725524902342,150.46777655220032,150.4982978553772,150.52881915855409,150.55934046173095,150.58986176490782,150.62038306808472,150.6509043712616,150.6814256744385,150.71194697761536,150.74246828079222,150.77298958396912,150.803510887146,150.8340321903229,150.86455349349976,150.89507479667662,150.92559609985352,150.9561174030304,150.9866387062073,151.01716000938416,151.04768131256102,151.07820261573792,151.1087239189148,151.13924522209166,151.16976652526856,151.20028782844543,151.23080913162232,151.2613304347992,151.29185173797606,151.32237304115296,151.35289434432983,151.38341564750672,151.4139369506836,151.44445825386046,151.47497955703736,151.50550086021423,151.53602216339112,151.566543466568,151.59706476974486,151.62758607292176,151.65810737609863,151.68862867927552,151.7191499824524,151.74967128562926,151.78019258880616,151.81071389198303,151.8412351951599,151.8717564983368,151.90227780151366,151.93279910469056,151.96332040786743,151.9938417110443,152.0243630142212,152.05488431739806,152.08540562057496,152.11592692375183,152.1464482269287,152.1769695301056,152.20749083328246,152.23801213645936,152.26853343963623,152.2990547428131,152.32957604599,152.36009734916686,152.39061865234376,152.42113995552063,152.4516612586975,152.4821825618744,152.51270386505126,152.54322516822813,152.57374647140503,152.6042677745819,152.6347890777588,152.66531038093567,152.69583168411253,152.72635298728943,152.7568742904663,152.7873955936432,152.81791689682007,152.84843819999693,152.87895950317383,152.9094808063507,152.9400021095276,152.97052341270447,153.00104471588133,153.03156601905823,153.0620873222351,153.092608625412,153.12312992858887,153.15365123176574,153.18417253494263,153.2146938381195,153.2452151412964,153.27573644447327,153.30625774765014,153.33677905082703,153.3673003540039,153.39782165718077,153.42834296035767,153.45886426353454,153.48938556671143,153.5199068698883,153.55042817306517,153.58094947624207,153.61147077941894,153.64199208259583,153.6725133857727,153.70303468894957,153.73355599212647,153.76407729530334,153.79459859848023,153.8251199016571,153.85564120483397,153.88616250801087,153.91668381118774,153.94720511436464,153.9777264175415,154.00824772071837,154.03876902389527,154.06929032707214,154.099811630249,154.1303329334259,154.16085423660277,154.19137553977967,154.22189684295654,154.2524181461334,154.2829394493103,154.31346075248717,154.34398205566407,154.37450335884094,154.4050246620178,154.4355459651947,154.46606726837157,154.49658857154847,154.52710987472534,154.5576311779022,154.5881524810791,154.61867378425598,154.64919508743287,154.67971639060974,154.7102376937866,154.7407589969635,154.77128030014038,154.80180160331724,154.83232290649414,154.862844209671,154.8933655128479,154.92388681602478,154.95440811920164,154.98492942237854,155.0154507255554,155.0459720287323,155.07649333190918,155.10701463508605,155.13753593826294,155.1680572414398,155.1985785446167,155.22909984779358,155.25962115097045,155.29014245414734,155.3206637573242,155.3511850605011,155.38170636367798,155.41222766685485,155.44274897003174,155.4732702732086,155.5037915763855,155.53431287956238,155.56483418273925,155.59535548591614,155.625876789093,155.65639809226988,155.68691939544678,155.71744069862365,155.74796200180054,155.7784833049774,155.80900460815428,155.83952591133118,155.87004721450805,155.90056851768495,155.9310898208618,155.96161112403868,155.99213242721558,156.02265373039245,156.05317503356935,156.08369633674621,156.11421763992308,156.14473894309998,156.17526024627685,156.20578154945375,156.23630285263062,156.26682415580748,156.29734545898438,156.32786676216125,156.35838806533812,156.38890936851502,156.41943067169188,156.44995197486878,156.48047327804565,156.51099458122252,156.54151588439942,156.57203718757629,156.60255849075318,156.63307979393005,156.66360109710692,156.69412240028382,156.72464370346069,156.75516500663758,156.78568630981445,156.81620761299132,156.84672891616822,156.8772502193451,156.90777152252198,156.93829282569885,156.96881412887572,156.99933543205262,157.0298567352295,157.06037803840638,157.09089934158325,157.12142064476012,157.15194194793702,157.1824632511139,157.21298455429076,157.24350585746765,157.27402716064452,157.30454846382142,157.3350697669983,157.36559107017516,157.39611237335205,157.42663367652892,157.45715497970582,157.4876762828827,157.51819758605956,157.54871888923645,157.57924019241332,157.60976149559022,157.6402827987671,157.67080410194396,157.70132540512085,157.73184670829772,157.76236801147462,157.7928893146515,157.82341061782836,157.85393192100526,157.88445322418212,157.914974527359,157.9454958305359,157.97601713371276,158.00653843688966,158.03705974006652,158.0675810432434,158.0981023464203,158.12862364959716,158.15914495277406,158.18966625595093,158.2201875591278,158.2507088623047,158.28123016548156,158.31175146865846,158.34227277183533,158.3727940750122,158.4033153781891,158.43383668136596,158.46435798454286,158.49487928771973,158.5254005908966,158.5559218940735,158.58644319725036,158.61696450042723,158.64748580360413,158.678007106781,158.7085284099579,158.73904971313476,158.76957101631163,158.80009231948853,158.8306136226654,158.8611349258423,158.89165622901916,158.92217753219603,158.95269883537293,158.9832201385498,159.0137414417267,159.04426274490356,159.07478404808043,159.10530535125733,159.1358266544342,159.1663479576111,159.19686926078796,159.22739056396483,159.25791186714173,159.2884331703186,159.3189544734955,159.34947577667236,159.37999707984923,159.41051838302613,159.441039686203,159.47156098937987,159.50208229255676,159.53260359573363,159.56312489891053,159.5936462020874,159.62416750526427,159.65468880844116,159.68521011161803,159.71573141479493,159.7462527179718,159.77677402114867,159.80729532432557,159.83781662750243,159.86833793067933,159.8988592338562,159.92938053703307,159.95990184020997,159.99042314338683,160.02094444656373,160.0514657497406,160.08198705291747,160.11250835609437,160.14302965927124,160.1735509624481,160.204072265625,160.23459356880187,160.26511487197877,160.29563617515564,160.3261574783325,160.3566787815094,160.38720008468627,160.41772138786317,160.44824269104004,160.4787639942169,160.5092852973938,160.53980660057067,160.57032790374757,160.60084920692444,160.6313705101013,160.6618918132782,160.69241311645507,160.72293441963197,160.75345572280884,160.7839770259857,160.8144983291626,160.84501963233947,160.87554093551634,160.90606223869324,160.9365835418701,160.967104845047,160.99762614822387,161.02814745140074,161.05866875457764,161.0891900577545,161.1197113609314,161.15023266410827,161.18075396728514,161.21127527046204,161.2417965736389,161.2723178768158,161.30283917999267,161.33336048316954,161.36388178634644,161.3944030895233,161.4249243927002,161.45544569587707,161.48596699905394,161.51648830223084,161.5470096054077,161.5775309085846,161.60805221176147,161.63857351493834,161.66909481811524,161.6996161212921,161.73013742446898,161.76065872764588,161.79118003082274,161.82170133399964,161.8522226371765,161.88274394035338,161.91326524353028,161.94378654670714,161.97430784988404,162.0048291530609,162.03535045623778,162.06587175941468,162.09639306259155,162.12691436576844,162.1574356689453,162.18795697212218,162.21847827529908,162.24899957847595,162.27952088165284,162.3100421848297,162.34056348800658,162.37108479118348,162.40160609436035,162.43212739753722,162.4626487007141,162.49317000389098,162.52369130706788,162.55421261024475,162.58473391342162,162.6152552165985,162.64577651977538,162.67629782295228,162.70681912612915,162.73734042930602,162.7678617324829,162.79838303565978,162.82890433883668,162.85942564201355,162.88994694519042,162.9204682483673,162.95098955154418,162.98151085472108,163.01203215789795,163.04255346107482,163.07307476425171,163.10359606742858,163.13411737060548,163.16463867378235,163.19515997695922,163.22568128013611,163.25620258331298,163.28672388648985,163.31724518966675,163.34776649284362,163.37828779602052,163.40880909919738,163.43933040237425,163.46985170555115,163.50037300872802,163.53089431190492,163.56141561508178,163.59193691825865,163.62245822143555,163.65297952461242,163.68350082778932,163.71402213096619,163.74454343414305,163.77506473731995,163.80558604049682,163.83610734367372,163.8666286468506,163.89714995002745,163.92767125320435,163.95819255638122,163.9887138595581,164.019235162735,164.04975646591186,164.08027776908875,164.11079907226562,164.1413203754425,164.1718416786194,164.20236298179626,164.23288428497315,164.26340558815002,164.2939268913269,164.3244481945038,164.35496949768066,164.38549080085755,164.41601210403442,164.4465334072113,164.4770547103882,164.50757601356506,164.53809731674195,164.56861861991882,164.5991399230957,164.6296612262726,164.66018252944946,164.69070383262633,164.72122513580322,164.7517464389801,164.782267742157,164.81278904533386,164.84331034851073,164.87383165168762,164.9043529548645,164.9348742580414,164.96539556121826,164.99591686439513,165.02643816757202,165.0569594707489,165.0874807739258,165.11800207710266,165.14852338027953,165.17904468345642,165.2095659866333,165.2400872898102,165.27060859298706,165.30112989616393,165.33165119934083,165.3621725025177,165.3926938056946,165.42321510887146,165.45373641204833,165.48425771522523,165.5147790184021,165.54530032157896,165.57582162475586,165.60634292793273,165.63686423110963,165.6673855342865,165.69790683746336,165.72842814064026,165.75894944381713,165.78947074699403,165.8199920501709,165.85051335334776,165.88103465652466,165.91155595970153,165.94207726287843,165.9725985660553,166.00311986923217,166.03364117240906,166.06416247558593,166.09468377876283,166.1252050819397,166.15572638511657,166.18624768829346,166.21676899147033,166.2472902946472,166.2778115978241,166.30833290100097,166.33885420417786,166.36937550735473,166.3998968105316,166.4304181137085,166.46093941688537,166.49146072006226,166.52198202323913,166.552503326416,166.5830246295929,166.61354593276977,166.64406723594666,166.67458853912353,166.7051098423004,166.7356311454773,166.76615244865417,166.79667375183107,166.82719505500793,166.8577163581848,166.8882376613617,166.91875896453857,166.94928026771544,166.97980157089233,167.0103228740692,167.0408441772461,167.07136548042297,167.10188678359984,167.13240808677673,167.1629293899536,167.1934506931305,167.22397199630737,167.25449329948424,167.28501460266114,167.315535905838,167.3460572090149,167.37657851219177,167.40709981536864,167.43762111854554,167.4681424217224,167.4986637248993,167.52918502807617,167.55970633125304,167.59022763442994,167.6207489376068,167.6512702407837,167.68179154396057,167.71231284713744,167.74283415031434,167.7733554534912,167.80387675666807,167.83439805984497,167.86491936302184,167.89544066619874,167.9259619693756,167.95648327255248,167.98700457572937,168.01752587890624,168.04804718208314,168.07856848526,168.10908978843688,168.13961109161377,168.17013239479064,168.20065369796754,168.2311750011444,168.26169630432128,168.29221760749817,168.32273891067504,168.35326021385194,168.3837815170288,168.41430282020568,168.44482412338257,168.47534542655944,168.5058667297363,168.5363880329132,168.56690933609008,168.59743063926697,168.62795194244384,168.6584732456207,168.6889945487976,168.71951585197448,168.75003715515138,168.78055845832824,168.8110797615051,168.841601064682,168.87212236785888,168.90264367103578,168.93316497421264,168.9636862773895,168.9942075805664,169.02472888374328,169.05525018692018,169.08577149009704,169.1162927932739,169.1468140964508,169.17733539962768,169.20785670280458,169.23837800598145,169.26889930915831,169.2994206123352,169.32994191551208,169.36046321868895,169.39098452186585,169.42150582504271,169.4520271282196,169.48254843139648,169.51306973457335,169.54359103775025,169.57411234092712,169.604633644104,169.63515494728088,169.66567625045775,169.69619755363465,169.72671885681152,169.7572401599884,169.78776146316528,169.81828276634215,169.84880406951905,169.87932537269592,169.9098466758728,169.94036797904968,169.97088928222655,170.00141058540345,170.03193188858032,170.06245319175719,170.09297449493408,170.12349579811095,170.15401710128785,170.18453840446472,170.2150597076416,170.24558101081848,170.27610231399535,170.30662361717225,170.33714492034912,170.367666223526,170.39818752670288,170.42870882987975,170.45923013305665,170.48975143623352,170.5202727394104,170.55079404258728,170.58131534576415,170.61183664894105,170.64235795211792,170.6728792552948,170.70340055847169,170.73392186164855,170.76444316482542,170.79496446800232,170.8254857711792,170.85600707435609,170.88652837753295,170.91704968070982,170.94757098388672,170.9780922870636,171.0086135902405,171.03913489341735,171.06965619659422,171.10017749977112,171.130698802948,171.1612201061249,171.19174140930176,171.22226271247862,171.25278401565552,171.2833053188324,171.3138266220093,171.34434792518616,171.37486922836302,171.40539053153992,171.4359118347168,171.4664331378937,171.49695444107056,171.52747574424743,171.55799704742432,171.5885183506012,171.61903965377806,171.64956095695496,171.68008226013183,171.71060356330872,171.7411248664856,171.77164616966246,171.80216747283936,171.83268877601623,171.86321007919312,171.89373138237,171.92425268554686,171.95477398872376,171.98529529190063,172.01581659507752,172.0463378982544,172.07685920143126,172.10738050460816,172.13790180778503,172.16842311096192,172.1989444141388,172.22946571731566,172.25998702049256,172.29050832366943,172.3210296268463,172.3515509300232,172.38207223320006,172.41259353637696,172.44311483955383,172.4736361427307,172.5041574459076,172.53467874908446,172.56520005226136,172.59572135543823,172.6262426586151,172.656763961792,172.68728526496886,172.71780656814576,172.74832787132263,172.7788491744995,172.8093704776764,172.83989178085326,172.87041308403016,172.90093438720703,172.9314556903839,172.9619769935608,172.99249829673766,173.02301959991456,173.05354090309143,173.0840622062683,173.1145835094452,173.14510481262207,173.17562611579893,173.20614741897583,173.2366687221527,173.2671900253296,173.29771132850647,173.32823263168333,173.35875393486023,173.3892752380371,173.419796541214,173.45031784439087,173.48083914756774,173.51136045074463,173.5418817539215,173.5724030570984,173.60292436027527,173.63344566345214,173.66396696662903,173.6944882698059,173.7250095729828,173.75553087615967,173.78605217933654,173.81657348251343,173.8470947856903,173.87761608886717,173.90813739204407,173.93865869522094,173.96917999839783,173.9997013015747,174.03022260475157,174.06074390792847,174.09126521110534,174.12178651428223,174.1523078174591,174.18282912063597,174.21335042381287,174.24387172698974,174.27439303016664,174.3049143333435,174.33543563652037,174.36595693969727,174.39647824287414,174.42699954605104,174.4575208492279,174.48804215240477,174.51856345558167,174.54908475875854,174.5796060619354,174.6101273651123,174.64064866828917,174.67116997146607,174.70169127464294,174.7322125778198,174.7627338809967,174.79325518417357,174.82377648735047,174.85429779052734,174.8848190937042,174.9153403968811,174.94586170005797,174.97638300323487,175.00690430641174,175.0374256095886,175.0679469127655,175.09846821594238,175.12898951911927,175.15951082229614,175.190032125473,175.2205534286499,175.25107473182678,175.28159603500367,175.31211733818054,175.3426386413574,175.3731599445343,175.40368124771118,175.43420255088805,175.46472385406494,175.4952451572418,175.5257664604187,175.55628776359558,175.58680906677245,175.61733036994934,175.6478516731262,175.6783729763031,175.70889427947998,175.73941558265685,175.76993688583374,175.8004581890106,175.8309794921875,175.86150079536438,175.89202209854125,175.92254340171814,175.953064704895,175.9835860080719,176.01410731124878,176.04462861442565,176.07514991760254,176.1056712207794,176.13619252395628,176.16671382713318,176.19723513031005,176.22775643348695,176.2582777366638,176.28879903984068,176.31932034301758,176.34984164619445,176.38036294937135,176.41088425254821,176.44140555572508,176.47192685890198,176.50244816207885,176.53296946525575,176.56349076843262,176.59401207160948,176.62453337478638,176.65505467796325,176.68557598114015,176.71609728431702,176.74661858749388,176.77713989067078,176.80766119384765,176.83818249702452,176.86870380020142,176.89922510337828,176.92974640655518,176.96026770973205,176.99078901290892,177.02131031608582,177.05183161926269,177.08235292243958,177.11287422561645,177.14339552879332,177.17391683197022,177.2044381351471,177.23495943832398,177.26548074150085,177.29600204467772,177.32652334785462,177.3570446510315,177.38756595420838,177.41808725738525,177.44860856056212,177.47912986373902,177.5096511669159,177.54017247009278,177.57069377326965,177.60121507644652,177.63173637962342,177.6622576828003,177.69277898597716,177.72330028915405,177.75382159233092,177.78434289550782,177.8148641986847,177.84538550186156,177.87590680503845,177.90642810821532,177.93694941139222,177.9674707145691,177.99799201774596,178.02851332092285,178.05903462409972,178.08955592727662,178.1200772304535,178.15059853363036,178.18111983680726,178.21164113998412,178.24216244316102,178.2726837463379,178.30320504951476,178.33372635269166,178.36424765586852,178.3947689590454,178.4252902622223,178.45581156539916,178.48633286857606,178.51685417175293,178.5473754749298,178.5778967781067,178.60841808128356,178.63893938446046,178.66946068763733,178.6999819908142,178.7305032939911,178.76102459716796,178.79154590034486,178.82206720352173,178.8525885066986,178.8831098098755,178.91363111305236,178.94415241622926,178.97467371940613,179.005195022583,179.0357163257599,179.06623762893676,179.09675893211366,179.12728023529053,179.1578015384674,179.1883228416443,179.21884414482116,179.24936544799803,179.27988675117493,179.3104080543518,179.3409293575287,179.37145066070556,179.40197196388243,179.43249326705933,179.4630145702362,179.4935358734131,179.52405717658996,179.55457847976683,179.58509978294373,179.6156210861206,179.6461423892975,179.67666369247436,179.70718499565123,179.73770629882813,179.768227602005,179.7987489051819,179.82927020835876,179.85979151153563,179.89031281471253,179.9208341178894,179.95135542106627,179.98187672424316,180.01239802742003,180.04291933059693,180.0734406337738,180.10396193695067,180.13448324012757,180.16500454330443,180.19552584648133,180.2260471496582,180.25656845283507,180.28708975601197,180.31761105918883,180.34813236236573,180.3786536655426,180.40917496871947,180.43969627189637,180.47021757507324,180.50073887825013,180.531260181427,180.56178148460387,180.59230278778077,180.62282409095764,180.6533453941345,180.6838666973114,180.71438800048827,180.74490930366517,180.77543060684204,180.8059519100189,180.8364732131958,180.86699451637267,180.89751581954957,180.92803712272644,180.9585584259033,180.9890797290802,181.01960103225707,181.05012233543397,181.08064363861084,181.1111649417877,181.1416862449646,181.17220754814147,181.20272885131837,181.23325015449524,181.2637714576721,181.294292760849,181.32481406402587,181.35533536720277,181.38585667037964,181.4163779735565,181.4468992767334,181.47742057991027,181.50794188308714,181.53846318626404,181.5689844894409,181.5995057926178,181.63002709579467,181.66054839897154,181.69106970214844,181.7215910053253,181.7521123085022,181.78263361167907,181.81315491485594,181.84367621803284,181.8741975212097,181.9047188243866,181.93524012756347,181.96576143074034,181.99628273391724,182.0268040370941,182.057325340271,182.08784664344788,182.11836794662474,182.14888924980164,182.1794105529785,182.20993185615538,182.24045315933228,182.27097446250914,182.30149576568604,182.3320170688629,182.36253837203978,182.39305967521668,182.42358097839355,182.45410228157044,182.4846235847473,182.51514488792418,182.54566619110108,182.57618749427795,182.60670879745484,182.6372301006317,182.66775140380858,182.69827270698548,182.72879401016235,182.75931531333924,182.7898366165161,182.82035791969298,182.85087922286988,182.88140052604675,182.91192182922362,182.9424431324005,182.97296443557738,183.00348573875428,183.03400704193115,183.06452834510802,183.0950496482849,183.12557095146178,183.15609225463868,183.18661355781555,183.21713486099242,183.2476561641693,183.27817746734618,183.30869877052308,183.33922007369995,183.36974137687682,183.40026268005371,183.43078398323058,183.46130528640748,183.49182658958435,183.52234789276122,183.55286919593811,183.58339049911498,183.61391180229188,183.64443310546875,183.67495440864562,183.70547571182252,183.73599701499938,183.76651831817625,183.79703962135315,183.82756092453002,183.85808222770692,183.88860353088378,183.91912483406065,183.94964613723755,183.98016744041442,184.01068874359132,184.04121004676819,184.07173134994505,184.10225265312195,184.13277395629882,184.16329525947572,184.1938165626526,184.22433786582945,184.25485916900635,184.28538047218322,184.31590177536012,184.346423078537,184.37694438171386,184.40746568489075,184.43798698806762,184.4685082912445,184.4990295944214,184.52955089759826,184.56007220077515,184.59059350395202,184.6211148071289,184.6516361103058,184.68215741348266,184.71267871665955,184.74320001983642,184.7737213230133,184.8042426261902,184.83476392936706,184.86528523254395,184.89580653572082,184.9263278388977,184.9568491420746,184.98737044525146,185.01789174842835,185.04841305160522,185.0789343547821,185.109455657959,185.13997696113586,185.17049826431276,185.20101956748962,185.2315408706665,185.2620621738434,185.29258347702026,185.32310478019713,185.35362608337402,185.3841473865509,185.4146686897278,185.44518999290466,185.47571129608153,185.50623259925842,185.5367539024353,185.5672752056122,185.59779650878906,185.62831781196593,185.65883911514283,185.6893604183197,185.7198817214966,185.75040302467346,185.78092432785033,185.81144563102723,185.8419669342041,185.872488237381,185.90300954055786,185.93353084373473,185.96405214691163,185.9945734500885,186.02509475326536,186.05561605644226,186.08613735961913,186.11665866279603,186.1471799659729,186.17770126914976,186.20822257232666,186.23874387550353,186.26926517868043,186.2997864818573,186.33030778503417,186.36082908821106,186.39135039138793,186.42187169456483,186.4523929977417,186.48291430091857,186.51343560409546,186.54395690727233,186.57447821044923,186.6049995136261,186.63552081680297,186.66604211997986,186.69656342315673,186.7270847263336,186.7576060295105,186.78812733268737,186.81864863586426,186.84916993904113,186.879691242218,186.9102125453949,186.94073384857177,186.97125515174866,187.00177645492553,187.0322977581024,187.0628190612793,187.09334036445617,187.12386166763307,187.15438297080993,187.1849042739868,187.2154255771637,187.24594688034057,187.27646818351747,187.30698948669433,187.3375107898712,187.3680320930481,187.39855339622497,187.42907469940187,187.45959600257873,187.4901173057556,187.5206386089325,187.55115991210937,187.58168121528624,187.61220251846314,187.64272382164,187.6732451248169,187.70376642799377,187.73428773117064,187.76480903434754,187.7953303375244,187.8258516407013,187.85637294387817,187.88689424705504,187.91741555023194,187.9479368534088,187.9784581565857,188.00897945976257,188.03950076293944,188.07002206611634,188.1005433692932,188.1310646724701,188.16158597564697,188.19210727882384,188.22262858200074,188.2531498851776,188.28367118835448,188.31419249153137,188.34471379470824,188.37523509788514,188.405756401062,188.43627770423888,188.46679900741577,188.49732031059264,188.52784161376954,188.5583629169464,188.58888422012328,188.61940552330017,188.64992682647704,188.68044812965394,188.7109694328308,188.74149073600768,188.77201203918457,188.80253334236144,188.83305464553834,188.8635759487152,188.89409725189208,188.92461855506897,188.95513985824584,188.98566116142274,189.0161824645996,189.04670376777648,189.07722507095338,189.10774637413024,189.1382676773071,189.168788980484,189.19931028366088,189.22983158683778,189.26035289001464,189.2908741931915,189.3213954963684,189.35191679954528,189.38243810272218,189.41295940589904,189.4434807090759,189.4740020122528,189.50452331542968,189.53504461860658,189.56556592178345,189.5960872249603,189.6266085281372,189.65712983131408,189.68765113449098,189.71817243766785,189.74869374084471,189.7792150440216,189.80973634719848,189.84025765037535,189.87077895355225,189.90130025672912,189.931821559906,189.96234286308288,189.99286416625975,190.02338546943665,190.05390677261352,190.0844280757904,190.11494937896728,190.14547068214415,190.17599198532105,190.20651328849792,190.2370345916748,190.26755589485168,190.29807719802855,190.32859850120545,190.35911980438232,190.3896411075592,190.42016241073608,190.45068371391295,190.48120501708985,190.51172632026672,190.5422476234436,190.57276892662048,190.60329022979735,190.63381153297425,190.66433283615112,190.694854139328,190.72537544250488,190.75589674568175,190.78641804885865,190.81693935203552,190.8474606552124,190.87798195838928,190.90850326156615,190.93902456474305,190.96954586791992,191.0000671710968,191.03058847427369,191.06110977745055,191.09163108062745,191.12215238380432,191.1526736869812,191.18319499015809,191.21371629333495,191.24423759651185,191.27475889968872,191.3052802028656,191.3358015060425,191.36632280921935,191.39684411239622,191.42736541557312,191.45788671875,191.4884080219269,191.51892932510376,191.54945062828062,191.57997193145752,191.6104932346344,191.6410145378113,191.67153584098816,191.70205714416502,191.73257844734192,191.7630997505188,191.7936210536957,191.82414235687256,191.85466366004943,191.88518496322632,191.9157062664032,191.9462275695801,191.97674887275696,192.00727017593383,192.03779147911072,192.0683127822876,192.09883408546446,192.12935538864136,192.15987669181823,192.19039799499512,192.220919298172,192.25144060134886,192.28196190452576,192.31248320770263,192.34300451087952,192.3735258140564,192.40404711723326,192.43456842041016,192.46508972358703,192.49561102676392,192.5261323299408,192.55665363311766,192.58717493629456,192.61769623947143,192.64821754264833,192.6787388458252,192.70926014900206,192.73978145217896,192.77030275535583,192.8008240585327,192.8313453617096,192.86186666488646,192.89238796806336,192.92290927124023,192.9534305744171,192.983951877594,193.01447318077086,193.04499448394776,193.07551578712463,193.1060370903015,193.1365583934784,193.16707969665526,193.19760099983216,193.22812230300903,193.2586436061859,193.2891649093628,193.31968621253966,193.35020751571656,193.38072881889343,193.4112501220703,193.4417714252472,193.47229272842407,193.50281403160096,193.53333533477783,193.5638566379547,193.5943779411316,193.62489924430847,193.65542054748533,193.68594185066223,193.7164631538391,193.746984457016,193.77750576019287,193.80802706336974,193.83854836654663,193.8690696697235,193.8995909729004,193.93011227607727,193.96063357925414,193.99115488243103,194.0216761856079,194.0521974887848,194.08271879196167,194.11324009513854,194.14376139831543,194.1742827014923,194.2048040046692,194.23532530784607,194.26584661102294,194.29636791419983,194.3268892173767,194.35741052055357,194.38793182373047,194.41845312690734,194.44897443008423,194.4794957332611,194.51001703643797,194.54053833961487,194.57105964279174,194.60158094596864,194.6321022491455,194.66262355232237,194.69314485549927,194.72366615867614,194.75418746185304,194.7847087650299,194.81523006820677,194.84575137138367,194.87627267456054,194.90679397773744,194.9373152809143,194.96783658409117,194.99835788726807,195.02887919044494,195.05940049362184,195.0899217967987,195.12044309997557,195.15096440315247,195.18148570632934,195.2120070095062,195.2425283126831,195.27304961585997,195.30357091903687,195.33409222221374,195.3646135253906,195.3951348285675,195.42565613174438,195.45617743492127,195.48669873809814,195.517220041275,195.5477413444519,195.57826264762878,195.60878395080567,195.63930525398254,195.6698265571594,195.7003478603363,195.73086916351318,195.76139046669007,195.79191176986694,195.8224330730438,195.8529543762207,195.88347567939758,195.91399698257445,195.94451828575134,195.9750395889282,196.0055608921051,196.03608219528198,196.06660349845885,196.09712480163574,196.1276461048126,196.1581674079895,196.18868871116638,196.21921001434325,196.24973131752014,196.280252620697,196.3107739238739,196.34129522705078,196.37181653022765,196.40233783340454,196.4328591365814,196.4633804397583,196.49390174293518,196.52442304611205,196.55494434928895,196.5854656524658,196.61598695564268,196.64650825881958,196.67702956199645,196.70755086517335,196.73807216835021,196.76859347152708,196.79911477470398,196.82963607788085,196.86015738105775,196.89067868423462,196.92119998741148,196.95172129058838,196.98224259376525,197.01276389694215,197.04328520011902,197.07380650329588,197.10432780647278,197.13484910964965,197.16537041282655,197.19589171600342,197.22641301918028,197.25693432235718,197.28745562553405,197.31797692871095,197.34849823188782,197.37901953506469,197.40954083824158,197.44006214141845,197.47058344459532,197.50110474777222,197.5316260509491,197.56214735412598,197.59266865730285,197.62318996047972,197.65371126365662,197.6842325668335,197.71475387001038,197.74527517318725,197.77579647636412,197.80631777954102,197.8368390827179,197.86736038589478,197.89788168907165,197.92840299224852,197.95892429542542,197.9894455986023,198.01996690177918,198.05048820495605,198.08100950813292,198.11153081130982,198.1420521144867,198.17257341766356,198.20309472084045,198.23361602401732,198.26413732719422,198.2946586303711,198.32517993354796,198.35570123672485,198.38622253990172,198.41674384307862,198.4472651462555,198.47778644943236,198.50830775260926,198.53882905578612,198.56935035896302,198.5998716621399,198.63039296531676,198.66091426849366,198.69143557167052,198.72195687484742,198.7524781780243,198.78299948120116,198.81352078437806,198.84404208755493,198.8745633907318,198.9050846939087,198.93560599708556,198.96612730026246,198.99664860343933,199.0271699066162,199.0576912097931,199.08821251296996,199.11873381614686,199.14925511932373,199.1797764225006,199.2102977256775,199.24081902885436,199.27134033203126,199.30186163520813,199.332382938385,199.3629042415619,199.39342554473876,199.42394684791566,199.45446815109253,199.4849894542694,199.5155107574463,199.54603206062316,199.57655336380006,199.60707466697693,199.6375959701538,199.6681172733307,199.69863857650756,199.72915987968443,199.75968118286133,199.7902024860382,199.8207237892151,199.85124509239196,199.88176639556883,199.91228769874573,199.9428090019226,199.9733303050995,200.00385160827636,200.03437291145323,200.06489421463013,200.095415517807,200.1259368209839,200.15645812416076,200.18697942733763,200.21750073051453,200.2480220336914,200.2785433368683,200.30906464004516,200.33958594322203,200.37010724639893,200.4006285495758,200.43114985275267,200.46167115592957,200.49219245910643,200.52271376228333,200.5532350654602,200.58375636863707,200.61427767181397,200.64479897499083,200.67532027816773,200.7058415813446,200.73636288452147,200.76688418769837,200.79740549087524,200.82792679405213,200.858448097229,200.88896940040587,200.91949070358277,200.95001200675964,200.98053330993653,201.0110546131134,201.04157591629027,201.07209721946717,201.10261852264404,201.13313982582093,201.1636611289978,201.19418243217467,201.22470373535157,201.25522503852844,201.2857463417053,201.3162676448822,201.34678894805907,201.37731025123597,201.40783155441284,201.4383528575897,201.4688741607666,201.49939546394347,201.52991676712037,201.56043807029724,201.5909593734741,201.621480676651,201.65200197982787,201.68252328300477,201.71304458618164,201.7435658893585,201.7740871925354,201.80460849571227,201.83512979888917,201.86565110206604,201.8961724052429,201.9266937084198,201.95721501159667,201.98773631477354,202.01825761795044,202.0487789211273,202.0793002243042,202.10982152748107,202.14034283065794,202.17086413383484,202.2013854370117,202.2319067401886,202.26242804336547,202.29294934654234,202.32347064971924,202.3539919528961,202.384513256073,202.41503455924988,202.44555586242674,202.47607716560364,202.5065984687805,202.5371197719574,202.56764107513428,202.59816237831114,202.62868368148804,202.6592049846649,202.68972628784178,202.72024759101868,202.75076889419555,202.78129019737244,202.8118115005493,202.84233280372618,202.87285410690308,202.90337541007995,202.93389671325684,202.9644180164337,202.99493931961058,203.02546062278748,203.05598192596435,203.08650322914124,203.1170245323181,203.14754583549498,203.17806713867188,203.20858844184875,203.23910974502564,203.2696310482025,203.30015235137938,203.33067365455628,203.36119495773315,203.39171626091004,203.4222375640869,203.45275886726378,203.48328017044068,203.51380147361755,203.54432277679442,203.5748440799713,203.60536538314818,203.63588668632508,203.66640798950195,203.69692929267882,203.72745059585571,203.75797189903258,203.78849320220948,203.81901450538635,203.84953580856322,203.88005711174011,203.91057841491698,203.94109971809388,203.97162102127075,204.00214232444762,204.03266362762452,204.06318493080138,204.09370623397828,204.12422753715515,204.15474884033202,204.18527014350892,204.21579144668578,204.24631274986265,204.27683405303955,204.30735535621642,204.33787665939332,204.36839796257019,204.39891926574705,204.42944056892395,204.45996187210082,204.49048317527772,204.52100447845459,204.55152578163145,204.58204708480835,204.61256838798522,204.64308969116212,204.673610994339,204.70413229751586,204.73465360069275,204.76517490386962,204.79569620704652,204.8262175102234,204.85673881340026,204.88726011657715,204.91778141975402,204.9483027229309,204.9788240261078,205.00934532928466,205.03986663246155,205.07038793563842,205.1009092388153,205.1314305419922,205.16195184516906,205.19247314834595,205.22299445152282,205.2535157546997,205.2840370578766,205.31455836105346,205.34507966423035,205.37560096740722,205.4061222705841,205.436643573761,205.46716487693786,205.49768618011475,205.52820748329162,205.5587287864685,205.5892500896454,205.61977139282226,205.65029269599916,205.68081399917602,205.7113353023529,205.7418566055298,205.77237790870666,205.80289921188353,205.83342051506042,205.8639418182373,205.8944631214142,205.92498442459106,205.95550572776793,205.98602703094483,206.0165483341217,206.0470696372986,206.07759094047546,206.10811224365233,206.13863354682923,206.1691548500061,206.199676153183,206.23019745635986,206.26071875953673,206.29124006271363,206.3217613658905,206.3522826690674,206.38280397224426,206.41332527542113,206.44384657859803,206.4743678817749,206.50488918495176,206.53541048812866,206.56593179130553,206.59645309448243,206.6269743976593,206.65749570083617,206.68801700401306,206.71853830718993,206.74905961036683,206.7795809135437,206.81010221672057,206.84062351989746,206.87114482307433,206.90166612625123,206.9321874294281,206.96270873260497,206.99323003578186,207.02375133895873,207.05427264213563,207.0847939453125,207.11531524848937,207.14583655166626,207.17635785484313,207.20687915802003,207.2374004611969,207.26792176437377,207.29844306755066,207.32896437072753,207.3594856739044,207.3900069770813,207.42052828025817,207.45104958343506,207.48157088661193,207.5120921897888,207.5426134929657,207.57313479614257,207.60365609931947,207.63417740249633,207.6646987056732,207.6952200088501,207.72574131202697,207.75626261520387,207.78678391838073,207.8173052215576,207.8478265247345,207.87834782791137,207.90886913108827,207.93939043426514,207.969911737442,208.0004330406189,208.03095434379577,208.06147564697264,208.09199695014954,208.1225182533264,208.1530395565033,208.18356085968017,208.21408216285704,208.24460346603394,208.2751247692108,208.3056460723877,208.33616737556457,208.36668867874144,208.39720998191834,208.4277312850952,208.4582525882721,208.48877389144897,208.51929519462584,208.54981649780274,208.5803378009796,208.6108591041565,208.64138040733337,208.67190171051024,208.70242301368714,208.732944316864,208.76346562004088,208.79398692321777,208.82450822639464,208.85502952957154,208.8855508327484,208.91607213592528,208.94659343910217,208.97711474227904,209.00763604545594,209.0381573486328,209.06867865180968,209.09919995498657,209.12972125816344,209.16024256134034,209.1907638645172,209.22128516769408,209.25180647087097,209.28232777404784,209.31284907722474,209.3433703804016,209.37389168357848,209.40441298675537,209.43493428993224,209.46545559310914,209.495976896286,209.52649819946288,209.55701950263978,209.58754080581664,209.6180621089935,209.6485834121704,209.67910471534728,209.70962601852418,209.74014732170104,209.7706686248779,209.8011899280548,209.83171123123168,209.86223253440858,209.89275383758545,209.9232751407623,209.9537964439392,209.98431774711608,210.01483905029298,210.04536035346985,210.07588165664671,210.1064029598236,210.13692426300048,210.16744556617738,210.19796686935425,210.22848817253112,210.259009475708,210.28953077888488,210.32005208206175,210.35057338523865,210.38109468841552,210.4116159915924,210.44213729476928,210.47265859794615,210.50317990112305,210.53370120429992,210.5642225074768,210.59474381065368,210.62526511383055,210.65578641700745,210.68630772018432,210.7168290233612,210.74735032653808,210.77787162971495,210.80839293289185,210.83891423606872,210.86943553924561,210.89995684242248,210.93047814559935,210.96099944877625,210.99152075195312,211.02204205513002,211.05256335830688,211.08308466148375,211.11360596466065,211.14412726783752,211.1746485710144,211.20516987419128,211.23569117736815,211.26621248054505,211.29673378372192,211.3272550868988,211.35777639007568,211.38829769325255,211.41881899642945,211.44934029960632,211.4798616027832,211.51038290596009,211.54090420913695,211.57142551231385,211.60194681549072,211.6324681186676,211.6629894218445,211.69351072502135,211.72403202819825,211.75455333137512,211.785074634552,211.8155959377289,211.84611724090576,211.87663854408262,211.90715984725952,211.9376811504364,211.9682024536133,211.99872375679016,212.02924505996702,212.05976636314392,212.0902876663208,212.1208089694977,212.15133027267456,212.18185157585143,212.21237287902832,212.2428941822052,212.2734154853821,212.30393678855896,212.33445809173583,212.36497939491272,212.3955006980896,212.4260220012665,212.45654330444336,212.48706460762023,212.51758591079712,212.548107213974,212.57862851715086,212.60914982032776,212.63967112350463,212.67019242668152,212.7007137298584,212.73123503303526,212.76175633621216,212.79227763938903,212.82279894256592,212.8533202457428,212.88384154891966,212.91436285209656,212.94488415527343,212.97540545845033,213.0059267616272,213.03644806480406,213.06696936798096,213.09749067115783,213.12801197433473,213.1585332775116,213.18905458068846,213.21957588386536,213.25009718704223,213.28061849021913,213.311139793396,213.34166109657286,213.37218239974976,213.40270370292663,213.4332250061035,213.4637463092804,213.49426761245726,213.52478891563416,213.55531021881103,213.5858315219879,213.6163528251648,213.64687412834166,213.67739543151856,213.70791673469543,213.7384380378723,213.7689593410492,213.79948064422607,213.83000194740296,213.86052325057983,213.8910445537567,213.9215658569336,213.95208716011047,213.98260846328736,214.01312976646423,214.0436510696411,214.074172372818,214.10469367599487,214.13521497917174,214.16573628234863,214.1962575855255,214.2267788887024,214.25730019187927,214.28782149505614,214.31834279823303,214.3488641014099,214.3793854045868,214.40990670776367,214.44042801094054,214.47094931411743,214.5014706172943,214.5319919204712,214.56251322364807,214.59303452682494,214.62355583000183,214.6540771331787,214.6845984363556,214.71511973953247,214.74564104270934,214.77616234588623,214.8066836490631,214.83720495223997,214.86772625541687,214.89824755859374,214.92876886177064,214.9592901649475,214.98981146812437,215.02033277130127,215.05085407447814,215.08137537765504,215.1118966808319,215.14241798400877,215.17293928718567,215.20346059036254,215.23398189353944,215.2645031967163,215.29502449989317,215.32554580307007,215.35606710624694,215.38658840942384,215.4171097126007,215.44763101577757,215.47815231895447,215.50867362213134,215.53919492530824,215.5697162284851,215.60023753166197,215.63075883483887,215.66128013801574,215.6918014411926,215.7223227443695,215.75284404754638,215.78336535072327,215.81388665390014,215.844407957077,215.8749292602539,215.90545056343078,215.93597186660767,215.96649316978454,215.9970144729614,216.0275357761383,216.05805707931518,216.08857838249207,216.11909968566894,216.1496209888458,216.1801422920227,216.21066359519958,216.24118489837647,216.27170620155334,216.3022275047302,216.3327488079071,216.36327011108398,216.39379141426085,216.42431271743774,216.4548340206146,216.4853553237915,216.51587662696838,216.54639793014525,216.57691923332214,216.607440536499,216.6379618396759,216.66848314285278,216.69900444602965,216.72952574920654,216.7600470523834,216.7905683555603,216.82108965873718,216.85161096191405,216.88213226509095,216.9126535682678,216.9431748714447,216.97369617462158,217.00421747779845,217.03473878097535,217.06526008415221,217.0957813873291,217.12630269050598,217.15682399368285,217.18734529685975,217.21786660003661,217.24838790321348,217.27890920639038,217.30943050956725,217.33995181274415,217.37047311592102,217.40099441909788,217.43151572227478,217.46203702545165,217.49255832862855,217.52307963180542,217.55360093498228,217.58412223815918,217.61464354133605,217.64516484451295,217.67568614768982,217.70620745086669,217.73672875404358,217.76725005722045,217.79777136039735,217.82829266357422,217.8588139667511,217.88933526992798,217.91985657310485,217.95037787628172,217.98089917945862,218.0114204826355,218.04194178581238,218.07246308898925,218.10298439216612,218.13350569534302,218.1640269985199,218.19454830169678,218.22506960487365,218.25559090805052,218.28611221122742,218.3166335144043,218.34715481758118,218.37767612075805,218.40819742393492,218.43871872711182,218.4692400302887,218.49976133346559,218.53028263664245,218.56080393981932,218.59132524299622,218.6218465461731,218.65236784934996,218.68288915252685,218.71341045570372,218.74393175888062,218.7744530620575,218.80497436523436,218.83549566841126,218.86601697158812,218.89653827476502,218.9270595779419,218.95758088111876,218.98810218429566,219.01862348747252,219.04914479064942,219.0796660938263,219.11018739700316,219.14070870018006,219.17123000335692,219.20175130653382,219.2322726097107,219.26279391288756,219.29331521606446,219.32383651924133,219.35435782241822,219.3848791255951,219.41540042877196,219.44592173194886,219.47644303512573,219.5069643383026,219.5374856414795,219.56800694465636,219.59852824783326,219.62904955101013,219.659570854187,219.6900921573639,219.72061346054076,219.75113476371766,219.78165606689453,219.8121773700714,219.8426986732483,219.87321997642516,219.90374127960206,219.93426258277893,219.9647838859558,219.9953051891327,220.02582649230956,220.05634779548646,220.08686909866333,220.1173904018402,220.1479117050171,220.17843300819396,220.20895431137083,220.23947561454773,220.2699969177246,220.3005182209015,220.33103952407836,220.36156082725523,220.39208213043213,220.422603433609,220.4531247367859,220.48364603996276,220.51416734313963,220.54468864631653,220.5752099494934,220.6057312526703,220.63625255584716,220.66677385902403,220.69729516220093,220.7278164653778,220.7583377685547,220.78885907173157,220.81938037490843,220.84990167808533,220.8804229812622,220.91094428443907,220.94146558761597,220.97198689079283,221.00250819396973,221.0330294971466,221.06355080032347,221.09407210350037,221.12459340667723,221.15511470985413,221.185636013031,221.21615731620787,221.24667861938477,221.27719992256164,221.30772122573853,221.3382425289154,221.36876383209227,221.39928513526917,221.42980643844604,221.46032774162293,221.4908490447998,221.52137034797667,221.55189165115357,221.58241295433044,221.61293425750733,221.6434555606842,221.67397686386107,221.70449816703797,221.73501947021484,221.7655407733917,221.7960620765686,221.82658337974547,221.85710468292237,221.88762598609924,221.9181472892761,221.948668592453,221.97918989562987,222.00971119880677,222.04023250198364,222.0707538051605,222.1012751083374,222.13179641151427,222.16231771469117,222.19283901786804,222.2233603210449,222.2538816242218,222.28440292739867,222.31492423057557,222.34544553375244,222.3759668369293,222.4064881401062,222.43700944328307,222.46753074645994,222.49805204963684,222.5285733528137,222.5590946559906,222.58961595916747,222.62013726234434,222.65065856552124,222.6811798686981,222.711701171875,222.74222247505188,222.77274377822874,222.80326508140564,222.8337863845825,222.8643076877594,222.89482899093628,222.92535029411314,222.95587159729004,222.9863929004669,223.0169142036438,223.04743550682068,223.07795680999754,223.10847811317444,223.1389994163513,223.1695207195282,223.20004202270508,223.23056332588195,223.26108462905884,223.2916059322357,223.32212723541258,223.35264853858948,223.38316984176635,223.41369114494324,223.4442124481201,223.47473375129698,223.50525505447388,223.53577635765075,223.56629766082764,223.5968189640045,223.62734026718138,223.65786157035828,223.68838287353515,223.71890417671204,223.7494254798889,223.77994678306578,223.81046808624268,223.84098938941955,223.87151069259644,223.9020319957733,223.93255329895018,223.96307460212708,223.99359590530395,224.02411720848082,224.0546385116577,224.08515981483458,224.11568111801148,224.14620242118835,224.17672372436522,224.20724502754211,224.23776633071898,224.26828763389588,224.29880893707275,224.32933024024962,224.35985154342652,224.39037284660338,224.42089414978028,224.45141545295715,224.48193675613402,224.51245805931092,224.54297936248778,224.57350066566468,224.60402196884155,224.63454327201842,224.66506457519532,224.69558587837219,224.72610718154905,224.75662848472595,224.78714978790282,224.81767109107972,224.84819239425659,224.87871369743345,224.90923500061035,224.93975630378722,224.97027760696412,225.000798910141,225.03132021331785,225.06184151649475,225.09236281967162,225.12288412284852,225.1534054260254,225.18392672920226,225.21444803237915,225.24496933555602,225.27549063873292,225.3060119419098,225.33653324508666,225.36705454826355,225.39757585144042,225.42809715461732,225.4586184577942,225.48913976097106,225.51966106414795,225.55018236732482,225.5807036705017,225.6112249736786,225.64174627685546,225.67226758003235,225.70278888320922,225.7333101863861,225.763831489563,225.79435279273986,225.82487409591675,225.85539539909362,225.8859167022705,225.9164380054474,225.94695930862426,225.97748061180116,226.00800191497802,226.0385232181549,226.0690445213318,226.09956582450866,226.13008712768556,226.16060843086242,226.1911297340393,226.2216510372162,226.25217234039306,226.28269364356993,226.31321494674683,226.3437362499237,226.3742575531006,226.40477885627746,226.43530015945433,226.46582146263123,226.4963427658081,226.526864068985,226.55738537216186,226.58790667533873,226.61842797851563,226.6489492816925,226.6794705848694,226.70999188804626,226.74051319122313,226.77103449440003,226.8015557975769,226.8320771007538,226.86259840393066,226.89311970710753,226.92364101028443,226.9541623134613,226.9846836166382,227.01520491981506,227.04572622299193,227.07624752616883,227.1067688293457,227.13729013252257,227.16781143569946,227.19833273887633,227.22885404205323,227.2593753452301,227.28989664840697,227.32041795158386,227.35093925476073,227.38146055793763,227.4119818611145,227.44250316429137,227.47302446746826,227.50354577064513,227.53406707382203,227.5645883769989,227.59510968017577,227.62563098335266,227.65615228652953,227.68667358970643,227.7171948928833,227.74771619606017,227.77823749923706,227.80875880241393,227.8392801055908,227.8698014087677,227.90032271194457,227.93084401512147,227.96136531829833,227.9918866214752,228.0224079246521,228.05292922782897,228.08345053100587,228.11397183418273,228.1444931373596,228.1750144405365,228.20553574371337,228.23605704689027,228.26657835006714,228.297099653244,228.3276209564209,228.35814225959777,228.38866356277467,228.41918486595154,228.4497061691284,228.4802274723053,228.51074877548217,228.54127007865904,228.57179138183594,228.6023126850128,228.6328339881897,228.66335529136657,228.69387659454344,228.72439789772034,228.7549192008972,228.7854405040741,228.81596180725097,228.84648311042784,228.87700441360474,228.9075257167816,228.9380470199585,228.96856832313537,228.99908962631224,229.02961092948914,229.060132232666,229.0906535358429,229.12117483901977,229.15169614219664,229.18221744537354,229.2127387485504,229.2432600517273,229.27378135490417,229.30430265808104,229.33482396125794,229.3653452644348,229.39586656761168,229.42638787078857,229.45690917396544,229.48743047714234,229.5179517803192,229.54847308349608,229.57899438667297,229.60951568984984,229.64003699302674,229.6705582962036,229.70107959938048,229.73160090255737,229.76212220573424,229.79264350891114,229.823164812088,229.85368611526488,229.88420741844178,229.91472872161864,229.94525002479554,229.9757713279724,230.00629263114928,230.03681393432618,230.06733523750304,230.0978565406799,230.1283778438568,230.15889914703368,230.18942045021058,230.21994175338745,230.2504630565643,230.2809843597412,230.31150566291808,230.34202696609498,230.37254826927185,230.40306957244871,230.4335908756256,230.46411217880248,230.49463348197938,230.52515478515625,230.55567608833312,230.58619739151,230.61671869468688,230.64723999786378,230.67776130104065,230.70828260421752,230.7388039073944,230.76932521057128,230.79984651374815,230.83036781692505,230.86088912010192,230.8914104232788,230.92193172645568,230.95245302963255,230.98297433280945,231.01349563598632,231.0440169391632,231.07453824234008,231.10505954551695,231.13558084869385,231.16610215187072,231.19662345504761,231.22714475822448,231.25766606140135,231.28818736457825,231.31870866775512,231.34922997093202,231.37975127410888,231.41027257728575,231.44079388046265,231.47131518363952,231.50183648681642,231.53235778999328,231.56287909317015,231.59340039634705,231.62392169952392,231.6544430027008,231.68496430587768,231.71548560905455,231.74600691223145,231.77652821540832,231.8070495185852,231.83757082176209,231.86809212493895,231.89861342811585,231.92913473129272,231.9596560344696,231.9901773376465,232.02069864082335,232.05121994400025,232.08174124717712,232.112262550354,232.1427838535309,232.17330515670776,232.20382645988465,232.23434776306152,232.2648690662384,232.2953903694153,232.32591167259216,232.35643297576902,232.38695427894592,232.4174755821228,232.4479968852997,232.47851818847656,232.50903949165343,232.53956079483032,232.5700820980072,232.6006034011841,232.63112470436096,232.66164600753783,232.69216731071472,232.7226886138916,232.7532099170685,232.78373122024536,232.81425252342223,232.84477382659912,232.875295129776,232.9058164329529,232.93633773612976,232.96685903930663,232.99738034248352,233.0279016456604,233.0584229488373,233.08894425201416,233.11946555519103,233.14998685836792,233.1805081615448,233.21102946472166,233.24155076789856,233.27207207107543,233.30259337425233,233.3331146774292,233.36363598060606,233.39415728378296,233.42467858695983,233.45519989013673,233.4857211933136,233.51624249649046,233.54676379966736,233.57728510284423,233.60780640602113,233.638327709198,233.66884901237486,233.69937031555176,233.72989161872863,233.76041292190553,233.7909342250824,233.82145552825926,233.85197683143616,233.88249813461303,233.9130194377899,233.9435407409668,233.97406204414366,234.00458334732056,234.03510465049743,234.0656259536743,234.0961472568512,234.12666856002807,234.15718986320496,234.18771116638183,234.2182324695587,234.2487537727356,234.27927507591247,234.30979637908936,234.34031768226623,234.3708389854431,234.40136028862,234.43188159179687,234.46240289497376,234.49292419815063,234.5234455013275,234.5539668045044,234.58448810768127,234.61500941085814,234.64553071403503,234.6760520172119,234.7065733203888,234.73709462356567,234.76761592674254,234.79813722991943,234.8286585330963,234.8591798362732,234.88970113945007,234.92022244262694,234.95074374580383,234.9812650489807,235.0117863521576,235.04230765533447,235.07282895851134,235.10335026168823,235.1338715648651,235.164392868042,235.19491417121887,235.22543547439574,235.25595677757264,235.2864780807495,235.3169993839264,235.34752068710327,235.37804199028014,235.40856329345704,235.4390845966339,235.46960589981077,235.50012720298767,235.53064850616454,235.56116980934144,235.5916911125183,235.62221241569517,235.65273371887207,235.68325502204894,235.71377632522584,235.7442976284027,235.77481893157957,235.80534023475647,235.83586153793334,235.86638284111024,235.8969041442871,235.92742544746397,235.95794675064087,235.98846805381774,236.01898935699464,236.0495106601715,236.08003196334838,236.11055326652527,236.14107456970214,236.171595872879,236.2021171760559,236.23263847923278,236.26315978240967,236.29368108558654,236.3242023887634,236.3547236919403,236.38524499511718,236.41576629829407,236.44628760147094,236.4768089046478,236.5073302078247,236.53785151100158,236.56837281417847,236.59889411735534,236.6294154205322,236.6599367237091,236.69045802688598,236.72097933006287,236.75150063323974,236.7820219364166,236.8125432395935,236.84306454277038,236.87358584594725,236.90410714912414,236.934628452301,236.9651497554779,236.99567105865478,237.02619236183165,237.05671366500854,237.0872349681854,237.1177562713623,237.14827757453918,237.17879887771605,237.20932018089295,237.2398414840698,237.2703627872467,237.30088409042358,237.33140539360045,237.36192669677735,237.39244799995421,237.4229693031311,237.45349060630798,237.48401190948485,237.51453321266175,237.54505451583861,237.5755758190155,237.60609712219238,237.63661842536925,237.66713972854615,237.69766103172302,237.72818233489988,237.75870363807678,237.78922494125365,237.81974624443055,237.85026754760742,237.88078885078428,237.91131015396118,237.94183145713805,237.97235276031495,238.00287406349182,238.03339536666869,238.06391666984558,238.09443797302245,238.12495927619935,238.15548057937622,238.1860018825531,238.21652318572998,238.24704448890685,238.27756579208375,238.30808709526062,238.3386083984375,238.36912970161438,238.39965100479125,238.43017230796812,238.46069361114502,238.4912149143219,238.52173621749878,238.55225752067565,238.58277882385252,238.61330012702942,238.6438214302063,238.67434273338318,238.70486403656005,238.73538533973692,238.76590664291382,238.7964279460907,238.82694924926759,238.85747055244445,238.88799185562132,238.91851315879822,238.9490344619751,238.97955576515199,239.01007706832885,239.04059837150572,239.07111967468262,239.1016409778595,239.1321622810364,239.16268358421326,239.19320488739012,239.22372619056702,239.2542474937439,239.28476879692076,239.31529010009766,239.34581140327452,239.37633270645142,239.4068540096283,239.43737531280516,239.46789661598206,239.49841791915892,239.52893922233582,239.5594605255127,239.58998182868956,239.62050313186646,239.65102443504333,239.68154573822022,239.7120670413971,239.74258834457396,239.77310964775086,239.80363095092773,239.83415225410462,239.8646735572815,239.89519486045836,239.92571616363526,239.95623746681213,239.986758769989,240.0172800731659,240.04780137634276,240.07832267951966,240.10884398269653,240.1393652858734,240.1698865890503,240.20040789222716,240.23092919540406,240.26145049858093,240.2919718017578,240.3224931049347,240.35301440811156,240.38353571128846,240.41405701446533,240.4445783176422,240.4750996208191,240.50562092399596,240.53614222717286,240.56666353034973,240.5971848335266,240.6277061367035,240.65822743988036,240.68874874305723,240.71927004623413,240.749791349411,240.7803126525879,240.81083395576476,240.84135525894163,240.87187656211853,240.9023978652954,240.9329191684723,240.96344047164916,240.99396177482603,241.02448307800293,241.0550043811798,241.0855256843567,241.11604698753357,241.14656829071043,241.17708959388733,241.2076108970642,241.2381322002411,241.26865350341797,241.29917480659483,241.32969610977173,241.3602174129486,241.3907387161255,241.42126001930237,241.45178132247923,241.48230262565613,241.512823928833,241.54334523200987,241.57386653518677,241.60438783836364,241.63490914154053,241.6654304447174,241.69595174789427,241.72647305107117,241.75699435424804,241.78751565742493,241.8180369606018,241.84855826377867,241.87907956695557,241.90960087013244,241.94012217330933,241.9706434764862,242.00116477966307,242.03168608283997,242.06220738601684,242.09272868919373,242.1232499923706,242.15377129554747,242.18429259872437,242.21481390190124,242.2453352050781,242.275856508255,242.30637781143187,242.33689911460877,242.36742041778564,242.3979417209625,242.4284630241394,242.45898432731627,242.48950563049317,242.52002693367004,242.5505482368469,242.5810695400238,242.61159084320067,242.64211214637757,242.67263344955444,242.7031547527313,242.7336760559082,242.76419735908507,242.79471866226197,242.82523996543884,242.8557612686157,242.8862825717926,242.91680387496947,242.94732517814634,242.97784648132324,243.0083677845001,243.038889087677,243.06941039085388,243.09993169403074,243.13045299720764,243.1609743003845,243.1914956035614,243.22201690673828,243.25253820991514,243.28305951309204,243.3135808162689,243.3441021194458,243.37462342262268,243.40514472579954,243.43566602897644,243.4661873321533,243.4967086353302,243.52722993850708,243.55775124168395,243.58827254486084,243.6187938480377,243.6493151512146,243.67983645439148,243.71035775756835,243.74087906074524,243.7714003639221,243.80192166709898,243.83244297027588,243.86296427345275,243.89348557662964,243.9240068798065,243.95452818298338,243.98504948616028,244.01557078933715,244.04609209251404,244.0766133956909,244.10713469886778,244.13765600204468,244.16817730522155,244.19869860839844,244.2292199115753,244.25974121475218,244.29026251792908,244.32078382110595,244.35130512428285,244.3818264274597,244.41234773063658,244.44286903381348,244.47339033699035,244.50391164016722,244.53443294334411,244.56495424652098,244.59547554969788,244.62599685287475,244.65651815605162,244.68703945922852,244.71756076240538,244.74808206558228,244.77860336875915,244.80912467193602,244.83964597511292,244.87016727828978,244.90068858146668,244.93120988464355,244.96173118782042,244.99225249099732,245.02277379417419,245.05329509735108,245.08381640052795,245.11433770370482,245.14485900688172,245.17538031005859,245.20590161323548,245.23642291641235,245.26694421958922,245.29746552276612,245.327986825943,245.35850812911985,245.38902943229675,245.41955073547362,245.45007203865052,245.4805933418274,245.51111464500426,245.54163594818115,245.57215725135802,245.60267855453492,245.6331998577118,245.66372116088866,245.69424246406555,245.72476376724242,245.75528507041932,245.7858063735962,245.81632767677306,245.84684897994995,245.87737028312682,245.90789158630372,245.9384128894806,245.96893419265746,245.99945549583435,246.02997679901122,246.0604981021881,246.091019405365,246.12154070854186,246.15206201171875,246.18258331489562,246.2131046180725,246.2436259212494,246.27414722442626,246.30466852760316,246.33518983078002,246.3657111339569,246.3962324371338,246.42675374031066,246.45727504348756,246.48779634666442,246.5183176498413,246.5488389530182,246.57936025619506,246.60988155937196,246.64040286254883,246.6709241657257,246.7014454689026,246.73196677207946,246.76248807525633,246.79300937843323,246.8235306816101,246.854051984787,246.88457328796386,246.91509459114073,246.94561589431763,246.9761371974945,247.0066585006714,247.03717980384826,247.06770110702513,247.09822241020203,247.1287437133789,247.1592650165558,247.18978631973266,247.22030762290953,247.25082892608643,247.2813502292633,247.3118715324402,247.34239283561706,247.37291413879393,247.40343544197083,247.4339567451477,247.4644780483246,247.49499935150146,247.52552065467833,247.55604195785523,247.5865632610321,247.61708456420897,247.64760586738586,247.67812717056273,247.70864847373963,247.7391697769165,247.76969108009337,247.80021238327026,247.83073368644713,247.86125498962403,247.8917762928009,247.92229759597777,247.95281889915466,247.98334020233153,248.01386150550843,248.0443828086853,248.07490411186217,248.10542541503906,248.13594671821593,248.16646802139283,248.1969893245697,248.22751062774657,248.25803193092347,248.28855323410033,248.3190745372772,248.3495958404541,248.38011714363097,248.41063844680787,248.44115974998473,248.4716810531616,248.5022023563385,248.53272365951537,248.56324496269227,248.59376626586914,248.624287569046,248.6548088722229,248.68533017539977,248.71585147857667,248.74637278175354,248.7768940849304,248.8074153881073,248.83793669128417,248.86845799446107,248.89897929763794,248.9295006008148,248.9600219039917,248.99054320716857,249.02106451034547,249.05158581352234,249.0821071166992,249.1126284198761,249.14314972305297,249.17367102622984,249.20419232940674,249.2347136325836,249.2652349357605,249.29575623893737,249.32627754211424,249.35679884529114,249.387320148468,249.4178414516449,249.44836275482177,249.47888405799864,249.50940536117554,249.5399266643524,249.5704479675293,249.60096927070617,249.63149057388304,249.66201187705994,249.6925331802368,249.7230544834137,249.75357578659057,249.78409708976744,249.81461839294434,249.8451396961212,249.87566099929808,249.90618230247497,249.93670360565184,249.96722490882874,249.9977462120056,250.02826751518248,250.05878881835937,250.08931012153624,250.11983142471314,250.15035272789,250.18087403106688,250.21139533424378,250.24191663742064,250.27243794059754,250.3029592437744,250.33348054695128,250.36400185012818,250.39452315330504,250.42504445648194,250.4555657596588,250.48608706283568,250.51660836601258,250.54712966918945,250.5776509723663,250.6081722755432,250.63869357872008,250.66921488189698,250.69973618507385,250.73025748825071,250.7607787914276,250.79130009460448,250.82182139778138,250.85234270095825,250.88286400413512,250.913385307312,250.94390661048888,250.97442791366578,251.00494921684265,251.03547052001952,251.0659918231964,251.09651312637328,251.12703442955018,251.15755573272705,251.18807703590392,251.2185983390808,251.24911964225768,251.27964094543458,251.31016224861145,251.34068355178832,251.3712048549652,251.40172615814208,251.43224746131895,251.46276876449585,251.49329006767272,251.52381137084961,251.55433267402648,251.58485397720335,251.61537528038025,251.64589658355712,251.67641788673401,251.70693918991088,251.73746049308775,251.76798179626465,251.79850309944152,251.82902440261842,251.85954570579528,251.89006700897215,251.92058831214905,251.95110961532592,251.98163091850282,252.01215222167968,252.04267352485655,252.07319482803345,252.10371613121032,252.1342374343872,252.16475873756409,252.19528004074095,252.22580134391785,252.25632264709472,252.2868439502716,252.3173652534485,252.34788655662535,252.37840785980225,252.40892916297912,252.439450466156,252.4699717693329,252.50049307250976,252.53101437568665,252.56153567886352,252.5920569820404,252.6225782852173,252.65309958839416,252.68362089157105,252.71414219474792,252.7446634979248,252.7751848011017,252.80570610427856,252.83622740745543,252.86674871063232,252.8972700138092,252.9277913169861,252.95831262016296,252.98883392333983,253.01935522651672,253.0498765296936,253.0803978328705,253.11091913604736,253.14144043922423,253.17196174240112,253.202483045578,253.2330043487549,253.26352565193176,253.29404695510863,253.32456825828552,253.3550895614624,253.3856108646393,253.41613216781616,253.44665347099303,253.47717477416992,253.5076960773468,253.5382173805237,253.56873868370056,253.59925998687743,253.62978129005432,253.6603025932312,253.69082389640806,253.72134519958496,253.75186650276183,253.78238780593873,253.8129091091156,253.84343041229246,253.87395171546936,253.90447301864623,253.93499432182313,253.93499432182313]},{"y":[0.9758124,0.9755146,0.97521687,0.97491926,0.9746218,0.97432435,0.97402704,0.9737297,0.9734326,0.97313553,0.9728386,0.9725417,0.9722449,0.97194827,0.9716516,0.97135514,0.97105867,0.9707624,0.9704661,0.97016996,0.96987385,0.9695779,0.96928203,0.9689863,0.9686905,0.9683949,0.9680994,0.96780396,0.9675086,0.9672134,0.96691823,0.9666231,0.96632814,0.9660332,0.9657385,0.9654438,0.96514916,0.9648546,0.96456015,0.9642658,0.96397156,0.96367735,0.9633833,0.9630893,0.9627954,0.9625016,0.96220785,0.96191424,0.9616207,0.9613272,0.9610339,0.96074057,0.96044743,0.96015435,0.9598613,0.9595684,0.9592756,0.9589828,0.95869017,0.9583976,0.95810515,0.9578128,0.9575204,0.9572283,0.9569361,0.9566441,0.9563522,0.95606035,0.9557686,0.9554769,0.95518535,0.9548938,0.9546025,0.95431113,0.9540199,0.95372874,0.95343775,0.95314676,0.9528559,0.95256513,0.9522744,0.95198387,0.95169336,0.9514029,0.95111257,0.9508223,0.95053214,0.9502421,0.9499521,0.9496622,0.9493724,0.9490827,0.94879305,0.9485035,0.94821405,0.9479247,0.9476354,0.94734627,0.9470572,0.9467681,0.9464792,0.94619036,0.9459016,0.94561297,0.9453244,0.9450359,0.9447475,0.9444592,0.944171,0.9438829,0.9435948,0.9433069,0.94301903,0.9427312,0.94244355,0.9421559,0.9418684,0.941581,0.94129366,0.9410064,0.94071925,0.94043213,0.94014513,0.9398583,0.9395715,0.93928474,0.9389981,0.9387115,0.9384251,0.9381387,0.93785244,0.9375662,0.9372801,0.9369941,0.93670815,0.9364223,0.93613654,0.93585086,0.9355653,0.9352797,0.93499434,0.934709,0.93442374,0.93413866,0.93385357,0.93356854,0.9332837,0.9329989,0.9327141,0.9324295,0.932145,0.9318605,0.93157613,0.9312919,0.9310076,0.93072355,0.9304395,0.9301556,0.9298717,0.92958796,0.92930424,0.9290207,0.92873716,0.92845374,0.92817044,0.9278872,0.927604,0.92732096,0.92703795,0.9267551,0.92647225,0.92618954,0.9259069,0.9256243,0.92534184,0.92505944,0.92477715,0.9244949,0.9242128,0.9239308,0.9236489,0.923367,0.9230852,0.92280346,0.9225219,0.9222404,0.9219589,0.9216776,0.9213963,0.92111516,0.92083406,0.920553,0.9202721,0.91999125,0.9197106,0.91942984,0.9191493,0.91886884,0.91858834,0.9183081,0.9180278,0.9177477,0.91746765,0.91718763,0.9169077,0.9166279,0.9163482,0.91606855,0.915789,0.9155095,0.91523015,0.91495085,0.91467166,0.9143925,0.9141135,0.9138345,0.9135556,0.91327685,0.9129982,0.91271955,0.912441,0.91216254,0.9118842,0.9116059,0.9113278,0.91104966,0.9107716,0.9104937,0.91021585,0.90993804,0.9096604,0.90938276,0.9091053,0.90882784,0.90855044,0.9082732,0.90799606,0.90771896,0.907442,0.90716505,0.9068882,0.90661144,0.9063348,0.9060582,0.9057817,0.9055053,0.9052289,0.9049527,0.90467656,0.90440047,0.9041245,0.9038485,0.90357274,0.903297,0.90302134,0.9027458,0.9024703,0.90219486,0.9019196,0.90164435,0.90136915,0.90109414,0.9008191,0.9005442,0.90026945,0.8999947,0.89972,0.8994455,0.89917094,0.89889663,0.8986223,0.89834803,0.8980739,0.89779985,0.89752585,0.89725196,0.89697814,0.89670444,0.8964308,0.8961572,0.89588374,0.89561033,0.89533705,0.8950638,0.8947907,0.8945176,0.8942446,0.89397174,0.89369893,0.89342624,0.89315355,0.892881,0.8926085,0.89233613,0.8920638,0.8917916,0.8915194,0.8912474,0.8909754,0.8907035,0.8904317,0.89015996,0.88988835,0.8896167,0.8893453,0.88907385,0.8888025,0.8885313,0.8882602,0.88798916,0.88771814,0.88744724,0.8871764,0.88690567,0.886635,0.8863644,0.8860939,0.88582355,0.88555324,0.885283,0.8850128,0.88474274,0.8844727,0.88420284,0.883933,0.88366324,0.8833936,0.883124,0.8828545,0.8825851,0.88231575,0.8820465,0.88177735,0.88150823,0.88123924,0.88097036,0.8807014,0.8804327,0.880164,0.87989545,0.8796269,0.8793585,0.87909013,0.8788219,0.8785537,0.8782856,0.87801754,0.8777496,0.87748176,0.87721395,0.8769463,0.87667865,0.8764111,0.87614363,0.87587625,0.875609,0.8753418,0.8750747,0.87480766,0.8745407,0.87427384,0.874007,0.87374026,0.87347364,0.8732071,0.8729406,0.8726742,0.87240785,0.87214166,0.8718755,0.87160945,0.8713435,0.87107754,0.87081176,0.87054604,0.8702804,0.8700147,0.86974925,0.8694838,0.86921847,0.8689532,0.8686881,0.868423,0.868158,0.86789304,0.8676282,0.86736345,0.8670987,0.8668341,0.8665696,0.8663052,0.86604077,0.8657765,0.8655123,0.86524814,0.8649841,0.86472017,0.8644563,0.8641924,0.8639287,0.8636651,0.86340153,0.863138,0.8628746,0.8626113,0.8623481,0.8620849,0.86182183,0.86155885,0.86129594,0.8610331,0.8607703,0.8605076,0.86024505,0.8599825,0.8597201,0.85945773,0.8591955,0.85893327,0.8586711,0.8584091,0.85814714,0.8578853,0.85762346,0.85736173,0.85710007,0.8568386,0.8565771,0.8563157,0.85605437,0.8557931,0.855532,0.85527086,0.8550099,0.85474896,0.85448813,0.85422736,0.8539667,0.85370606,0.8534456,0.8531851,0.85292476,0.8526645,0.85240424,0.8521441,0.85188407,0.85162413,0.8513642,0.8511044,0.8508447,0.85058504,0.8503255,0.850066,0.84980655,0.8495472,0.849288,0.8490288,0.8487697,0.8485107,0.84825176,0.8479929,0.84773415,0.84747547,0.84721684,0.8469583,0.84669983,0.84644145,0.8461831,0.8459249,0.84566677,0.8454087,0.8451507,0.8448928,0.84463495,0.84437716,0.8441195,0.8438619,0.8436044,0.84334695,0.8430896,0.84283227,0.8425751,0.842318,0.8420609,0.84180397,0.8415471,0.8412903,0.8410335,0.84077686,0.8405203,0.8402638,0.84000736,0.839751,0.83949476,0.8392386,0.83898246,0.83872646,0.83847046,0.83821464,0.8379588,0.8377031,0.83744746,0.83719194,0.8369364,0.83668107,0.83642566,0.8361705,0.83591527,0.8356602,0.8354052,0.83515024,0.8348954,0.83464056,0.8343859,0.83413124,0.8338767,0.8336223,0.8333678,0.8331135,0.8328593,0.8326051,0.832351,0.832097,0.83184314,0.8315893,0.8313355,0.8310818,0.8308282,0.83057463,0.8303212,0.8300678,0.8298145,0.82956123,0.8293081,0.829055,0.828802,0.8285491,0.82829624,0.8280435,0.8277908,0.82753813,0.8272856,0.82703316,0.8267808,0.8265285,0.8262763,0.8260241,0.82577205,0.82552004,0.8252681,0.8250163,0.8247645,0.82451284,0.8242612,0.82400966,0.8237582,0.8235068,0.8232555,0.82300425,0.82275313,0.8225021,0.822251,0.82200015,0.8217493,0.8214985,0.8212478,0.82099724,0.82074666,0.8204962,0.8202458,0.81999546,0.81974524,0.8194951,0.81924504,0.81899506,0.8187451,0.8184952,0.8182455,0.8179957,0.8177461,0.8174966,0.8172471,0.8169977,0.8167484,0.8164992,0.81624997,0.8160009,0.8157519,0.8155029,0.8152541,0.8150053,0.8147566,0.81450796,0.8142594,0.81401086,0.8137625,0.8135142,0.8132659,0.81301767,0.8127696,0.8125216,0.8122736,0.8120257,0.81177795,0.81153023,0.8112825,0.811035,0.8107875,0.8105401,0.8102927,0.8100454,0.80979824,0.80955106,0.809304,0.80905706,0.8088102,0.80856335,0.8083166,0.80806994,0.80782336,0.80757684,0.80733037,0.807084,0.8068377,0.80659145,0.80634534,0.80609924,0.8058533,0.8056074,0.8053615,0.80511576,0.80487007,0.80462444,0.80437887,0.8041334,0.803888,0.8036427,0.8033975,0.8031523,0.80290717,0.8026622,0.8024172,0.80217236,0.80192757,0.8016829,0.8014382,0.80119365,0.80094916,0.8007047,0.8004604,0.8002161,0.79997194,0.7997278,0.7994837,0.79923975,0.79899585,0.798752,0.7985083,0.79826456,0.79802096,0.7977775,0.797534,0.7972906,0.7970473,0.7968041,0.79656094,0.7963179,0.7960748,0.7958319,0.795589,0.7953462,0.7951035,0.7948609,0.79461837,0.79437584,0.79413337,0.7938911,0.7936488,0.7934066,0.7931645,0.79292244,0.79268044,0.79243857,0.7921967,0.791955,0.79171336,0.7914717,0.79123014,0.7909887,0.79074734,0.79050606,0.7902648,0.7900236,0.7897825,0.78954154,0.7893006,0.7890597,0.78881896,0.7885782,0.7883375,0.78809696,0.78785646,0.7876161,0.7873757,0.7871354,0.7868952,0.78665507,0.78641504,0.7861751,0.7859351,0.78569525,0.78545547,0.7852158,0.7849762,0.78473663,0.7844972,0.78425777,0.78401846,0.7837792,0.78354,0.7833009,0.7830618,0.7828229,0.782584,0.7823452,0.7821064,0.78186774,0.78162915,0.7813906,0.7811522,0.78091383,0.7806755,0.78043723,0.78019905,0.779961,0.779723,0.77948505,0.77924716,0.77900934,0.7787716,0.77853394,0.77829635,0.7780589,0.7778215,0.7775841,0.7773468,0.77710956,0.7768724,0.77663535,0.77639836,0.77616143,0.7759245,0.77568775,0.77545106,0.77521443,0.77497786,0.77474135,0.7745049,0.77426857,0.7740323,0.7737961,0.7735599,0.7733239,0.7730879,0.772852,0.77261615,0.77238035,0.7721446,0.771909,0.77167344,0.77143794,0.77120256,0.7709672,0.7707319,0.7704967,0.7702616,0.77002656,0.76979154,0.76955664,0.7693218,0.769087,0.76885235,0.7686177,0.76838315,0.76814866,0.76791424,0.7676799,0.7674457,0.76721144,0.7669773,0.76674324,0.76650923,0.76627535,0.7660415,0.76580775,0.7655741,0.76534045,0.76510686,0.7648734,0.76464,0.7644066,0.7641733,0.76394016,0.76370704,0.7634739,0.763241,0.76300806,0.76277524,0.7625424,0.76230973,0.76207715,0.7618445,0.76161206,0.76137966,0.76114726,0.760915,0.76068276,0.76045066,0.7602186,0.75998664,0.7597547,0.75952286,0.7592911,0.75905937,0.7588277,0.7585961,0.7583646,0.75813323,0.75790185,0.7576706,0.7574394,0.7572082,0.75697714,0.7567462,0.7565152,0.75628436,0.75605357,0.75582284,0.75559217,0.7553616,0.75513107,0.75490063,0.75467026,0.75443995,0.75420976,0.75397956,0.7537495,0.7535195,0.7532895,0.7530596,0.75282985,0.7526001,0.7523704,0.7521408,0.7519113,0.75168186,0.75145245,0.75122315,0.7509939,0.7507647,0.7505356,0.75030655,0.7500776,0.7498487,0.7496199,0.74939114,0.74916244,0.7489338,0.74870527,0.74847674,0.7482484,0.74802,0.74779177,0.74756354,0.74733543,0.7471074,0.7468794,0.7466515,0.7464236,0.7461958,0.7459681,0.7457405,0.7455129,0.7452854,0.74505794,0.74483055,0.7446033,0.74437606,0.7441489,0.74392176,0.7436948,0.7434678,0.74324095,0.7430141,0.74278736,0.74256074,0.74233407,0.74210757,0.74188113,0.7416547,0.7414284,0.7412021,0.7409759,0.7407498,0.74052376,0.74029773,0.74007183,0.739846,0.7396202,0.73939455,0.7391689,0.73894334,0.7387178,0.7384924,0.738267,0.73804176,0.7378165,0.7375914,0.73736626,0.73714125,0.7369163,0.7366914,0.7364666,0.7362418,0.73601717,0.7357926,0.73556805,0.7353436,0.73511916,0.7348948,0.7346706,0.73444635,0.73422223,0.7339982,0.7337742,0.73355025,0.73332644,0.7331026,0.73287886,0.7326552,0.7324317,0.73220813,0.73198473,0.73176134,0.731538,0.7313148,0.7310916,0.7308685,0.7306455,0.7304225,0.7301996,0.7299768,0.72975403,0.7295313,0.72930866,0.7290861,0.7288636,0.7286412,0.7284189,0.72819656,0.72797436,0.72775215,0.72753006,0.7273081,0.7270861,0.7268643,0.72664243,0.7264207,0.726199,0.72597736,0.7257559,0.7255344,0.72531295,0.72509164,0.7248703,0.72464913,0.724428,0.7242069,0.7239859,0.723765,0.7235441,0.72332335,0.72310257,0.7228819,0.7226613,0.7224408,0.7222203,0.72199994,0.72177964,0.72155935,0.72133917,0.721119,0.7208989,0.7206789,0.72045904,0.72023916,0.7200194,0.71979964,0.71958,0.7193604,0.7191409,0.7189214,0.718702,0.71848273,0.71826345,0.7180443,0.7178252,0.71760607,0.7173871,0.71716815,0.71694934,0.71673054,0.7165118,0.71629316,0.7160745,0.715856,0.71563756,0.7154192,0.71520084,0.71498257,0.7147644,0.7145463,0.7143282,0.71411026,0.71389234,0.7136745,0.7134567,0.71323895,0.71302134,0.7128037,0.71258616,0.7123687,0.71215135,0.71193403,0.7117168,0.7114996,0.71128243,0.71106535,0.7108484,0.71063143,0.7104146,0.7101978,0.7099811,0.7097644,0.7095478,0.7093313,0.70911485,0.7088984,0.7086821,0.7084658,0.7082496,0.7080335,0.70781744,0.7076014,0.7073855,0.7071696,0.7069538,0.7067381,0.7065224,0.7063068,0.7060913,0.70587575,0.7056604,0.70544505,0.70522976,0.7050146,0.7047994,0.7045843,0.7043693,0.7041544,0.7039395,0.7037246,0.70350987,0.70329523,0.70308053,0.702866,0.7026515,0.7024371,0.70222276,0.7020085,0.7017942,0.70158005,0.70136595,0.7011519,0.7009379,0.70072407,0.70051026,0.70029646,0.7000827,0.6998691,0.69965553,0.699442,0.6992285,0.6990152,0.6988019,0.6985886,0.6983754,0.6981623,0.6979493,0.69773626,0.6975233,0.69731045,0.69709766,0.696885,0.69667226,0.69645965,0.6962471,0.69603467,0.6958223,0.6956099,0.6953977,0.6951854,0.6949733,0.6947612,0.69454914,0.69433725,0.69412535,0.6939135,0.6937018,0.6934901,0.69327843,0.6930669,0.69285536,0.69264394,0.6924325,0.6922212,0.69201,0.69179887,0.69158775,0.6913767,0.6911657,0.6909548,0.6907439,0.6905331,0.6903224,0.69011176,0.6899011,0.6896906,0.6894801,0.6892697,0.6890594,0.6888491,0.6886389,0.68842876,0.68821865,0.6880086,0.6877987,0.6875888,0.68737894,0.6871692,0.68695945,0.6867498,0.68654025,0.68633074,0.6861213,0.68591195,0.6857026,0.68549335,0.6852842,0.68507504,0.684866,0.684657,0.68444806,0.6842392,0.68403035,0.6838216,0.683613,0.6834044,0.68319577,0.6829873,0.6827789,0.6825705,0.6823622,0.682154,0.6819458,0.6817377,0.6815297,0.6813217,0.6811138,0.68090594,0.6806981,0.6804904,0.6802828,0.68007517,0.6798676,0.67966014,0.6794528,0.6792454,0.6790381,0.67883086,0.67862374,0.67841667,0.6782096,0.6780026,0.67779577,0.6775889,0.6773821,0.6771754,0.67696875,0.67676216,0.67655563,0.67634916,0.67614275,0.6759364,0.67573017,0.67552394,0.6753178,0.6751117,0.6749057,0.6746997,0.67449385,0.67428803,0.6740823,0.6738765,0.6736709,0.6734653,0.6732598,0.67305434,0.67284894,0.6726436,0.6724383,0.67223316,0.672028,0.6718229,0.67161787,0.67141294,0.671208,0.6710032,0.6707984,0.67059374,0.6703891,0.67018455,0.66998005,0.66977555,0.66957116,0.66936684,0.6691626,0.66895837,0.6687542,0.66855013,0.6683461,0.66814214,0.66793823,0.66773444,0.66753066,0.6673269,0.6671233,0.6669197,0.6667162,0.6665127,0.6663093,0.666106,0.66590273,0.66569954,0.6654964,0.6652933,0.66509026,0.6648873,0.66468436,0.6644816,0.66427875,0.6640761,0.6638734,0.66367084,0.66346824,0.6632658,0.6630634,0.66286105,0.66265875,0.6624565,0.6622544,0.66205233,0.6618503,0.6616483,0.66144633,0.6612445,0.66104275,0.66084105,0.66063935,0.6604377,0.6602362,0.6600347,0.6598333,0.6596319,0.6594306,0.6592294,0.65902823,0.6588271,0.6586261,0.6584251,0.65822417,0.6580233,0.6578225,0.65762174,0.65742105,0.6572204,0.65701985,0.65681934,0.6566189,0.65641856,0.65621823,0.65601796,0.65581775,0.65561765,0.65541756,0.6552175,0.65501755,0.6548177,0.6546179,0.6544181,0.65421844,0.65401876,0.6538192,0.65361965,0.6534202,0.6532208,0.65302145,0.65282214,0.65262294,0.6524238,0.65222466,0.65202564,0.6518267,0.6516277,0.65142894,0.6512301,0.6510314,0.6508327,0.6506341,0.6504355,0.6502371,0.6500386,0.6498403,0.64964193,0.6494437,0.6492455,0.6490474,0.6488493,0.6486513,0.64845335,0.64825547,0.64805764,0.6478599,0.64766216,0.6474645,0.6472669,0.64706945,0.6468719,0.6466745,0.6464772,0.64627993,0.6460827,0.6458855,0.6456885,0.64549136,0.6452944,0.6450975,0.6449006,0.6447038,0.64450705,0.6443104,0.6441138,0.6439172,0.64372075,0.6435243,0.6433279,0.64313155,0.6429353,0.6427391,0.64254296,0.6423469,0.6421509,0.6419549,0.641759,0.6415631,0.6413674,0.64117163,0.64097595,0.6407804,0.6405848,0.6403894,0.6401939,0.63999856,0.63980323,0.63960797,0.6394128,0.6392177,0.6390226,0.6388276,0.63863266,0.63843775,0.63824296,0.6380482,0.63785344,0.63765883,0.6374642,0.6372697,0.6370752,0.6368808,0.63668644,0.63649213,0.63629794,0.63610375,0.6359096,0.63571554,0.6355216,0.63532764,0.63513374,0.6349399,0.6347462,0.6345525,0.6343588,0.6341652,0.6339717,0.6337782,0.63358486,0.6333915,0.6331982,0.63300496,0.6328118,0.63261867,0.6324256,0.6322326,0.63203967,0.6318468,0.63165396,0.6314612,0.6312685,0.63107586,0.63088334,0.63069075,0.6304983,0.6303059,0.63011354,0.62992126,0.62972903,0.62953687,0.62934476,0.62915266,0.62896067,0.62876874,0.6285769,0.62838507,0.6281933,0.6280016,0.62780994,0.6276184,0.62742686,0.62723535,0.62704396,0.6268526,0.6266613,0.62647,0.6262789,0.6260878,0.6258967,0.6257057,0.62551475,0.6253239,0.62513304,0.62494224,0.62475157,0.6245609,0.62437034,0.6241798,0.6239893,0.6237989,0.6236085,0.6234182,0.62322795,0.6230378,0.6228477,0.6226576,0.6224676,0.6222776,0.6220877,0.6218979,0.6217081,0.6215184,0.6213287,0.6211391,0.62094957,0.6207601,0.6205706,0.62038124,0.62019193,0.6200027,0.61981344,0.6196243,0.6194352,0.6192462,0.61905724,0.6188683,0.61867946,0.61849064,0.6183019,0.6181132,0.6179246,0.61773604,0.6175475,0.61735904,0.61717063,0.6169823,0.61679405,0.6166058,0.61641765,0.61622953,0.6160415,0.6158534,0.6156655,0.6154777,0.61528987,0.61510205,0.61491436,0.6147267,0.61453915,0.6143516,0.6141641,0.61397666,0.6137893,0.613602,0.61341476,0.61322755,0.61304045,0.61285335,0.6126663,0.6124793,0.6122924,0.6121056,0.6119188,0.61173207,0.6115454,0.61135876,0.6111722,0.6109857,0.61079925,0.6106128,0.6104265,0.6102402,0.61005396,0.6098678,0.6096817,0.60949564,0.6093097,0.6091237,0.60893786,0.608752,0.6085662,0.6083805,0.6081949,0.6080093,0.6078237,0.60763824,0.6074528,0.60726744,0.6070821,0.6068969,0.6067117,0.6065265,0.6063414,0.6061564,0.6059714,0.6057865,0.6056016,0.6054168,0.605232,0.60504735,0.6048627,0.60467815,0.6044936,0.60430914,0.6041247,0.60394037,0.60375607,0.60357183,0.6033876,0.6032035,0.60301936,0.6028354,0.6026514,0.60246754,0.60228366,0.60209984,0.60191613,0.60173243,0.6015488,0.6013652,0.60118175,0.6009982,0.6008148,0.6006315,0.6004482,0.60026497,0.60008174,0.59989864,0.5997156,0.59953254,0.5993496,0.5991667,0.5989839,0.5988011,0.5986183,0.59843564,0.598253,0.59807044,0.59788793,0.5977055,0.5975231,0.5973407,0.5971585,0.5969762,0.59679407,0.5966119,0.5964299,0.59624785,0.5960659,0.59588397,0.5957022,0.5955204,0.59533864,0.59515697,0.59497535,0.5947938,0.59461224,0.5944308,0.5942494,0.59406805,0.59388673,0.59370553,0.5935244,0.5933432,0.5931622,0.59298116,0.5928002,0.5926193,0.59243846,0.5922577,0.5920769,0.59189624,0.5917156,0.59153503,0.5913545,0.591174,0.59099364,0.5908133,0.59063303,0.59045273,0.59027255,0.5900925,0.58991235,0.58973235,0.58955234,0.58937246,0.58919257,0.5890128,0.58883303,0.5886534,0.58847374,0.58829415,0.5881146,0.58793515,0.58775574,0.5875764,0.58739704,0.5872178,0.5870386,0.58685946,0.58668035,0.58650136,0.5863223,0.58614343,0.58596456,0.58578575,0.585607,0.5854283,0.5852496,0.585071,0.58489245,0.584714,0.58453554,0.58435714,0.58417886,0.5840005,0.5838223,0.5836442,0.58346605,0.583288,0.58311003,0.58293205,0.5827542,0.58257633,0.5823986,0.58222085,0.5820432,0.58186555,0.581688,0.5815105,0.581333,0.5811556,0.5809783,0.58080095,0.58062375,0.58044654,0.5802694,0.5800923,0.5799153,0.5797383,0.5795614,0.57938457,0.5792077,0.579031,0.57885426,0.57867765,0.57850105,0.5783245,0.578148,0.5779716,0.5777952,0.5776189,0.5774426,0.5772664,0.57709026,0.57691413,0.57673806,0.5765621,0.57638615,0.57621026,0.57603437,0.5758586,0.5756829,0.57550716,0.57533157,0.575156,0.57498044,0.574805,0.5746296,0.57445425,0.57427895,0.57410365,0.5739285,0.57375336,0.5735783,0.5734032,0.57322824,0.5730533,0.5728784,0.5727036,0.57252884,0.57235414,0.57217944,0.57200485,0.5718303,0.5716558,0.57148135,0.57130694,0.5711326,0.5709583,0.57078403,0.57060987,0.57043576,0.57026166,0.5700876,0.5699137,0.56973976,0.5695659,0.5693921,0.56921834,0.5690446,0.56887096,0.5686974,0.5685238,0.5683503,0.56817687,0.5680035,0.56783015,0.5676569,0.56748366,0.56731045,0.56713736,0.56696427,0.56679124,0.56661826,0.56644535,0.56627256,0.5660997,0.56592697,0.56575423,0.56558156,0.565409,0.56523645,0.56506395,0.5648915,0.56471914,0.5645468,0.5643745,0.5642023,0.5640301,0.563858,0.56368595,0.56351393,0.5633419,0.56317,0.5629982,0.56282634,0.5626546,0.56248295,0.5623113,0.5621397,0.56196815,0.5617966,0.5616252,0.56145376,0.56128246,0.5611112,0.56093997,0.5607688,0.56059766,0.56042653,0.5602555,0.5600846,0.55991364,0.55974275,0.559572,0.5594012,0.5592305,0.5590598,0.5588892,0.5587186,0.55854815,0.55837774,0.55820733,0.558037,0.5578667,0.5576964,0.55752623,0.5573561,0.557186,0.55701596,0.556846,0.5566761,0.5565062,0.55633634,0.5561666,0.5559969,0.5558272,0.55565757,0.555488,0.5553185,0.555149,0.5549796,0.5548103,0.55464095,0.5544717,0.55430245,0.5541333,0.5539642,0.55379516,0.5536262,0.5534572,0.55328834,0.5531195,0.5529507,0.55278194,0.55261326,0.55244464,0.552276,0.5521075,0.551939,0.55177057,0.5516022,0.55143386,0.5512656,0.55109733,0.5509292,0.55076104,0.55059296,0.550425,0.55025697,0.55008906,0.5499212,0.54975337,0.54958564,0.5494179,0.54925025,0.54908264,0.548915,0.54874754,0.5485801,0.5484127,0.5482453,0.54807806,0.54791075,0.54774356,0.5475764,0.5474093,0.5472423,0.5470753,0.5469083,0.54674137,0.5465746,0.54640776,0.54624104,0.54607433,0.5459077,0.5457411,0.54557455,0.54540807,0.5452416,0.54507524,0.5449089,0.5447426,0.54457635,0.54441017,0.54424405,0.54407793,0.5439119,0.54374593,0.54358,0.5434141,0.5432483,0.54308254,0.5429168,0.5427511,0.5425855,0.5424199,0.5422544,0.54208887,0.54192346,0.54175806,0.5415928,0.5414275,0.5412622,0.54109704,0.54093194,0.5407669,0.54060185,0.54043686,0.54027194,0.5401071,0.53994226,0.53977746,0.53961277,0.5394481,0.53928345,0.5391189,0.5389544,0.5387899,0.5386255,0.5384611,0.5382968,0.5381325,0.5379683,0.5378041,0.53764004,0.53747594,0.5373119,0.537148,0.536984,0.5368202,0.5366563,0.5364926,0.53632885,0.5361652,0.53600156,0.535838,0.5356745,0.535511,0.5353476,0.5351842,0.5350209,0.53485763,0.5346944,0.53453124,0.5343681,0.5342051,0.53404206,0.53387904,0.53371614,0.53355324,0.5333904,0.5332277,0.53306496,0.5329023,0.53273964,0.5325771,0.53241456,0.5322521,0.53208965,0.5319273,0.531765,0.5316026,0.53144044,0.53127825,0.5311161,0.53095406,0.530792,0.53063005,0.5304681,0.5303062,0.5301444,0.5299826,0.52982086,0.52965915,0.52949756,0.529336,0.52917445,0.5290129,0.5288515,0.5286901,0.52852875,0.5283675,0.5282062,0.52804506,0.5278839,0.52772284,0.5275618,0.5274008,0.52723986,0.5270789,0.52691805,0.5267573,0.52659655,0.52643585,0.5262752,0.5261146,0.52595407,0.52579355,0.5256331,0.52547264,0.5253123,0.525152,0.52499175,0.52483153,0.5246714,0.5245113,0.5243512,0.5241912,0.5240312,0.5238713,0.52371144,0.5235516,0.52339184,0.52323216,0.5230724,0.52291286,0.5227533,0.52259374,0.52243423,0.52227485,0.52211547,0.5219561,0.5217968,0.5216376,0.5214784,0.52131927,0.5211602,0.52100116,0.52084213,0.5206832,0.5205243,0.5203655,0.5202067,0.5200479,0.51988924,0.51973057,0.51957196,0.5194134,0.5192549,0.51909643,0.518938,0.51877964,0.5186213,0.5184631,0.5183048,0.5181467,0.51798856,0.5178305,0.5176725,0.5175145,0.5173566,0.5171987,0.51704085,0.5168831,0.51672536,0.51656765,0.51641005,0.5162524,0.5160949,0.5159374,0.51578,0.5156225,0.5154652,0.5153079,0.5151506,0.5149934,0.51483625,0.51467913,0.5145221,0.5143651,0.5142081,0.5140512,0.5138943,0.5137375,0.51358074,0.513424,0.5132673,0.5131107,0.5129541,0.51279753,0.5126411,0.5124846,0.51232827,0.5121719,0.5120156,0.51185936,0.51170313,0.51154697,0.5113909,0.5112348,0.51107883,0.51092285,0.5107669,0.51061106,0.51045525,0.51029944,0.51014376,0.50998807,0.50983244,0.5096768,0.5095213,0.5093658,0.50921035,0.50905496,0.5088996,0.50874436,0.5085891,0.5084339,0.5082787,0.50812364,0.50796854,0.5078135,0.5076586,0.5075036,0.5073488,0.5071939,0.5070392,0.50688446,0.5067298,0.50657517,0.50642055,0.506266,0.5061115,0.50595707,0.50580263,0.5056483,0.505494,0.50533974,0.5051855,0.50503135,0.5048772,0.5047232,0.5045691,0.50441515,0.5042612,0.50410736,0.5039535,0.50379974,0.503646,0.5034923,0.50333863,0.50318503,0.5030315,0.50287795,0.50272447,0.50257105,0.50241774,0.5022644,0.50211114,0.5019579,0.5018047,0.5016516,0.5014985,0.50134546,0.50119245,0.5010395,0.5008866,0.50073373,0.50058097,0.5004282,0.5002755,0.50012285,0.4999702,0.4998176,0.49966508,0.4995126,0.49936017,0.4992078,0.49905545,0.49890316,0.4987509,0.4985987,0.49844652,0.49829444,0.49814236,0.49799037,0.49783838,0.49768648,0.49753457,0.49738273,0.49723098,0.49707922,0.49692756,0.4967759,0.4966243,0.49647275,0.49632123,0.49616975,0.49601835,0.495867,0.49571568,0.4955644,0.49541315,0.49526197,0.4951108,0.49495974,0.4948087,0.49465773,0.49450678,0.49435586,0.494205,0.49405417,0.4939034,0.49375266,0.493602,0.49345136,0.4933008,0.49315026,0.49299973,0.4928493,0.4926989,0.49254853,0.49239823,0.492248,0.49209777,0.4919476,0.49179748,0.49164736,0.49149734,0.49134737,0.49119744,0.4910475,0.49089766,0.49074787,0.4905981,0.4904484,0.49029872,0.4901491,0.4899995,0.48984998,0.48970053,0.48955107,0.48940167,0.48925233,0.48910302,0.48895374,0.48880452,0.4886554,0.48850626,0.48835716,0.48820814,0.48805916,0.4879102,0.48776132,0.4876125,0.48746368,0.4873149,0.4871662,0.48701754,0.48686892,0.48672035,0.48657182,0.4864233,0.4862749,0.4861265,0.48597813,0.48582983,0.48568156,0.48553336,0.4853852,0.4852371,0.485089,0.48494098,0.48479298,0.48464504,0.48449713,0.48434928,0.4842015,0.48405373,0.483906,0.48375833,0.4836107,0.48346314,0.4833156,0.4831681,0.48302066,0.48287326,0.4827259,0.48257858,0.48243132,0.4822841,0.4821369,0.48198977,0.4818427,0.48169562,0.48154867,0.48140168,0.4812548,0.48110795,0.4809611,0.48081434,0.48066762,0.48052093,0.48037428,0.48022768,0.48008114,0.47993466,0.47978818,0.47964177,0.47949538,0.47934908,0.47920278,0.47905654,0.47891036,0.4787642,0.4786181,0.47847202,0.47832605,0.47818008,0.47803414,0.47788826,0.4777424,0.47759664,0.4774509,0.4773052,0.47715953,0.47701392,0.47686836,0.47672284,0.47657734,0.4764319,0.47628653,0.47614115,0.47599587,0.4758506,0.4757054,0.47556022,0.4754151,0.47527003,0.47512498,0.47498,0.47483507,0.47469014,0.47454527,0.47440046,0.47425568,0.47411096,0.4739663,0.47382167,0.47367707,0.47353253,0.47338802,0.47324353,0.4730991,0.47295472,0.47281042,0.4726661,0.4725219,0.4723777,0.47223353,0.4720894,0.47194535,0.47180134,0.47165737,0.47151342,0.47136953,0.47122568,0.47108188,0.47093815,0.4707944,0.47065073,0.47050712,0.47036353,0.47022,0.4700765,0.46993306,0.46978965,0.46964628,0.46950296,0.4693597,0.46921644,0.46907327,0.4689301,0.468787,0.46864393,0.46850094,0.46835798,0.46821505,0.46807215,0.4679293,0.46778652,0.46764377,0.46750107,0.46735838,0.46721578,0.46707317,0.46693063,0.46678814,0.4666457,0.4665033,0.46636093,0.4662186,0.46607634,0.4659341,0.46579194,0.46564978,0.4655077,0.46536562,0.4652236,0.46508163,0.4649397,0.46479782,0.464656,0.46451417,0.46437243,0.46423072,0.46408907,0.46394745,0.46380585,0.46366432,0.46352282,0.46338138,0.46323994,0.4630986,0.46295726,0.46281597,0.46267474,0.46253356,0.46239242,0.4622513,0.46211025,0.46196923,0.46182826,0.4616873,0.4615464,0.46140555,0.4612648,0.461124,0.46098328,0.4608426,0.46070197,0.46056136,0.46042085,0.46028033,0.46013984,0.45999944,0.45985907,0.45971873,0.45957842,0.45943817,0.45929798,0.45915782,0.45901772,0.45887762,0.45873758,0.45859763,0.45845768,0.45831776,0.45817786,0.45803806,0.4578983,0.45775855,0.45761886,0.4574792,0.45733958,0.45720002,0.45706052,0.456921,0.4567816,0.4566422,0.45650285,0.45636353,0.4562243,0.45608506,0.45594588,0.45580673,0.45566761,0.4555286,0.45538956,0.45525062,0.45511165,0.4549728,0.45483392,0.45469517,0.45455638,0.45441768,0.454279,0.45414037,0.45400178,0.45386323,0.4537247,0.45358628,0.45344785,0.45330945,0.45317113,0.45303285,0.4528946,0.4527564,0.45261824,0.45248008,0.452342,0.45220396,0.45206597,0.45192802,0.4517901,0.45165226,0.45151442,0.45137662,0.45123887,0.45110118,0.45096353,0.4508259,0.45068833,0.4505508,0.4504133,0.45027584,0.45013842,0.45000106,0.44986373,0.44972646,0.44958922,0.449452,0.44931486,0.44917774,0.44904065,0.44890362,0.44876662,0.44862968,0.4484928,0.4483559,0.4482191,0.44808233,0.44794556,0.4478089,0.44767222,0.4475356,0.44739902,0.4472625,0.447126,0.44698957,0.44685316,0.4467168,0.4465805,0.44644418,0.44630796,0.44617173,0.4460356,0.44589946,0.4457634,0.44562736,0.4454914,0.44535542,0.44521955,0.44508365,0.44494784,0.44481206,0.4446763,0.44454062,0.44440496,0.44426933,0.44413376,0.44399825,0.44386274,0.44372728,0.44359186,0.4434565,0.44332117,0.44318587,0.44305062,0.44291544,0.4427803,0.44264513,0.44251007,0.44237503,0.44224003,0.44210508,0.44197017,0.44183528,0.44170046,0.44156566,0.44143093,0.4412962,0.44116154,0.4410269,0.44089234,0.44075778,0.44062325,0.4404888,0.44035438,0.44022,0.44008568,0.43995136,0.4398171,0.4396829,0.4395487,0.43941456,0.43928048,0.43914643,0.4390124,0.43887842,0.43874452,0.4386106,0.43847677,0.43834296,0.43820918,0.43807548,0.4379418,0.43780813,0.43767452,0.43754098,0.43740743,0.43727398,0.43714052,0.43700713,0.43687376,0.43674046,0.43660715,0.4364739,0.43634072,0.43620756,0.43607447,0.4359414,0.43580836,0.43567535,0.4355424,0.4354095,0.4352766,0.4351438,0.435011,0.43487826,0.43474555,0.43461284,0.43448022,0.43434766,0.43421507,0.4340826,0.43395013,0.43381768,0.4336853,0.43355298,0.43342066,0.43328837,0.43315616,0.433024,0.43289182,0.43275973,0.43262765,0.43249565,0.43236366,0.43223172,0.43209982,0.43196794,0.43183613,0.43170434,0.43157262,0.43144092,0.43130925,0.43117762,0.43104604,0.4309145,0.430783,0.43065155,0.43052012,0.43038872,0.43025738,0.4301261,0.42999482,0.42986363,0.42973244,0.42960128,0.42947018,0.42933914,0.4292081,0.42907715,0.4289462,0.42881528,0.42868444,0.4285536,0.42842284,0.4282921,0.42816138,0.42803073,0.4279001,0.42776954,0.427639,0.4275085,0.42737803,0.4272476,0.42711723,0.42698687,0.4268566,0.42672634,0.4265961,0.42646593,0.42633578,0.42620566,0.4260756,0.42594558,0.4258156,0.42568564,0.42555577,0.4254259,0.42529607,0.42516628,0.42503652,0.42490682,0.42477715,0.4246475,0.42451796,0.42438838,0.42425886,0.42412943,0.424,0.4238706,0.42374125,0.42361194,0.42348263,0.4233534,0.42322424,0.42309508,0.42296597,0.42283687,0.42270783,0.42257884,0.4224499,0.42232096,0.4221921,0.42206326,0.42193446,0.42180568,0.421677,0.4215483,0.42141965,0.42129105,0.4211625,0.42103398,0.4209055,0.42077702,0.4206486,0.42052025,0.42039192,0.42026365,0.42013538,0.4200072,0.41987902,0.41975087,0.41962278,0.41949472,0.41936672,0.41923872,0.4191108,0.4189829,0.41885504,0.41872722,0.41859943,0.4184717,0.418344,0.41821632,0.4180887,0.4179611,0.41783357,0.41770607,0.41757858,0.41745117,0.41732377,0.4171964,0.41706908,0.41694182,0.41681457,0.41668737,0.41656023,0.4164331,0.41630602,0.41617897,0.41605195,0.41592503,0.4157981,0.4156712,0.41554433,0.41541752,0.41529077,0.41516405,0.41503733,0.41491067,0.41478407,0.41465747,0.41453093,0.41440445,0.414278,0.41415158,0.4140252,0.41389886,0.41377252,0.41364625,0.41352004,0.41339383,0.4132677,0.41314155,0.41301548,0.41288945,0.41276345,0.41263747,0.41251156,0.41238567,0.41225985,0.41213402,0.41200826,0.41188252,0.4117568,0.41163117,0.41150555,0.41137996,0.41125444,0.4111289,0.41100344,0.41087803,0.41075265,0.4106273,0.410502,0.41037673,0.4102515,0.4101263,0.41000113,0.40987602,0.40975094,0.4096259,0.40950087,0.40937594,0.40925097,0.4091261,0.40900126,0.40887645,0.40875167,0.40862694,0.40850225,0.40837756,0.40825292,0.40812835,0.4080038,0.4078793,0.40775484,0.4076304,0.40750602,0.40738165,0.40725735,0.40713307,0.4070088,0.40688458,0.40676042,0.40663633,0.4065122,0.40638816,0.40626416,0.40614015,0.40601623,0.40589234,0.40576845,0.40564463,0.40552083,0.4053971,0.40527338,0.4051497,0.40502605,0.40490246,0.4047789,0.4046554,0.4045319,0.40440843,0.40428504,0.40416166,0.4040383,0.40391502,0.40379176,0.40366852,0.40354535,0.40342218,0.4032991,0.403176,0.40305296,0.40293,0.402807,0.4026841,0.40256122,0.40243834,0.40231553,0.40219277,0.40207005,0.40194735,0.40182468,0.40170205,0.40157947,0.40145692,0.40133443,0.40121192,0.40108952,0.4009671,0.40084475,0.4007224,0.40060014,0.4004779,0.40035567,0.40023348,0.40011135,0.39998925,0.39986718,0.39974517,0.39962316,0.3995012,0.3993793,0.39925742,0.3991356,0.3990138,0.39889202,0.39877027,0.3986486,0.39852694,0.39840534,0.39828375,0.39816222,0.3980407,0.39791924,0.3977978,0.3976764,0.39755505,0.39743373,0.39731246,0.3971912,0.39707,0.3969488,0.3968277,0.39670658,0.39658552,0.3964645,0.3963435,0.39622256,0.39610165,0.39598078,0.39585993,0.3957391,0.39561835,0.39549762,0.39537695,0.39525628,0.39513567,0.3950151,0.39489454,0.39477402,0.39465356,0.39453313,0.39441273,0.39429235,0.394172,0.39405173,0.39393148,0.3938113,0.39369112,0.39357096,0.39345086,0.39333078,0.39321077,0.39309075,0.3929708,0.39285088,0.392731,0.39261115,0.39249134,0.39237157,0.39225185,0.39213213,0.39201245,0.39189282,0.39177322,0.3916537,0.39153415,0.3914147,0.39129525,0.3911758,0.39105645,0.39093712,0.39081782,0.39069852,0.3905793,0.39046013,0.39034098,0.39022183,0.39010277,0.38998374,0.3898647,0.38974574,0.3896268,0.3895079,0.38938904,0.38927022,0.38915142,0.38903266,0.38891393,0.38879526,0.3886766,0.388558,0.38843942,0.38832086,0.38820237,0.3880839,0.3879655,0.3878471,0.38772872,0.3876104,0.38749212,0.38737386,0.38725567,0.38713747,0.38701934,0.38690123,0.38678318,0.38666514,0.38654712,0.38642916,0.38631123,0.38619336,0.38607553,0.3859577,0.3858399,0.3857222,0.38560444,0.38548678,0.38536915,0.38525155,0.38513398,0.38501644,0.38489893,0.38478148,0.38466406,0.3845467,0.38442934,0.38431203,0.38419473,0.3840775,0.38396028,0.38384312,0.38372597,0.38360888,0.3834918,0.3833748,0.3832578,0.38314083,0.38302392,0.38290703,0.38279018,0.38267338,0.3825566,0.38243985,0.38232315,0.38220647,0.38208982,0.3819732,0.38185665,0.38174012,0.38162363,0.3815072,0.38139075,0.38127437,0.38115802,0.3810417,0.38092542,0.38080916,0.38069296,0.3805768,0.38046065,0.38034454,0.3802285,0.38011244,0.37999642,0.37988046,0.37976456,0.37964866,0.37953278,0.37941697,0.3793012,0.37918544,0.37906972,0.37895405,0.37883842,0.3787228,0.3786072,0.3784917,0.3783762,0.37826073,0.37814528,0.37802988,0.37791452,0.3777992,0.3776839,0.37756866,0.37745342,0.37733823,0.3772231,0.37710798,0.3769929,0.37687784,0.37676284,0.37664786,0.37653294,0.37641802,0.37630317,0.37618834,0.3760735,0.37595874,0.37584403,0.37572932,0.37561467,0.37550005,0.37538546,0.3752709,0.37515637,0.3750419,0.37492746,0.37481302,0.37469864,0.3745843,0.37447,0.3743557,0.37424147,0.37412727,0.3740131,0.37389895,0.37378487,0.3736708,0.37355676,0.37344277,0.3733288,0.37321487,0.373101,0.37298712,0.3728733,0.3727595,0.37264574,0.37253204,0.37241834,0.3723047,0.3721911,0.37207752,0.37196395,0.37185043,0.37173697,0.37162355,0.37151015,0.37139675,0.3712834,0.37117013,0.37105685,0.3709436,0.3708304,0.37071723,0.37060413,0.37049103,0.37037796,0.37026495,0.37015194,0.370039,0.36992607,0.36981317,0.3697003,0.36958748,0.3694747,0.36936197,0.36924925,0.36913657,0.36902392,0.3689113,0.3687987,0.36868617,0.36857367,0.3684612,0.36834875,0.36823633,0.36812398,0.36801162,0.36789933,0.36778703,0.3676748,0.3675626,0.36745045,0.3673383,0.3672262,0.36711413,0.36700213,0.3668901,0.36677814,0.36666623,0.36655435,0.36644247,0.36633062,0.36621884,0.3661071,0.36599538,0.36588368,0.365772,0.3656604,0.36554882,0.36543727,0.36532575,0.36521426,0.36510283,0.3649914,0.36488003,0.36476868,0.36465734,0.36454606,0.3644348,0.36432362,0.36421242,0.3641013,0.3639902,0.36387908,0.36376804,0.36365703,0.36354604,0.36343512,0.36332422,0.36321333,0.3631025,0.3629917,0.36288092,0.36277017,0.36265948,0.3625488,0.36243814,0.36232755,0.36221698,0.36210644,0.36199597,0.3618855,0.36177507,0.36166465,0.3615543,0.36144394,0.36133364,0.36122337,0.36111313,0.36100292,0.36089277,0.36078262,0.36067256,0.36056247,0.36045244,0.36034244,0.3602325,0.36012256,0.36001265,0.3599028,0.35979295,0.35968316,0.3595734,0.3594637,0.359354,0.35924432,0.35913467,0.3590251,0.35891554,0.35880598,0.3586965,0.35858703,0.35847762,0.35836822,0.35825887,0.35814953,0.35804024,0.35793096,0.35782176,0.35771257,0.35760337,0.35749424,0.35738516,0.35727608,0.35716707,0.35705808,0.3569491,0.3568402,0.3567313,0.35662243,0.3565136,0.3564048,0.35629603,0.3561873,0.3560786,0.35596994,0.3558613,0.3557527,0.35564414,0.35553563,0.35542712,0.35531867,0.35521024,0.35510182,0.35499346,0.35488513,0.35477683,0.35466856,0.35456035,0.35445213,0.35434398,0.35423586,0.35412773,0.35401967,0.35391164,0.35380363,0.35369566,0.35358775,0.3534798,0.35337195,0.3532641,0.35315633,0.35304853,0.3529408,0.3528331,0.35272542,0.35261777,0.35251018,0.3524026,0.35229504,0.35218754,0.35208008,0.35197264,0.35186523,0.35175785,0.3516505,0.3515432,0.3514359,0.35132867,0.35122144,0.35111427,0.35100713,0.3509,0.35079294,0.35068586,0.35057887,0.35047188,0.35036492,0.350258,0.35015112,0.35004425,0.34993744,0.34983066,0.3497239,0.34961715,0.3495105,0.3494038,0.3492972,0.3491906,0.34908402,0.3489775,0.348871,0.34876454,0.3486581,0.34855172,0.34844533,0.34833902,0.34823272,0.34812644,0.34802023,0.347914,0.34780782,0.3477017,0.34759557,0.3474895,0.34738347,0.34727746,0.3471715,0.34706554,0.34695962,0.34685376,0.34674788,0.34664208,0.34653628,0.34643054,0.3463248,0.34621915,0.34611347,0.34600788,0.34590226,0.34579673,0.34569117,0.34558567,0.34548023,0.3453748,0.3452694,0.34516403,0.3450587,0.34495342,0.34484813,0.3447429,0.3446377,0.34453252,0.34442738,0.34432226,0.3442172,0.34411216,0.34400713,0.34390217,0.34379724,0.3436923,0.34358743,0.34348258,0.34337777,0.34327298,0.3431682,0.3430635,0.3429588,0.34285414,0.3427495,0.34264493,0.34254035,0.3424358,0.34233132,0.34222686,0.3421224,0.342018,0.34191364,0.3418093,0.341705,0.34160072,0.34149647,0.34139228,0.34128806,0.34118393,0.3410798,0.34097573,0.34087166,0.34076762,0.34066364,0.3405597,0.34045577,0.34035188,0.340248,0.34014416,0.3400404,0.33993658,0.33983287,0.33972916,0.33962548,0.33952186,0.33941823,0.33931464,0.3392111,0.3391076,0.3390041,0.33890066,0.33879724,0.33869386,0.3385905,0.33848715,0.33838385,0.3382806,0.33817738,0.33807418,0.337971,0.33786786,0.33776474,0.33766168,0.33755866,0.33745563,0.33735266,0.3372497,0.3371468,0.3370439,0.33694106,0.33683822,0.33673543,0.33663267,0.33652994,0.33642724,0.33632457,0.33622193,0.33611932,0.33601677,0.33591422,0.3358117,0.3357092,0.33560678,0.33550438,0.33540198,0.33529964,0.33519733,0.33509502,0.33499274,0.3348905,0.33478832,0.33468616,0.33458403,0.33448192,0.33437985,0.3342778,0.3341758,0.3340738,0.3339719,0.33386996,0.33376807,0.33366624,0.33356437,0.3334626,0.33336082,0.3332591,0.33315742,0.33305573,0.3329541,0.33285248,0.33275092,0.33264938,0.33254787,0.3324464,0.33234495,0.3322435,0.3321421,0.33204076,0.33193943,0.33183813,0.3317369,0.33163565,0.33153445,0.33143327,0.33133212,0.331231,0.33112994,0.33102888,0.33092788,0.33082688,0.3307259,0.330625,0.3305241,0.33042324,0.33032238,0.3302216,0.33012083,0.33002007,0.32991937,0.32981867,0.32971802,0.3296174,0.32951683,0.32941628,0.32931575,0.32921526,0.32911476,0.32901433,0.32891396,0.32881358,0.32871324,0.3286129,0.3285126,0.32841238,0.32831216,0.32821196,0.3281118,0.3280117,0.3279116,0.3278115,0.3277115,0.32761148,0.3275115,0.32741153,0.32731164,0.32721177,0.3271119,0.32701206,0.32691228,0.3268125,0.3267128,0.3266131,0.3265134,0.32641378,0.32631415,0.32621458,0.326115,0.3260155,0.32591602,0.32581657,0.32571715,0.32561773,0.32551837,0.32541904,0.32531974,0.32522044,0.3251212,0.32502198,0.3249228,0.32482365,0.32472453,0.32462543,0.32452637,0.32442734,0.32432833,0.32422933,0.3241304,0.32403147,0.32393262,0.32383376,0.32373494,0.3236361,0.32353738,0.32343864,0.32333994,0.32324126,0.32314262,0.323044,0.32294542,0.32284686,0.32274836,0.32264987,0.3225514,0.32245296,0.32235456,0.32225618,0.32215786,0.32205954,0.32196125,0.32186303,0.3217648,0.3216666,0.32156843,0.3214703,0.3213722,0.32127413,0.32117608,0.32107806,0.3209801,0.32088214,0.3207842,0.3206863,0.32058847,0.32049063,0.32039282,0.32029507,0.3201973,0.3200996,0.3200019,0.31990424,0.31980664,0.31970903,0.31961146,0.31951392,0.3194164,0.31931895,0.3192215,0.3191241,0.3190267,0.31892934,0.318832,0.31873474,0.31863746,0.31854022,0.318443,0.31834584,0.31824866,0.31815156,0.31805447,0.31795743,0.3178604,0.3177634,0.3176664,0.3175695,0.31747258,0.3173757,0.31727883,0.317182,0.3170852,0.31698844,0.31689173,0.31679502,0.31669834,0.3166017,0.31650507,0.3164085,0.31631193,0.3162154,0.3161189,0.31602246,0.315926,0.31582958,0.31573322,0.31563684,0.31554052,0.31544423,0.31534797,0.31525174,0.31515554,0.31505936,0.31496322,0.3148671,0.314771,0.31467494,0.31457892,0.31448293,0.31438696,0.31429103,0.31419513,0.31409922,0.31400338,0.31390753,0.31381175,0.313716,0.31362027,0.31352454,0.31342888,0.3133332,0.3132376,0.31314203,0.31304646,0.31295094,0.31285542,0.31275994,0.3126645,0.31256908,0.3124737,0.31237835,0.31228304,0.3121877,0.31209245,0.3119972,0.31190202,0.31180683,0.31171167,0.31161654,0.31152144,0.31142637,0.31133136,0.31123635,0.31114134,0.3110464,0.31095147,0.31085658,0.31076172,0.3106669,0.3105721,0.31047732,0.31038257,0.31028786,0.31019318,0.3100985,0.31000388,0.30990925,0.3098147,0.30972013,0.30962563,0.30953115,0.30943668,0.30934227,0.30924785,0.3091535,0.30905914,0.30896482,0.30887055,0.3087763,0.30868205,0.30858785,0.3084937,0.30839956,0.30830544,0.30821136,0.3081173,0.30802327,0.30792928,0.30783528,0.30774134,0.30764744,0.30755356,0.30745968,0.30736586,0.30727208,0.3071783,0.30708456,0.30699086,0.30689716,0.30680352,0.3067099,0.3066163,0.30652273,0.30642918,0.30633566,0.3062422,0.30614874,0.3060553,0.3059619,0.30586854,0.3057752,0.30568188,0.3055886,0.30549535,0.30540213,0.3053089,0.30521575,0.3051226,0.3050295,0.3049364,0.30484337,0.30475032,0.3046573,0.30456436,0.3044714,0.3043785,0.30428562,0.30419275,0.30409995,0.3040071,0.30391434,0.30382162,0.3037289,0.3036362,0.30354354,0.3034509,0.30335832,0.30326572,0.30317318,0.30308068,0.30298817,0.30289572,0.30280328,0.3027109,0.3026185,0.30252615,0.30243385,0.30234155,0.30224928,0.30215704,0.30206484,0.30197266,0.30188048,0.30178836,0.30169627,0.3016042,0.30151218,0.30142018,0.30132818,0.3012362,0.3011443,0.3010524,0.30096054,0.3008687,0.30077687,0.30068508,0.30059332,0.30050159,0.30040988,0.3003182,0.30022657,0.30013496,0.30004337,0.2999518,0.29986027,0.29976875,0.29967725,0.29958582,0.29949442,0.299403,0.29931164,0.2992203,0.29912898,0.2990377,0.29894644,0.29885522,0.29876402,0.29867285,0.2985817,0.29849058,0.29839948,0.29830843,0.2982174,0.2981264,0.2980354,0.29794446,0.29785353,0.29776263,0.29767177,0.29758093,0.29749012,0.29739934,0.2973086,0.29721785,0.29712716,0.2970365,0.29694584,0.2968552,0.29676464,0.29667407,0.29658353,0.29649302,0.29640254,0.2963121,0.29622167,0.29613128,0.2960409,0.29595056,0.29586023,0.29576996,0.29567972,0.29558948,0.29549927,0.29540908,0.29531893,0.2952288,0.29513872,0.29504865,0.29495862,0.2948686,0.29477862,0.29468867,0.29459873,0.29450884,0.29441896,0.2943291,0.29423928,0.29414952,0.29405972,0.29397,0.29388028,0.2937906,0.29370096,0.29361132,0.2935217,0.29343215,0.2933426,0.2932531,0.2931636,0.29307413,0.2929847,0.2928953,0.2928059,0.29271653,0.29262722,0.29253793,0.29244867,0.2923594,0.29227018,0.292181,0.29209182,0.2920027,0.29191357,0.29182452,0.29173544,0.29164642,0.29155743,0.29146844,0.2913795,0.29129058,0.29120168,0.2911128,0.291024,0.29093516,0.2908464,0.29075763,0.2906689,0.2905802,0.29049152,0.2904029,0.29031426,0.29022565,0.29013708,0.29004854,0.28996006,0.28987157,0.2897831,0.28969467,0.28960624,0.28951788,0.28942955,0.2893412,0.2892529,0.28916463,0.2890764,0.28898817,0.2889,0.28881183,0.2887237,0.28863558,0.2885475,0.28845945,0.2883714,0.2882834,0.28819543,0.28810748,0.28801957,0.28793168,0.28784382,0.28775597,0.28766817,0.28758037,0.2874926,0.28740487,0.28731716,0.28722948,0.28714186,0.2870542,0.28696662,0.28687906,0.2867915,0.28670397,0.28661647,0.286529,0.28644156,0.28635415,0.28626677,0.28617942,0.2860921,0.28600478,0.28591752,0.28583026,0.28574303,0.28565583,0.28556865,0.2854815,0.2853944,0.2853073,0.28522024,0.28513318,0.28504616,0.2849592,0.28487223,0.2847853,0.2846984,0.2846115,0.28452465,0.28443784,0.28435102,0.28426424,0.2841775,0.2840908,0.2840041,0.28391743,0.2838308,0.28374416,0.28365758,0.28357103,0.2834845,0.28339797,0.2833115,0.28322503,0.2831386,0.28305218,0.2829658,0.28287947,0.28279313,0.28270683,0.28262055,0.2825343,0.2824481,0.2823619,0.28227574,0.2821896,0.28210348,0.28201738,0.28193134,0.2818453,0.2817593,0.28167328,0.28158733,0.2815014,0.2814155,0.28132963,0.28124377,0.28115797,0.28107214,0.28098637,0.28090063,0.28081492,0.2807292,0.28064355,0.2805579,0.28047228,0.2803867,0.28030112,0.2802156,0.2801301,0.2800446,0.27995914,0.2798737,0.2797883,0.2797029,0.27961755,0.27953222,0.2794469,0.27936164,0.2792764,0.27919117,0.27910596,0.2790208,0.27893564,0.27885053,0.2787654,0.27868035,0.27859533,0.27851027,0.2784253,0.27834034,0.2782554,0.27817047,0.2780856,0.27800074,0.2779159,0.27783108,0.2777463,0.27766153,0.2775768,0.27749208,0.2774074,0.27732277,0.27723813,0.27715352,0.27706894,0.2769844,0.27689987,0.27681535,0.2767309,0.27664644,0.276562,0.27647763,0.27639323,0.2763089,0.27622458,0.2761403,0.27605602,0.27597177,0.27588755,0.2758034,0.2757192,0.27563506,0.27555096,0.27546686,0.27538282,0.27529877,0.27521473,0.27513078,0.2750468,0.27496287,0.27487895,0.2747951,0.27471122,0.2746274,0.27454355,0.2744598,0.27437603,0.2742923,0.2742086,0.27412492,0.27404127,0.27395764,0.27387404,0.27379045,0.2737069,0.27362338,0.27353987,0.27345642,0.27337295,0.27328953,0.2732061,0.27312276,0.2730394,0.2729561,0.2728728,0.27278954,0.27270627,0.27262306,0.27253985,0.2724567,0.27237356,0.27229044,0.27220735,0.27212426,0.27204123,0.2719582,0.2718752,0.27179223,0.2717093,0.27162638,0.2715435,0.27146062,0.27137777,0.27129498,0.27121216,0.2711294,0.27104667,0.27096397,0.27088127,0.2707986,0.27071598,0.27063337,0.27055076,0.2704682,0.27038565,0.27030316,0.27022067,0.2701382,0.27005577,0.26997337,0.26989096,0.2698086,0.26972628,0.26964396,0.26956168,0.2694794,0.26939717,0.26931494,0.26923278,0.2691506,0.26906848,0.26898637,0.2689043,0.26882222,0.2687402,0.2686582,0.26857617,0.26849425,0.2684123,0.2683304,0.2682485,0.26816666,0.26808482,0.268003,0.2679212,0.26783946,0.2677577,0.267676,0.2675943,0.26751265,0.26743102,0.2673494,0.26726782,0.26718628,0.26710472,0.2670232,0.26694173,0.26686028,0.26677883,0.2666974,0.26661605,0.26653466,0.26645333,0.26637203,0.26629072,0.26620948,0.2661282,0.266047,0.26596582,0.26588467,0.26580355,0.26572242,0.26564133,0.26556027,0.2654792,0.2653982,0.26531723,0.26523623,0.26515532,0.26507437,0.2649935,0.26491264,0.26483178,0.26475096,0.26467016,0.2645894,0.26450866,0.26442793,0.26434726,0.26426658,0.26418594,0.26410532,0.26402473,0.26394415,0.2638636,0.26378307,0.26370257,0.2636221,0.26354167,0.26346123,0.26338083,0.26330048,0.2632201,0.26313978,0.26305947,0.2629792,0.26289895,0.26281872,0.26273853,0.26265836,0.2625782,0.26249805,0.26241794,0.26233786,0.2622578,0.2621778,0.26209778,0.2620178,0.26193783,0.2618579,0.26177797,0.2616981,0.26161823,0.26153842,0.26145858,0.2613788,0.26129904,0.2612193,0.26113957,0.26105988,0.26098022,0.2609006,0.26082096,0.26074138,0.2606618,0.26058227,0.26050273,0.26042324,0.26034376,0.2602643,0.26018488,0.2601055,0.2600261,0.25994676,0.25986743,0.25978813,0.25970885,0.2596296,0.25955036,0.25947115,0.25939196,0.25931284,0.25923368,0.2591546,0.2590755,0.25899643,0.2589174,0.2588384,0.25875938,0.25868043,0.2586015,0.25852257,0.25844368,0.25836483,0.25828597,0.25820714,0.25812835,0.25804958,0.25797084,0.2578921,0.25781342,0.25773475,0.25765607,0.25757745,0.25749886,0.25742027,0.2573417,0.25726318,0.25718468,0.25710618,0.25702775,0.2569493,0.2568709,0.2567925,0.25671414,0.2566358,0.25655746,0.25647917,0.2564009,0.25632265,0.25624445,0.25616625,0.25608808,0.25600994,0.2559318,0.2558537,0.2557756,0.25569755,0.25561953,0.25554153,0.25546354,0.25538558,0.25530764,0.25522974,0.25515187,0.255074,0.25499615,0.25491834,0.25484052,0.25476277,0.254685,0.25460732,0.25452963,0.25445193,0.25437427,0.25429666,0.25421906,0.25414148,0.2540639,0.2539864,0.25390887,0.2538314,0.25375393,0.2536765,0.25359908,0.25352168,0.2534443,0.25336698,0.25328967,0.25321236,0.25313511,0.25305787,0.25298062,0.25290343,0.25282624,0.2527491,0.25267196,0.25259486,0.25251776,0.25244072,0.25236368,0.25228667,0.25220966,0.2521327,0.25205576,0.25197884,0.25190195,0.25182506,0.25174823,0.2516714,0.2515946,0.2515178,0.25144106,0.25136432,0.2512876,0.25121096,0.25113428,0.25105765,0.25098103,0.25090444,0.25082788,0.25075135,0.2506748,0.2505983,0.25052184,0.25044537,0.25036895,0.25029254,0.2502162,0.25013983,0.25006348,0.24998717,0.24991089,0.24983461,0.24975838,0.24968216,0.24960597,0.24952978,0.24945365,0.24937752,0.24930142,0.24922533,0.24914928,0.24907325,0.24899724,0.24892126,0.2488453,0.24876936,0.24869344,0.24861754,0.24854168,0.24846582,0.24839,0.2483142,0.24823841,0.24816267,0.24808694,0.24801125,0.24793555,0.2478599,0.24778426,0.24770863,0.24763304,0.24755748,0.24748193,0.24740641,0.24733089,0.24725543,0.24717997,0.24710454,0.24702914,0.24695374,0.24687839,0.24680305,0.24672773,0.24665244,0.24657716,0.24650192,0.24642669,0.2463515,0.24627632,0.24620117,0.24612603,0.24605092,0.24597584,0.24590078,0.24582572,0.24575071,0.24567571,0.24560075,0.24552579,0.24545087,0.24537598,0.24530108,0.24522622,0.2451514,0.24507658,0.2450018,0.24492702,0.24485227,0.24477756,0.24470286,0.24462818,0.24455354,0.24447891,0.2444043,0.24432972,0.24425516,0.24418062,0.2441061,0.24403161,0.24395713,0.24388269,0.24380825,0.24373387,0.24365948,0.24358512,0.24351078,0.24343647,0.2433622,0.24328792,0.24321368,0.24313946,0.24306525,0.24299107,0.24291694,0.24284281,0.2427687,0.24269462,0.24262054,0.24254651,0.24247248,0.2423985,0.24232452,0.24225059,0.24217665,0.24210276,0.24202886,0.24195501,0.24188118,0.24180736,0.24173357,0.24165979,0.24158604,0.24151233,0.24143863,0.24136494,0.24129128,0.24121766,0.24114405,0.24107046,0.2409969,0.24092335,0.24084981,0.24077632,0.24070284,0.24062939,0.24055596,0.24048255,0.24040917,0.2403358,0.24026246,0.24018914,0.24011584,0.24004257,0.23996931,0.23989609,0.23982288,0.23974968,0.23967652,0.23960339,0.23953027,0.23945716,0.23938408,0.23931104,0.23923801,0.239165,0.239092,0.23901905,0.23894611,0.23887318,0.2388003,0.23872742,0.23865457,0.23858175,0.23850894,0.23843615,0.23836339,0.23829065,0.23821792,0.23814523,0.23807256,0.2379999,0.23792727,0.23785466,0.23778209,0.23770952,0.23763698,0.23756446,0.23749197,0.23741949,0.23734704,0.2372746,0.2372022,0.23712981,0.23705746,0.2369851,0.2369128,0.23684049,0.2367682,0.23669596,0.23662372,0.23655152,0.23647933,0.23640718,0.23633502,0.2362629,0.2361908,0.23611872,0.23604667,0.23597462,0.23590262,0.23583063,0.23575866,0.23568672,0.23561479,0.2355429,0.23547101,0.23539916,0.23532732,0.23525551,0.23518372,0.23511194,0.2350402,0.23496847,0.23489676,0.23482509,0.23475343,0.23468179,0.23461016,0.23453857,0.234467,0.23439544,0.23432392,0.23425241,0.23418093,0.23410946,0.23403801,0.23396659,0.2338952,0.23382382,0.23375247,0.23368113,0.23360983,0.23353852,0.23346725,0.23339601,0.2333248,0.2332536,0.23318242,0.23311125,0.23304011,0.232969,0.2328979,0.23282683,0.23275578,0.23268475,0.23261374,0.23254275,0.23247178,0.23240083,0.23232992,0.23225902,0.23218815,0.2321173,0.23204646,0.23197564,0.23190485,0.23183408,0.23176333,0.23169261,0.2316219,0.23155123,0.23148057,0.23140992,0.2313393,0.2312687,0.23119812,0.23112758,0.23105705,0.23098654,0.23091605,0.23084559,0.23077512,0.2307047,0.2306343,0.23056392,0.23049356,0.23042323,0.2303529,0.2302826,0.23021233,0.23014209,0.23007184,0.23000163,0.22993144,0.22986129,0.22979113,0.22972101,0.22965091,0.22958083,0.22951075,0.22944072,0.22937071,0.22930071,0.22923073,0.22916079,0.22909084,0.22902094,0.22895105,0.22888118,0.22881134,0.2287415,0.2286717,0.22860193,0.22853215,0.22846243,0.22839269,0.228323,0.22825333,0.22818367,0.22811404,0.22804442,0.22797483,0.22790526,0.22783571,0.22776619,0.22769669,0.22762719,0.22755773,0.22748828,0.22741887,0.22734946,0.2272801,0.22721073,0.2271414,0.22707208,0.22700277,0.22693351,0.22686425,0.22679503,0.22672582,0.22665663,0.22658746,0.2265183,0.22644919,0.22638008,0.22631098,0.22624193,0.2261729,0.22610386,0.22603488,0.22596589,0.22589692,0.225828,0.22575909,0.22569019,0.22562133,0.22555247,0.22548363,0.22541481,0.22534604,0.22527727,0.22520852,0.22513978,0.22507109,0.22500241,0.22493374,0.2248651,0.22479647,0.22472788,0.2246593,0.22459073,0.2245222,0.22445369,0.22438519,0.22431672,0.22424826,0.22417983,0.22411142,0.22404303,0.22397465,0.2239063,0.22383797,0.22376966,0.22370137,0.22363313,0.22356488,0.22349665,0.22342844,0.22336026,0.2232921,0.22322395,0.22315584,0.22308774,0.22301966,0.2229516,0.22288357,0.22281554,0.22274755,0.22267957,0.22261162,0.22254369,0.22247578,0.22240789,0.22234,0.22227216,0.22220433,0.22213651,0.22206873,0.22200096,0.22193322,0.22186549,0.2217978,0.22173008,0.22166243,0.22159478,0.22152716,0.22145957,0.22139199,0.22132443,0.22125687,0.22118935,0.22112186,0.22105439,0.22098693,0.22091947,0.22085206,0.22078466,0.2207173,0.22064993,0.2205826,0.2205153,0.220448,0.22038072,0.22031347,0.22024624,0.22017902,0.22011183,0.22004467,0.2199775,0.21991038,0.21984328,0.21977618,0.21970911,0.21964207,0.21957503,0.21950804,0.21944106,0.21937408,0.21930714,0.2192402,0.2191733,0.21910642,0.21903954,0.21897271,0.21890588,0.21883908,0.2187723,0.21870553,0.21863881,0.21857208,0.21850538,0.2184387,0.21837203,0.2183054,0.21823877,0.21817218,0.2181056,0.21803904,0.2179725,0.21790597,0.21783948,0.217773,0.21770655,0.21764012,0.2175737,0.2175073,0.21744092,0.21737456,0.21730822,0.21724191,0.21717562,0.21710935,0.2170431,0.21697687,0.21691065,0.21684445,0.21677828,0.21671212,0.21664599,0.21657987,0.2165138,0.21644771,0.21638167,0.21631563,0.21624961,0.21618362,0.21611765,0.2160517,0.21598576,0.21591985,0.21585396,0.21578808,0.21572223,0.2156564,0.2155906,0.21552481,0.21545905,0.21539329,0.21532756,0.21526185,0.21519616,0.21513048,0.21506482,0.2149992,0.21493359,0.214868,0.21480243,0.21473688,0.21467134,0.21460584,0.21454035,0.21447487,0.21440943,0.214344,0.21427858,0.21421319,0.21414782,0.21408248,0.21401715,0.21395184,0.21388653,0.21382128,0.21375601,0.21369079,0.21362558,0.21356039,0.21349521,0.21343006,0.21336493,0.21329983,0.21323474,0.21316965,0.2131046,0.21303956,0.21297455,0.21290956,0.2128446,0.21277963,0.2127147,0.21264979,0.2125849,0.21252003,0.21245517,0.21239033,0.21232551,0.21226072,0.21219595,0.2121312,0.21206646,0.21200176,0.21193705,0.21187238,0.21180773,0.21174309,0.21167846,0.21161388,0.2115493,0.21148475,0.2114202,0.21135569,0.21129118,0.2112267,0.21116224,0.2110978,0.21103337,0.21096899,0.2109046,0.21084024,0.2107759,0.21071157,0.21064727,0.21058299,0.21051873,0.21045448,0.21039027,0.21032606,0.21026187,0.21019772,0.21013357,0.21006943,0.21000533,0.20994124,0.20987718,0.20981313,0.20974909,0.20968509,0.20962112,0.20955713,0.20949319,0.20942925,0.20936535,0.20930144,0.20923759,0.20917372,0.2091099,0.20904608,0.20898229,0.20891851,0.20885476,0.20879102,0.2087273,0.20866361,0.20859993,0.20853628,0.20847264,0.20840903,0.20834543,0.20828183,0.20821828,0.20815474,0.20809121,0.2080277,0.20796423,0.20790076,0.20783733,0.2077739,0.20771049,0.20764711,0.20758373,0.2075204,0.20745707,0.20739375,0.20733047,0.2072672,0.20720394,0.20714071,0.2070775,0.2070143,0.20695114,0.20688798,0.20682484,0.20676172,0.20669863,0.20663555,0.2065725,0.20650946,0.20644644,0.20638344,0.20632045,0.20625749,0.20619455,0.20613162,0.20606872,0.20600583,0.20594297,0.20588012,0.20581728,0.20575449,0.2056917,0.20562893,0.20556618,0.20550343,0.20544073,0.20537804,0.20531535,0.2052527,0.20519008,0.20512746,0.20506486,0.20500228,0.20493971,0.20487717,0.20481466,0.20475215,0.20468967,0.20462722,0.20456477,0.20450233,0.20443992,0.20437753,0.20431517,0.20425282,0.2041905,0.20412818,0.20406589,0.2040036,0.20394135,0.20387912,0.20381689,0.20375471,0.20369253,0.20363036,0.20356822,0.2035061,0.20344399,0.20338191,0.20331985,0.2032578,0.20319577,0.20313376,0.20307177,0.2030098,0.20294785,0.20288593,0.20282401,0.2027621,0.20270023,0.20263837,0.20257655,0.20251472,0.20245293,0.20239113,0.20232937,0.20226762,0.2022059,0.20214419,0.2020825,0.20202084,0.20195918,0.20189756,0.20183595,0.20177436,0.20171277,0.20165122,0.20158967,0.20152818,0.20146666,0.20140518,0.20134372,0.20128228,0.20122086,0.20115945,0.20109805,0.20103669,0.20097534,0.20091401,0.20085269,0.20079142,0.20073013,0.20066887,0.20060764,0.20054641,0.20048521,0.20042405,0.20036288,0.20030174,0.20024061,0.2001795,0.20011841,0.20005734,0.1999963,0.19993527,0.19987425,0.19981325,0.19975227,0.19969131,0.19963038,0.19956946,0.19950855,0.19944768,0.1993868,0.19932595,0.19926514,0.19920433,0.19914353,0.19908276,0.19902201,0.19896127,0.19890057,0.19883986,0.19877918,0.19871852,0.19865789,0.19859727,0.19853665,0.19847606,0.19841549,0.19835494,0.19829442,0.1982339,0.1981734,0.19811293,0.19805247,0.19799203,0.19793162,0.19787122,0.19781083,0.19775046,0.19769011,0.1976298,0.19756949,0.19750918,0.19744891,0.19738865,0.19732842,0.1972682,0.197208,0.19714783,0.19708766,0.1970275,0.1969674,0.19690728,0.19684719,0.19678712,0.19672707,0.19666705,0.19660702,0.19654703,0.19648704,0.19642708,0.19636713,0.19630721,0.19624731,0.1961874,0.19612755,0.1960677,0.19600786,0.19594805,0.19588825,0.19582847,0.19576871,0.19570896,0.19564925,0.19558954,0.19552986,0.19547018,0.19541053,0.1953509,0.19529128,0.19523169,0.19517212,0.19511256,0.195053,0.19499348,0.19493398,0.1948745,0.19481502,0.19475557,0.19469614,0.19463672,0.19457732,0.19451794,0.19445859,0.19439925,0.19433992,0.19428062,0.19422133,0.19416206,0.19410281,0.19404358,0.19398436,0.19392516,0.19386598,0.19380683,0.19374768,0.19368854,0.19362944,0.19357035,0.19351128,0.19345224,0.19339319,0.19333418,0.19327518,0.1932162,0.19315724,0.19309829,0.19303937,0.19298045,0.19292156,0.19286269,0.19280384,0.192745,0.19268619,0.19262739,0.1925686,0.19250983,0.19245107,0.19239235,0.19233364,0.19227496,0.19221626,0.19215761,0.19209898,0.19204035,0.19198175,0.19192316,0.1918646,0.19180605,0.19174752,0.191689,0.1916305,0.19157201,0.19151355,0.19145511,0.1913967,0.19133829,0.19127989,0.19122152,0.19116317,0.19110483,0.1910465,0.1909882,0.19092992,0.19087167,0.1908134,0.19075519,0.19069697,0.19063878,0.19058059,0.19052245,0.1904643,0.19040617,0.19034806,0.19028997,0.1902319,0.19017386,0.19011582,0.1900578,0.18999982,0.18994184,0.18988386,0.18982592,0.18976799,0.18971008,0.18965217,0.1895943,0.18953645,0.1894786,0.18942079,0.18936299,0.1893052,0.18924743,0.18918967,0.18913195,0.18907422,0.18901652,0.18895884,0.18890117,0.18884353,0.18878591,0.18872829,0.18867071,0.18861313,0.18855555,0.18849804,0.1884405,0.188383,0.18832551,0.18826804,0.18821058,0.18815315,0.18809572,0.18803833,0.18798095,0.18792358,0.18786623,0.1878089,0.18775159,0.1876943,0.18763702,0.18757975,0.1875225,0.18746528,0.18740807,0.1873509,0.18729372,0.18723656,0.18717942,0.1871223,0.1870652,0.18700811,0.18695104,0.186894,0.18683696,0.18677995,0.18672295,0.18666597,0.186609,0.18655205,0.18649513,0.18643822,0.18638131,0.18632443,0.18626757,0.18621074,0.1861539,0.1860971,0.18604031,0.18598354,0.18592678,0.18587004,0.18581332,0.18575661,0.18569992,0.18564326,0.18558662,0.18552996,0.18547335,0.18541676,0.18536018,0.18530361,0.18524706,0.18519053,0.18513401,0.18507752,0.18502103,0.18496457,0.18490812,0.1848517,0.18479529,0.18473889,0.18468253,0.18462616,0.18456982,0.1845135,0.1844572,0.1844009,0.18434463,0.18428837,0.18423213,0.18417591,0.18411972,0.18406352,0.18400735,0.1839512,0.18389505,0.18383895,0.18378285,0.18372676,0.1836707,0.18361464,0.1835586,0.18350258,0.18344659,0.1833906,0.18333463,0.1832787,0.18322277,0.18316685,0.18311095,0.18305509,0.18299921,0.18294337,0.18288754,0.18283173,0.18277594,0.18272015,0.1826644,0.18260865,0.18255293,0.18249722,0.18244153,0.18238586,0.18233019,0.18227455,0.18221892,0.18216333,0.18210773,0.18205217,0.1819966,0.18194106,0.18188554,0.18183003,0.18177456,0.18171908,0.18166363,0.18160819,0.18155277,0.18149735,0.18144196,0.1813866,0.18133125,0.18127592,0.18122059,0.1811653,0.18111001,0.18105474,0.18099949,0.18094425,0.18088904,0.18083383,0.18077865,0.18072349,0.18066832,0.18061319,0.18055807,0.18050298,0.1804479,0.18039283,0.18033777,0.18028274,0.18022773,0.18017273,0.18011774,0.18006279,0.18000783,0.1799529,0.179898,0.17984308,0.1797882,0.17973334,0.17967848,0.17962366,0.17956884,0.17951405,0.17945927,0.1794045,0.17934975,0.17929502,0.1792403,0.17918561,0.17913093,0.17907625,0.17902161,0.17896698,0.17891236,0.17885777,0.17880319,0.17874862,0.17869407,0.17863955,0.17858502,0.17853053,0.17847605,0.17842159,0.17836712,0.17831269,0.17825828,0.17820388,0.1781495,0.17809513,0.17804079,0.17798646,0.17793214,0.17787784,0.17782356,0.17776929,0.17771505,0.17766082,0.1776066,0.1775524,0.1774982,0.17744404,0.1773899,0.17733577,0.17728165,0.17722754,0.17717347,0.1771194,0.17706534,0.17701131,0.1769573,0.17690329,0.1768493,0.17679533,0.17674139,0.17668745,0.17663354,0.17657964,0.17652574,0.17647187,0.17641802,0.17636418,0.17631036,0.17625657,0.17620277,0.176149,0.17609525,0.17604151,0.1759878,0.17593408,0.17588039,0.17582671,0.17577307,0.17571941,0.1756658,0.17561218,0.1755586,0.17550503,0.17545147,0.17539793,0.17534441,0.1752909,0.17523739,0.17518392,0.17513046,0.17507702,0.17502359,0.17497018,0.17491677,0.1748634,0.17481004,0.17475669,0.17470337,0.17465006,0.17459674,0.17454347,0.17449021,0.17443697,0.17438373,0.1743305,0.1742773,0.17422414,0.17417097,0.17411782,0.17406467,0.17401156,0.17395845,0.17390537,0.1738523,0.17379925,0.17374621,0.17369318,0.17364018,0.17358719,0.17353421,0.17348126,0.17342833,0.1733754,0.17332248,0.1732696,0.17321672,0.17316386,0.173111,0.17305818,0.17300537,0.17295258,0.1728998,0.17284705,0.1727943,0.17274156,0.17268884,0.17263614,0.17258346,0.17253079,0.17247814,0.17242551,0.17237289,0.17232029,0.1722677,0.17221513,0.17216258,0.17211005,0.17205752,0.17200501,0.17195252,0.17190005,0.1718476,0.17179516,0.17174272,0.17169032,0.17163792,0.17158553,0.17153317,0.17148083,0.1714285,0.17137618,0.1713239,0.1712716,0.17121935,0.17116709,0.17111486,0.17106263,0.17101043,0.17095824,0.17090608,0.17085393,0.17080179,0.17074966,0.17069755,0.17064546,0.17059338,0.17054133,0.17048928,0.17043726,0.17038524,0.17033325,0.17028126,0.1702293,0.17017736,0.17012541,0.1700735,0.17002161,0.16996972,0.16991785,0.169866,0.16981417,0.16976234,0.16971053,0.16965874,0.16960697,0.16955522,0.16950347,0.16945173,0.16940004,0.16934833,0.16929665,0.16924499,0.16919334,0.16914171,0.16909009,0.1690385,0.1689869,0.16893533,0.16888379,0.16883224,0.16878073,0.16872923,0.16867773,0.16862625,0.1685748,0.16852336,0.16847193,0.16842051,0.16836911,0.16831774,0.16826637,0.16821502,0.16816369,0.16811237,0.16806106,0.16800979,0.16795851,0.16790725,0.16785601,0.16780479,0.16775358,0.16770239,0.1676512,0.16760005,0.16754891,0.16749778,0.16744666,0.16739556,0.16734448,0.16729341,0.16724236,0.16719131,0.16714029,0.1670893,0.1670383,0.16698733,0.16693637,0.16688542,0.1668345,0.16678359,0.1667327,0.16668181,0.16663094,0.1665801,0.16652925,0.16647844,0.16642764,0.16637684,0.16632608,0.16627532,0.16622457,0.16617386,0.16612314,0.16607244,0.16602176,0.1659711,0.16592045,0.16586982,0.1658192,0.1657686,0.16571802,0.16566744,0.16561688,0.16556634,0.16551581,0.16546531,0.16541481,0.16536433,0.16531387,0.16526341,0.16521299,0.16516258,0.16511217,0.16506177,0.1650114,0.16496105,0.16491072,0.1648604,0.16481008,0.16475978,0.16470951,0.16465925,0.164609,0.16455877,0.16450855,0.16445835,0.16440816,0.16435799,0.16430783,0.16425769,0.16420756,0.16415745,0.16410735,0.16405727,0.1640072,0.16395716,0.16390713,0.1638571,0.1638071,0.16375712,0.16370714,0.16365717,0.16360724,0.1635573,0.1635074,0.16345751,0.16340762,0.16335775,0.1633079,0.16325806,0.16320825,0.16315843,0.16310865,0.16305888,0.1630091,0.16295937,0.16290964,0.16285992,0.16281022,0.16276054,0.16271088,0.16266121,0.16261159,0.16256195,0.16251235,0.16246276,0.16241318,0.1623636,0.16231407,0.16226453,0.16221501,0.16216551,0.16211602,0.16206655,0.16201709,0.16196765,0.16191822,0.16186881,0.16181941,0.16177003,0.16172066,0.16167131,0.16162197,0.16157266,0.16152336,0.16147406,0.16142479,0.16137552,0.16132627,0.16127704,0.16122784,0.16117862,0.16112944,0.16108027,0.16103111,0.16098197,0.16093285,0.16088374,0.16083464,0.16078556,0.16073649,0.16068743,0.1606384,0.16058938,0.16054037,0.16049139,0.16044241,0.16039345,0.1603445,0.16029556,0.16024666,0.16019775,0.16014886,0.16009998,0.16005114,0.16000229,0.15995346,0.15990464,0.15985584,0.15980707,0.1597583,0.15970954,0.1596608,0.15961209,0.15956338,0.15951468,0.15946601,0.15941735,0.1593687,0.15932006,0.15927143,0.15922283,0.15917425,0.15912567,0.15907712,0.15902857,0.15898004,0.15893152,0.15888302,0.15883453,0.15878606,0.15873761,0.15868917,0.15864074,0.15859233,0.15854393,0.15849555,0.15844719,0.15839882,0.1583505,0.15830217,0.15825386,0.15820557,0.15815729,0.15810902,0.15806077,0.15801254,0.15796432,0.15791611,0.15786792,0.15781975,0.15777159,0.15772344,0.15767531,0.1576272,0.15757908,0.157531,0.15748292,0.15743487,0.15738682,0.1573388,0.15729079,0.15724277,0.1571948,0.15714683,0.15709887,0.15705092,0.157003,0.15695508,0.15690719,0.15685931,0.15681145,0.15676358,0.15671574,0.15666792,0.15662012,0.15657231,0.15652454,0.15647677,0.15642901,0.15638128,0.15633357,0.15628585,0.15623815,0.15619047,0.15614282,0.15609516,0.15604754,0.15599991,0.1559523,0.15590471,0.15585713,0.15580958,0.15576203,0.1557145,0.15566698,0.15561947,0.15557198,0.1555245,0.15547705,0.1554296,0.15538217,0.15533476,0.15528734,0.15523995,0.15519258,0.15514523,0.15509789,0.15505055,0.15500323,0.15495594,0.15490864,0.15486138,0.15481411,0.15476686,0.15471964,0.15467243,0.15462522,0.15457803,0.15453087,0.1544837,0.15443656,0.15438944,0.15434232,0.15429522,0.15424813,0.15420106,0.154154,0.15410696,0.15405993,0.15401292,0.15396592,0.15391892,0.15387195,0.15382501,0.15377806,0.15373114,0.15368421,0.15363732,0.15359044,0.15354358,0.15349671,0.15344986,0.15340304,0.15335622,0.15330943,0.15326265,0.15321587,0.15316913,0.15312237,0.15307565,0.15302894,0.15298223,0.15293555,0.15288888,0.15284222,0.15279558,0.15274896,0.15270235,0.15265574,0.15260915,0.15256257,0.15251602,0.15246949,0.15242295,0.15237644,0.15232994,0.15228346,0.15223698,0.15219052,0.15214407,0.15209764,0.15205124,0.15200484,0.15195845,0.15191208,0.15186572,0.15181936,0.15177304,0.15172672,0.15168042,0.15163414,0.15158786,0.1515416,0.15149537,0.15144913,0.1514029,0.1513567,0.15131052,0.15126434,0.15121818,0.15117203,0.15112591,0.15107979,0.15103368,0.1509876,0.15094152,0.15089545,0.1508494,0.15080337,0.15075736,0.15071134,0.15066536,0.15061937,0.15057342,0.15052746,0.15048152,0.1504356,0.15038969,0.1503438,0.15029791,0.15025206,0.1502062,0.15016036,0.15011454,0.15006872,0.15002292,0.14997713,0.14993137,0.14988562,0.14983988,0.14979416,0.14974844,0.14970274,0.14965706,0.1496114,0.14956573,0.14952008,0.14947447,0.14942884,0.14938325,0.14933766,0.14929208,0.14924653,0.14920099,0.14915545,0.14910993,0.14906444,0.14901894,0.14897346,0.148928,0.14888255,0.14883712,0.1487917,0.1487463,0.14870091,0.14865553,0.14861016,0.14856482,0.14851947,0.14847414,0.14842884,0.14838354,0.14833827,0.14829299,0.14824775,0.14820251,0.14815727,0.14811206,0.14806686,0.14802168,0.1479765,0.14793135,0.1478862,0.14784108,0.14779596,0.14775085,0.14770576,0.1476607,0.14761564,0.14757058,0.14752555,0.14748053,0.14743553,0.14739053,0.14734556,0.14730059,0.14725564,0.1472107,0.14716578,0.14712086,0.14707597,0.14703108,0.14698623,0.14694136,0.14689653,0.1468517,0.14680688,0.14676207,0.1467173,0.14667252,0.14662777,0.14658302,0.14653829,0.14649357,0.14644885,0.14640418,0.14635949,0.14631483,0.14627017,0.14622554,0.14618091,0.14613631,0.14609171,0.14604713,0.14600256,0.145958,0.14591347,0.14586894,0.14582442,0.14577992,0.14573543,0.14569096,0.1456465,0.14560206,0.14555763,0.14551319,0.14546879,0.1454244,0.14538002,0.14533566,0.14529131,0.14524697,0.14520265,0.14515834,0.14511403,0.14506976,0.14502549,0.14498124,0.14493698,0.14489275,0.14484854,0.14480434,0.14476015,0.14471596,0.14467181,0.14462766,0.14458352,0.1445394,0.1444953,0.1444512,0.14440711,0.14436305,0.14431898,0.14427495,0.14423093,0.1441869,0.14414291,0.14409892,0.14405495,0.14401099,0.14396703,0.1439231,0.14387918,0.14383528,0.14379138,0.1437475,0.14370362,0.14365979,0.14361595,0.1435721,0.1435283,0.1434845,0.14344072,0.14339694,0.14335318,0.14330943,0.14326571,0.14322197,0.14317828,0.14313458,0.1430909,0.14304723,0.14300358,0.14295994,0.1429163,0.1428727,0.1428291,0.14278552,0.14274195,0.14269838,0.14265484,0.14261131,0.14256778,0.14252427,0.14248078,0.14243731,0.14239384,0.14235038,0.14230694,0.14226352,0.1422201,0.1421767,0.14213331,0.14208993,0.14204657,0.14200322,0.14195989,0.14191657,0.14187327,0.14182997,0.1417867,0.14174342,0.14170016,0.14165692,0.14161369,0.14157048,0.14152728,0.14148408,0.14144091,0.14139774,0.14135459,0.14131145,0.14126834,0.14122522,0.14118212,0.14113905,0.14109598,0.14105292,0.14100987,0.14096683,0.14092381,0.14088082,0.14083782,0.14079484,0.14075187,0.14070892,0.14066598,0.14062306,0.14058015,0.14053725,0.14049436,0.14045149,0.14040862,0.14036576,0.14032294,0.14028011,0.14023732,0.14019452,0.14015172,0.14010896,0.1400662,0.14002346,0.13998073,0.13993801,0.1398953,0.13985261,0.13980994,0.13976727,0.13972461,0.13968198,0.13963935,0.13959675,0.13955414,0.13951156,0.13946898,0.13942643,0.13938387,0.13934132,0.13929881,0.1392563,0.1392138,0.13917132,0.13912885,0.1390864,0.13904396,0.13900152,0.1389591,0.13891669,0.13887429,0.13883193,0.13878956,0.1387472,0.13870487,0.13866253,0.13862021,0.13857791,0.13853562,0.13849334,0.13845108,0.13840884,0.1383666,0.13832437,0.13828216,0.13823996,0.13819778,0.1381556,0.13811344,0.1380713,0.13802916,0.13798705,0.13794492,0.13790283,0.13786075,0.13781868,0.13777661,0.13773458,0.13769254,0.13765052,0.13760851,0.13756652,0.13752455,0.13748257,0.13744062,0.13739868,0.13735674,0.13731483,0.13727294,0.13723104,0.13718916,0.13714729,0.13710544,0.13706361,0.13702178,0.13697997,0.13693817,0.13689637,0.13685459,0.13681284,0.13677108,0.13672934,0.1366876,0.1366459,0.1366042,0.13656251,0.13652085,0.13647918,0.13643754,0.1363959,0.13635428,0.13631266,0.13627106,0.13622949,0.1361879,0.13614634,0.1361048,0.13606326,0.13602175,0.13598023,0.13593873,0.13589725,0.13585578,0.13581432,0.13577288,0.13573144,0.13569002,0.13564861,0.13560723,0.13556583,0.13552447,0.1354831,0.13544177,0.13540043,0.13535911,0.1353178,0.13527651,0.13523522,0.13519396,0.1351527,0.13511145,0.13507023,0.135029,0.1349878,0.1349466,0.13490543,0.13486426,0.1348231,0.13478196,0.13474083,0.13469972,0.1346586,0.13461751,0.13457642,0.13453536,0.1344943,0.13445327,0.13441223,0.13437122,0.13433021,0.13428922,0.13424824,0.13420726,0.13416632,0.13412537,0.13408443,0.13404351,0.13400261,0.13396172,0.13392083,0.13387997,0.13383912,0.13379827,0.13375744,0.13371663,0.13367581,0.13363501,0.13359424,0.13355348,0.13351272,0.13347198,0.13343124,0.13339052,0.13334982,0.13330913,0.13326845,0.13322778,0.13318712,0.13314648,0.13310584,0.13306522,0.13302462,0.13298403,0.13294344,0.13290288,0.1328623,0.13282177,0.13278124,0.13274072,0.1327002,0.1326597,0.13261922,0.13257876,0.1325383,0.13249785,0.13245742,0.132417,0.13237658,0.13233618,0.1322958,0.13225543,0.13221507,0.13217472,0.1321344,0.13209407,0.13205376,0.13201346,0.13197318,0.1319329,0.13189264,0.13185239,0.13181214,0.13177192,0.13173172,0.1316915,0.13165133,0.13161114,0.13157098,0.13153084,0.13149069,0.13145056,0.13141046,0.13137035,0.13133027,0.13129018,0.13125011,0.13121006,0.13117002,0.13113,0.13108999,0.13104998,0.13100998,0.13097,0.13093004,0.13089007,0.13085014,0.1308102,0.1307703,0.13073038,0.13069049,0.13065061,0.13061073,0.13057087,0.13053103,0.1304912,0.13045137,0.13041157,0.13037176,0.13033198,0.1302922,0.13025245,0.1302127,0.13017297,0.13013324,0.13009353,0.13005383,0.13001414,0.12997447,0.1299348,0.12989515,0.12985551,0.12981588,0.12977627,0.12973666,0.12969707,0.12965749,0.12961791,0.12957837,0.12953882,0.1294993,0.12945978,0.12942027,0.12938078,0.12934129,0.12930182,0.12926236,0.12922291,0.12918347,0.12914406,0.12910464,0.12906526,0.12902586,0.1289865,0.12894712,0.12890778,0.12886843,0.1288291,0.1287898,0.12875049,0.12871121,0.12867193,0.12863265,0.1285934,0.12855417,0.12851493,0.12847571,0.1284365,0.12839732,0.12835814,0.12831897,0.1282798,0.12824064,0.12820151,0.1281624,0.12812328,0.12808418,0.1280451,0.12800603,0.12796697,0.12792791,0.12788887,0.12784985,0.12781084,0.12777182,0.12773284,0.12769386,0.1276549,0.12761593,0.12757699,0.12753806,0.12749913,0.12746023,0.12742133,0.12738244,0.12734357,0.1273047,0.12726586,0.12722702,0.12718819,0.12714939,0.12711059,0.1270718,0.12703303,0.12699425,0.1269555,0.12691675,0.12687802,0.1268393,0.1268006,0.1267619,0.12672321,0.12668455,0.12664588,0.12660724,0.1265686,0.12652998,0.12649135,0.12645276,0.12641416,0.1263756,0.12633702,0.12629847,0.12625994,0.1262214,0.12618288,0.12614438,0.12610587,0.1260674,0.12602893,0.12599047,0.12595202,0.12591359,0.12587516,0.12583674,0.12579834,0.12575996,0.12572157,0.12568322,0.12564486,0.1256065,0.12556818,0.12552987,0.12549156,0.12545326,0.12541498,0.1253767,0.12533845,0.1253002,0.12526196,0.12522374,0.12518552,0.12514731,0.12510912,0.12507094,0.12503278,0.12499463,0.12495648,0.12491834,0.124880224,0.124842115,0.12480402,0.12476593,0.12472786,0.124689795,0.124651745,0.1246137,0.124575675,0.12453766,0.124499656,0.124461666,0.124423675,0.124385715,0.124347754,0.1243098,0.12427187,0.124233946,0.12419604,0.12415814,0.12412024,0.124082364,0.12404451,0.124006644,0.12396881,0.123930976,0.12389316,0.12385535,0.123817556,0.123779766,0.12374199,0.12370423,0.12366648,0.12362874,0.12359102,0.1235533,0.1235156,0.1234779,0.12344022,0.12340255,0.123364896,0.12332725,0.123289615,0.12325199,0.12321437,0.12317677,0.12313919,0.1231016,0.12306404,0.12302649,0.12298894,0.12295141,0.12291389,0.122876376,0.12283888,0.12280139,0.122763924,0.122726455,0.122689,0.12265156,0.12261414,0.12257671,0.12253931,0.12250192,0.12246453,0.12242716,0.1223898,0.12235245,0.122315116,0.12227779,0.12224047,0.122203164,0.12216587,0.12212859,0.12209132,0.12205406,0.12201682,0.12197958,0.121942356,0.12190514,0.12186795,0.121830754,0.121793576,0.121756405,0.121719256,0.12168211,0.12164498,0.12160785,0.121570736,0.12153365,0.12149656,0.12145948,0.12142241,0.12138536,0.121348314,0.121311285,0.12127427,0.121237256,0.121200256,0.12116327,0.121126294,0.12108933,0.12105238,0.121015444,0.12097851,0.120941594,0.120904684,0.12086779,0.1208309,0.12079403,0.12075717,0.12072032,0.12068348,0.12064665,0.12060983,0.12057303,0.12053623,0.12049945,0.12046267,0.12042592,0.120389156,0.120352425,0.12031569,0.12027898,0.120242275,0.12020558,0.1201689,0.12013223,0.120095566,0.12005892,0.120022275,0.119985655,0.11994904,0.11991244,0.11987583,0.11983925,0.11980268,0.11976613,0.11972958,0.11969304,0.11965652,0.119619995,0.119583495,0.119547,0.119510524,0.11947405,0.11943759,0.11940114,0.11936471,0.11932828,0.119291864,0.11925545,0.119219065,0.11918268,0.11914632,0.11910996,0.11907361,0.11903727,0.11900094,0.11896463,0.11892832,0.11889203,0.11885575,0.11881948,0.11878322,0.11874697,0.118710734,0.11867451,0.11863829,0.11860209,0.11856589,0.11852971,0.118493535,0.118457384,0.118421234,0.11838509,0.11834897,0.11831285,0.118276745,0.11824065,0.118204564,0.118168496,0.118132435,0.11809639,0.11806034,0.11802432,0.117988296,0.11795229,0.1179163,0.117880315,0.11784434,0.11780838,0.11777242,0.11773649,0.11770056,0.11766464,0.11762873,0.117592834,0.117556944,0.11752108,0.11748521,0.11744936,0.11741352,0.11737769,0.11734187,0.11730606,0.11727026,0.117234476,0.1171987,0.117162935,0.11712717,0.11709144,0.11705571,0.11701998,0.11698427,0.116948575,0.11691288,0.116877206,0.11684154,0.11680588,0.11677024,0.1167346,0.11669898,0.11666337,0.11662777,0.11659217,0.11655659,0.11652102,0.11648547,0.11644992,0.11641438,0.11637886,0.11634334,0.11630784,0.116272345,0.11623686,0.11620139,0.11616593,0.11613048,0.11609504,0.11605961,0.116024196,0.11598879,0.11595339,0.11591801,0.115882635,0.115847275,0.115811914,0.115776576,0.115741245,0.11570592,0.115670614,0.11563532,0.11560003,0.11556475,0.115529485,0.11549423,0.11545899,0.11542375,0.11538852,0.11535331,0.11531811,0.115282916,0.11524774,0.115212575,0.11517741,0.11514226,0.11510713,0.115072,0.11503688,0.115001775,0.11496668,0.1149316,0.11489652,0.11486146,0.11482641,0.11479137,0.11475634,0.11472132,0.11468631,0.114651315,0.11461633,0.11458135,0.11454637,0.11451142,0.11447648,0.114441544,0.114406615,0.11437171,0.1143368,0.11430191,0.11426704,0.11423216,0.11419731,0.11416245,0.11412761,0.11409278,0.11405797,0.114023164,0.11398837,0.11395358,0.1139188,0.11388405,0.11384929,0.11381455,0.11377981,0.11374509,0.11371038,0.113675684,0.11364099,0.11360631,0.113571644,0.113536984,0.11350234,0.11346769,0.11343307,0.113398455,0.11336385,0.113329254,0.11329467,0.1132601,0.113225535,0.113190986,0.11315644,0.113121904,0.113087386,0.113052875,0.11301837,0.11298389,0.11294941,0.11291494,0.11288048,0.11284604,0.112811595,0.11277717,0.11274276,0.11270835,0.11267395,0.112639576,0.1126052,0.11257084,0.11253648,0.11250214,0.11246781,0.112433486,0.112399176,0.11236487,0.112330586,0.112296306,0.11226203,0.112227775,0.112193525,0.11215929,0.11212507,0.11209084,0.11205664,0.112022445,0.11198826,0.111954086,0.11191992,0.11188576,0.11185162,0.11181749,0.11178336,0.111749254,0.111715145,0.11168106,0.11164698,0.1116129,0.11157885,0.111544795,0.11151076,0.11147673,0.11144271,0.111408696,0.111374706,0.11134071,0.11130674,0.11127277,0.111238815,0.11120486,0.111170925,0.111137,0.11110309,0.11106919,0.11103529,0.11100141,0.11096753,0.11093367,0.11089981,0.11086597,0.11083214,0.110798314,0.1107645,0.11073071,0.11069691,0.11066313,0.11062936,0.110595606,0.11056185,0.11052811,0.11049438,0.11046066,0.110426955,0.110393256,0.110359564,0.11032589,0.11029222,0.110258564,0.11022492,0.11019128,0.110157646,0.11012403,0.11009043,0.11005683,0.11002325,0.10998967,0.10995611,0.10992255,0.10988901,0.10985547,0.10982195,0.10978843,0.109754935,0.10972144,0.109687954,0.10965448,0.10962102,0.109587565,0.10955412,0.109520696,0.10948727,0.10945386,0.109420456,0.10938707,0.10935368,0.10932031,0.10928696,0.1092536,0.10922026,0.10918693,0.109153606,0.109120294,0.109087,0.10905371,0.109020434,0.10898716,0.1089539,0.108920656,0.10888741,0.10885418,0.10882097,0.10878776,0.10875456,0.108721375,0.1086882,0.10865502,0.108621866,0.10858872,0.10855558,0.10852245,0.10848934,0.10845623,0.108423136,0.10839005,0.10835697,0.1083239,0.10829084,0.1082578,0.10822476,0.108191736,0.108158715,0.10812571,0.10809271,0.10805973,0.10802675,0.10799378,0.10796083,0.10792789,0.10789495,0.107862025,0.10782911,0.1077962,0.1077633,0.10773042,0.10769755,0.107664675,0.10763182,0.107598975,0.10756614,0.10753331,0.10750049,0.107467696,0.1074349,0.10740211,0.10736933,0.10733657,0.10730381,0.107271075,0.10723833,0.10720561,0.10717289,0.10714019,0.10710749,0.107074805,0.10704213,0.10700946,0.10697681,0.106944166,0.10691153,0.1068789,0.10684629,0.10681368,0.10678109,0.1067485,0.106715925,0.10668336,0.1066508,0.106618255,0.10658572,0.10655319,0.106520675,0.10648817,0.106455676,0.106423184,0.10639071,0.106358245,0.10632579,0.106293336,0.106260896,0.10622847,0.10619606,0.10616364,0.106131256,0.10609886,0.10606648,0.10603412,0.106001765,0.105969414,0.10593708,0.10590474,0.10587242,0.10584012,0.10580782,0.105775535,0.10574325,0.105710976,0.105678715,0.10564647,0.10561423,0.105582,0.10554978,0.10551757,0.105485365,0.10545318,0.105421,0.105388835,0.10535667,0.105324514,0.10529237,0.105260246,0.105228126,0.105196014,0.1051639,0.10513181,0.10509973,0.10506766,0.105035596,0.10500354,0.1049715,0.10493946,0.10490744,0.10487542,0.10484342,0.10481143,0.104779445,0.104747474,0.104715504,0.10468355,0.1046516,0.10461967,0.10458774,0.104555815,0.10452391,0.104492016,0.104460135,0.104428254,0.10439639,0.10436453,0.10433268,0.104300834,0.10426901,0.10423719,0.10420538,0.10417358,0.104141794,0.10411001,0.10407824,0.10404648,0.104014724,0.103982985,0.10395125,0.10391953,0.10388781,0.10385611,0.10382442,0.10379274,0.10376106,0.1037294,0.10369774,0.1036661,0.10363446,0.103602834,0.10357122,0.103539616,0.10350802,0.103476435,0.10344486,0.103413284,0.10338173,0.10335018,0.10331864,0.10328711,0.10325559,0.103224084,0.10319258,0.10316109,0.10312961,0.10309813,0.103066675,0.10303522,0.10300378,0.10297234,0.10294092,0.102909505,0.1028781,0.102846704,0.102815315,0.10278394,0.10275258,0.10272122,0.10268988,0.10265854,0.10262721,0.102595896,0.10256458,0.10253328,0.102501996,0.10247072,0.10243944,0.10240818,0.10237693,0.10234568,0.10231446,0.10228323,0.10225202,0.10222082,0.10218962,0.10215844,0.10212726,0.102096096,0.10206494,0.10203379,0.10200265,0.10197153,0.10194041,0.1019093,0.1018782,0.10184711,0.101816036,0.10178496,0.1017539,0.101722844,0.101691805,0.101660766,0.10162975,0.10159873,0.10156773,0.101536736,0.10150575,0.10147478,0.101443805,0.10141285,0.1013819,0.10135096,0.101320036,0.10128911,0.1012582,0.101227306,0.101196416,0.10116553,0.10113466,0.1011038,0.101072945,0.1010421,0.10101126,0.10098044,0.10094962,0.100918815,0.100888014,0.10085723,0.10082645,0.10079568,0.10076493,0.100734174,0.10070343,0.1006727,0.10064198,0.10061126,0.100580566,0.10054987,0.10051919,0.10048851,0.10045784,0.10042719,0.10039654,0.10036591,0.10033528,0.10030466,0.10027405,0.10024345,0.10021285,0.10018227,0.1001517,0.10012114,0.100090586,0.10006004,0.100029506,0.09999898,0.09996846,0.09993795,0.09990746,0.09987697,0.09984649,0.099816024,0.09978557,0.09975511,0.099724665,0.09969424,0.09966381,0.099633396,0.09960299,0.0995726,0.099542215,0.09951184,0.09948147,0.09945111,0.09942076,0.099390425,0.09936009,0.09932977,0.09929945,0.09926916,0.09923886,0.09920858,0.0991783,0.099148035,0.09911778,0.09908753,0.09905729,0.09902706,0.09899684,0.09896663,0.09893643,0.098906234,0.09887606,0.09884588,0.09881572,0.098785564,0.09875542,0.09872528,0.09869515,0.098665036,0.09863492,0.09860483,0.098574735,0.09854465,0.09851458,0.098484516,0.09845447,0.09842441,0.09839439,0.09836435,0.09833434,0.098304324,0.09827433,0.09824434,0.09821436,0.098184384,0.098154426,0.09812447,0.09809453,0.098064594,0.098034665,0.09800475,0.09797484,0.097944945,0.09791505,0.09788518,0.0978553,0.09782544,0.09779558,0.097765744,0.09773591,0.09770608,0.09767626,0.09764646,0.09761666,0.09758687,0.09755709,0.09752732,0.09749755,0.0974678,0.09743806,0.097408324,0.0973786,0.097348884,0.09731918,0.09728947,0.09725979,0.09723011,0.09720044,0.09717077,0.09714112,0.09711147,0.09708184,0.09705221,0.0970226,0.09699299,0.09696339,0.0969338,0.09690422,0.09687465,0.09684508,0.09681553,0.096785985,0.09675644,0.096726924,0.096697405,0.09666789,0.0966384,0.09660891,0.096579425,0.09654995,0.09652048,0.09649103,0.09646159,0.09643215,0.09640272,0.096373305,0.09634389,0.0963145,0.096285105,0.09625571,0.09622634,0.09619698,0.096167624,0.096138276,0.096108936,0.09607961,0.096050285,0.096020974,0.09599167,0.095962375,0.095933095,0.09590382,0.095874555,0.0958453,0.095816046,0.0957868,0.09575758,0.09572835,0.09569914,0.09566994,0.09564074,0.09561156,0.09558238,0.095553204,0.09552405,0.095494896,0.09546576,0.095436625,0.0954075,0.095378384,0.095349275,0.09532018,0.09529109,0.09526201,0.09523294,0.09520388,0.09517483,0.095145784,0.09511675,0.09508772,0.0950587,0.09502969,0.09500069,0.0949717,0.09494272,0.09491374,0.09488478,0.09485582,0.09482688,0.09479794,0.094769016,0.09474009,0.09471118,0.094682276,0.09465339,0.0946245,0.094595626,0.094566755,0.0945379,0.09450905,0.09448021,0.094451375,0.09442255,0.09439374,0.09436493,0.09433614,0.09430735,0.09427857,0.09424979,0.09422103,0.09419228,0.09416354,0.0941348,0.09410608,0.094077356,0.09404865,0.09401995,0.09399126,0.09396257,0.093933895,0.09390523,0.09387658,0.09384793,0.09381929,0.09379066,0.09376204,0.09373342,0.09370482,0.093676224,0.09364764,0.093619056,0.09359049,0.093561925,0.093533374,0.09350483,0.0934763,0.093447775,0.09341926,0.09339075,0.09336224,0.09333375,0.093305275,0.093276806,0.09324834,0.09321988,0.09319143,0.09316299,0.09313457,0.09310614,0.09307773,0.093049325,0.09302092,0.09299254,0.092964165,0.09293579,0.092907436,0.09287908,0.09285074,0.0928224,0.092794076,0.092765756,0.092737444,0.09270915,0.09268086,0.092652574,0.0926243,0.09259604,0.09256778,0.09253953,0.09251129,0.09248305,0.092454836,0.09242662,0.09239842,0.09237022,0.09234203,0.09231385,0.09228568,0.092257515,0.09222936,0.09220121,0.09217308,0.09214495,0.09211683,0.09208872,0.09206062,0.09203253,0.09200444,0.09197636,0.09194829,0.091920234,0.09189218,0.09186414,0.09183611,0.09180808,0.09178007,0.09175206,0.09172405,0.09169607,0.091668084,0.091640115,0.091612145,0.09158418,0.09155624,0.091528304,0.09150037,0.09147245,0.09144453,0.09141662,0.091388725,0.09136084,0.09133296,0.09130509,0.09127723,0.09124937,0.091221526,0.09119368,0.091165856,0.091138035,0.09111023,0.09108242,0.091054626,0.09102684,0.09099906,0.09097129,0.09094353,0.09091578,0.09088803,0.09086029,0.09083257,0.090804845,0.09077714,0.090749435,0.09072174,0.090694055,0.090666376,0.090638705,0.09061105,0.0905834,0.09055576,0.09052812,0.0905005,0.09047288,0.090445265,0.09041766,0.09039007,0.09036249,0.090334915,0.09030734,0.09027979,0.090252236,0.0902247,0.09019716,0.09016964,0.090142116,0.090114616,0.090087116,0.090059616,0.09003214,0.09000466,0.08997719,0.089949735,0.08992229,0.089894846,0.08986741,0.08983999,0.08981258,0.089785166,0.08975776,0.089730375,0.08970299,0.08967562,0.08964825,0.089620896,0.089593545,0.0895662,0.08953887,0.08951155,0.08948423,0.08945692,0.089429624,0.08940233,0.08937505,0.08934777,0.08932051,0.08929325,0.089266,0.08923876,0.08921153,0.08918431,0.08915709,0.08912988,0.08910268,0.08907549,0.08904831,0.08902113,0.08899397,0.08896681,0.08893966,0.08891252,0.08888538,0.08885826,0.08883114,0.08880404,0.08877694,0.08874984,0.08872276,0.08869568,0.088668615,0.08864156,0.08861451,0.08858746,0.08856043,0.08853341,0.08850639,0.08847938,0.088452384,0.08842538,0.088398404,0.088371426,0.08834446,0.0883175,0.08829055,0.0882636,0.08823667,0.08820974,0.08818282,0.08815591,0.08812901,0.08810212,0.08807523,0.088048354,0.08802149,0.08799462,0.08796777,0.087940924,0.08791409,0.08788726,0.08786044,0.08783363,0.08780682,0.08778003,0.087753244,0.08772646,0.08769969,0.08767293,0.08764617,0.087619424,0.08759269,0.08756596,0.08753923,0.08751252,0.08748581,0.08745912,0.08743243,0.08740574,0.087379076,0.0873524,0.08732575,0.0872991,0.08727246,0.08724582,0.0872192,0.08719259,0.087165974,0.08713938,0.08711279,0.0870862,0.087059624,0.087033056,0.0870065,0.08697995,0.0869534,0.08692687,0.08690034,0.08687382,0.08684731,0.08682081,0.08679431,0.08676783,0.08674134,0.08671488,0.086688414,0.086661965,0.086635515,0.08660908,0.086582646,0.086556226,0.086529806,0.08650341,0.086477004,0.086450614,0.08642423,0.086397864,0.0863715,0.086345136,0.08631879,0.086292446,0.086266115,0.086239785,0.08621347,0.08618716,0.08616085,0.08613456,0.08610828,0.086082004,0.08605573,0.08602947,0.08600322,0.08597697,0.08595074,0.085924506,0.08589829,0.08587208,0.085845865,0.08581967,0.08579348,0.0857673,0.085741125,0.085714966,0.08568881,0.085662656,0.08563651,0.08561038,0.08558425,0.08555814,0.08553203,0.085505925,0.08547983,0.08545374,0.085427664,0.0854016,0.08537553,0.085349485,0.08532344,0.085297406,0.085271366,0.08524535,0.08521933,0.08519333,0.08516733,0.08514134,0.08511536,0.085089386,0.08506342,0.085037455,0.08501151,0.08498557,0.08495963,0.084933706,0.084907785,0.08488187,0.084855966,0.084830076,0.084804185,0.08477831,0.08475244,0.08472657,0.08470072,0.08467487,0.084649034,0.084623195,0.08459737,0.084571555,0.084545754,0.08451995,0.08449415,0.08446837,0.08444259,0.08441682,0.084391065,0.084365316,0.08433957,0.08431383,0.0842881,0.08426237,0.08423666,0.084210955,0.08418526,0.08415957,0.084133886,0.08410821,0.084082544,0.084056884,0.08403123,0.08400559,0.08397995,0.08395432,0.083928704,0.0839031,0.08387749,0.083851896,0.0838263,0.08380072,0.08377515,0.083749585,0.08372403,0.083698474,0.08367293,0.0836474,0.083621874,0.083596356,0.083570845,0.08354534,0.083519846,0.08349436,0.08346888,0.0834434,0.083417945,0.083392486,0.083367035,0.0833416,0.08331616,0.08329073,0.08326532,0.083239906,0.08321451,0.083189115,0.08316373,0.083138354,0.08311298,0.083087616,0.08306226,0.083036914,0.08301157,0.08298624,0.08296092,0.082935594,0.08291029,0.08288499,0.082859695,0.08283441,0.08280913,0.08278386,0.0827586,0.08273334,0.08270809,0.082682855,0.08265762,0.08263239,0.08260718,0.082581975,0.08255677,0.08253158,0.08250639,0.08248121,0.082456045,0.082430884,0.08240572,0.08238058,0.08235544,0.0823303,0.08230518,0.08228006,0.08225495,0.08222985,0.08220476,0.08217967,0.082154594,0.08212952,0.08210446,0.0820794,0.082054354,0.08202931,0.08200428,0.08197926,0.08195424,0.08192924,0.081904225,0.081879236,0.081854254,0.08182927,0.0818043,0.08177933,0.08175438,0.08172943,0.08170449,0.08167955,0.08165463,0.08162971,0.0816048,0.081579894,0.081555,0.08153012,0.08150523,0.08148036,0.0814555,0.08143064,0.08140579,0.08138095,0.08135611,0.08133128,0.081306465,0.081281655,0.081256844,0.081232056,0.08120726,0.08118248,0.08115771,0.08113294,0.08110818,0.08108343,0.08105868,0.081033945,0.08100922,0.0809845,0.08095978,0.08093508,0.08091038,0.080885686,0.08086101,0.08083633,0.080811664,0.080786996,0.08076234,0.0807377,0.08071306,0.08068843,0.08066381,0.08063919,0.08061458,0.08058998,0.080565386,0.080540806,0.08051623,0.080491655,0.08046709,0.08044253,0.08041798,0.08039345,0.08036891,0.08034439,0.08031987,0.080295354,0.08027086,0.08024636,0.08022187,0.08019739,0.08017291,0.08014845,0.08012399,0.08009954,null],"type":"scatter","name":"Im{S(t)}","hovertemplate":"(%{x:.4f} ms, %{y:.3f} a.u.)","x":[3.935,3.96552130317688,3.9960426063537597,4.02656390953064,4.05708521270752,4.087606515884399,4.11812781906128,4.148649122238159,4.179170425415039,4.209691728591919,4.240213031768799,4.270734334945679,4.301255638122559,4.331776941299439,4.362298244476318,4.392819547653199,4.423340850830078,4.453862154006958,4.484383457183838,4.514904760360718,4.545426063537597,4.575947366714478,4.606468669891358,4.636989973068237,4.667511276245117,4.698032579421997,4.728553882598877,4.759075185775757,4.789596488952637,4.820117792129516,4.850639095306397,4.881160398483276,4.911681701660156,4.942203004837037,4.972724308013916,5.0032456111907955,5.033766914367676,5.064288217544556,5.0948095207214354,5.125330823898316,5.155852127075195,5.186373430252075,5.216894733428955,5.247416036605835,5.277937339782715,5.308458642959595,5.338979946136474,5.3695012493133545,5.400022552490235,5.430543855667114,5.4610651588439945,5.491586462020874,5.522107765197754,5.5526290683746335,5.583150371551514,5.613671674728393,5.6441929779052735,5.674714281082153,5.705235584259033,5.7357568874359135,5.766278190612793,5.796799493789672,5.827320796966553,5.857842100143433,5.888363403320312,5.918884706497193,5.949406009674073,5.979927312850952,6.010448616027832,6.040969919204712,6.071491222381592,6.102012525558472,6.132533828735351,6.163055131912231,6.193576435089112,6.224097738265991,6.254619041442871,6.285140344619752,6.315661647796631,6.34618295097351,6.376704254150391,6.407225557327271,6.43774686050415,6.46826816368103,6.49878946685791,6.52931077003479,6.55983207321167,6.590353376388549,6.62087467956543,6.65139598274231,6.681917285919189,6.712438589096069,6.74295989227295,6.773481195449829,6.8040024986267085,6.834523801803589,6.865045104980469,6.8955664081573484,6.926087711334228,6.956609014511109,6.987130317687988,7.017651620864868,7.048172924041748,7.078694227218628,7.109215530395508,7.139736833572387,7.1702581367492675,7.200779439926148,7.231300743103027,7.261822046279907,7.292343349456787,7.322864652633667,7.3533859558105465,7.383907258987427,7.414428562164307,7.4449498653411865,7.475471168518066,7.505992471694946,7.5365137748718265,7.567035078048706,7.597556381225585,7.628077684402466,7.658598987579346,7.689120290756225,7.719641593933106,7.750162897109986,7.780684200286865,7.811205503463745,7.841726806640625,7.872248109817505,7.902769412994385,7.933290716171264,7.963812019348145,7.994333322525025,8.024854625701904,8.055375928878783,8.085897232055665,8.116418535232544,8.146939838409423,8.177461141586303,8.207982444763184,8.238503747940063,8.269025051116943,8.299546354293824,8.330067657470703,8.360588960647583,8.391110263824462,8.421631567001343,8.452152870178223,8.482674173355102,8.513195476531981,8.543716779708863,8.574238082885742,8.604759386062621,8.635280689239503,8.665801992416382,8.696323295593261,8.72684459877014,8.757365901947022,8.787887205123901,8.81840850830078,8.84892981147766,8.879451114654541,8.90997241783142,8.9404937210083,8.971015024185181,9.00153632736206,9.03205763053894,9.06257893371582,9.0931002368927,9.12362154006958,9.15414284324646,9.184664146423339,9.21518544960022,9.2457067527771,9.276228055953979,9.30674935913086,9.33727066230774,9.367791965484619,9.398313268661498,9.42883457183838,9.459355875015259,9.489877178192138,9.520398481369018,9.550919784545899,9.581441087722778,9.611962390899658,9.642483694076539,9.673004997253418,9.703526300430298,9.734047603607177,9.764568906784058,9.795090209960938,9.825611513137817,9.856132816314696,9.886654119491578,9.917175422668457,9.947696725845336,9.978218029022218,10.008739332199097,10.039260635375976,10.069781938552856,10.100303241729737,10.130824544906616,10.161345848083496,10.191867151260375,10.222388454437256,10.252909757614136,10.283431060791015,10.313952363967894,10.344473667144776,10.374994970321655,10.405516273498534,10.436037576675416,10.466558879852295,10.497080183029174,10.527601486206054,10.558122789382935,10.588644092559814,10.619165395736694,10.649686698913573,10.680208002090454,10.710729305267334,10.741250608444213,10.771771911621094,10.802293214797974,10.832814517974853,10.863335821151733,10.893857124328614,10.924378427505493,10.954899730682373,10.985421033859252,11.015942337036133,11.046463640213013,11.076984943389892,11.107506246566773,11.138027549743653,11.168548852920532,11.199070156097411,11.229591459274292,11.260112762451172,11.290634065628051,11.32115536880493,11.351676671981812,11.382197975158691,11.41271927833557,11.443240581512452,11.473761884689331,11.50428318786621,11.53480449104309,11.565325794219971,11.59584709739685,11.62636840057373,11.65688970375061,11.68741100692749,11.71793231010437,11.74845361328125,11.77897491645813,11.80949621963501,11.84001752281189,11.870538825988769,11.90106012916565,11.93158143234253,11.962102735519409,11.99262403869629,12.02314534187317,12.053666645050049,12.084187948226928,12.11470925140381,12.145230554580689,12.175751857757568,12.20627316093445,12.236794464111329,12.267315767288208,12.297837070465087,12.328358373641969,12.358879676818848,12.389400979995727,12.419922283172607,12.450443586349488,12.480964889526367,12.511486192703247,12.542007495880128,12.572528799057007,12.603050102233887,12.633571405410766,12.664092708587647,12.694614011764527,12.725135314941406,12.755656618118286,12.786177921295167,12.816699224472046,12.847220527648926,12.877741830825807,12.908263134002686,12.938784437179566,12.969305740356445,12.999827043533326,13.030348346710205,13.060869649887085,13.091390953063964,13.121912256240845,13.152433559417725,13.182954862594604,13.213476165771485,13.243997468948365,13.274518772125244,13.305040075302124,13.335561378479005,13.366082681655884,13.396603984832764,13.427125288009643,13.457646591186524,13.488167894363404,13.518689197540283,13.549210500717164,13.579731803894044,13.610253107070923,13.640774410247802,13.671295713424684,13.701817016601563,13.732338319778442,13.762859622955322,13.793380926132203,13.823902229309082,13.854423532485962,13.884944835662843,13.915466138839722,13.945987442016602,13.976508745193481,14.007030048370362,14.037551351547242,14.068072654724121,14.098593957901,14.129115261077882,14.159636564254761,14.19015786743164,14.22067917060852,14.251200473785401,14.28172177696228,14.31224308013916,14.342764383316041,14.37328568649292,14.4038069896698,14.43432829284668,14.46484959602356,14.49537089920044,14.52589220237732,14.556413505554199,14.58693480873108,14.61745611190796,14.647977415084839,14.67849871826172,14.709020021438599,14.739541324615479,14.770062627792358,14.800583930969239,14.831105234146118,14.861626537322998,14.892147840499877,14.922669143676758,14.953190446853638,14.983711750030517,15.014233053207398,15.044754356384278,15.075275659561157,15.105796962738037,15.136318265914918,15.166839569091797,15.197360872268677,15.227882175445556,15.258403478622437,15.288924781799317,15.319446084976196,15.349967388153077,15.380488691329957,15.411009994506836,15.441531297683715,15.472052600860597,15.502573904037476,15.533095207214355,15.563616510391235,15.594137813568116,15.624659116744995,15.655180419921875,15.685701723098756,15.716223026275635,15.746744329452515,15.777265632629394,15.807786935806275,15.838308238983155,15.868829542160034,15.899350845336913,15.929872148513795,15.960393451690674,15.990914754867553,16.021436058044433,16.051957361221312,16.08247866439819,16.11299996757507,16.143521270751954,16.174042573928833,16.204563877105713,16.235085180282592,16.26560648345947,16.29612778663635,16.32664908981323,16.35717039299011,16.387691696166993,16.418212999343872,16.44873430252075,16.47925560569763,16.50977690887451,16.54029821205139,16.57081951522827,16.601340818405152,16.63186212158203,16.66238342475891,16.69290472793579,16.72342603111267,16.75394733428955,16.78446863746643,16.81498994064331,16.84551124382019,16.87603254699707,16.90655385017395,16.93707515335083,16.96759645652771,16.998117759704588,17.028639062881467,17.05916036605835,17.08968166923523,17.12020297241211,17.15072427558899,17.181245578765868,17.211766881942747,17.242288185119627,17.27280948829651,17.30333079147339,17.33385209465027,17.364373397827148,17.394894701004027,17.425416004180907,17.455937307357786,17.48645861053467,17.51697991371155,17.547501216888428,17.578022520065307,17.608543823242186,17.639065126419066,17.669586429595945,17.700107732772825,17.730629035949708,17.761150339126587,17.791671642303466,17.822192945480346,17.852714248657225,17.883235551834105,17.913756855010984,17.944278158187867,17.974799461364746,18.005320764541626,18.035842067718505,18.066363370895385,18.096884674072264,18.127405977249143,18.157927280426026,18.188448583602906,18.218969886779785,18.249491189956665,18.280012493133544,18.310533796310423,18.341055099487303,18.371576402664182,18.402097705841065,18.432619009017944,18.463140312194824,18.493661615371703,18.524182918548583,18.554704221725462,18.58522552490234,18.615746828079224,18.646268131256104,18.676789434432983,18.707310737609863,18.737832040786742,18.76835334396362,18.7988746471405,18.82939595031738,18.859917253494263,18.890438556671143,18.920959859848022,18.9514811630249,18.98200246620178,19.01252376937866,19.04304507255554,19.073566375732423,19.104087678909302,19.13460898208618,19.16513028526306,19.19565158843994,19.22617289161682,19.2566941947937,19.287215497970582,19.31773680114746,19.34825810432434,19.37877940750122,19.4093007106781,19.43982201385498,19.47034331703186,19.500864620208738,19.53138592338562,19.5619072265625,19.59242852973938,19.62294983291626,19.65347113609314,19.683992439270018,19.714513742446897,19.74503504562378,19.77555634880066,19.80607765197754,19.836598955154418,19.867120258331298,19.897641561508177,19.928162864685056,19.958684167861936,19.989205471038815,20.019726774215698,20.050248077392578,20.080769380569457,20.111290683746336,20.141811986923216,20.172333290100095,20.202854593276975,20.233375896453854,20.263897199630737,20.294418502807616,20.324939805984496,20.355461109161375,20.385982412338254,20.416503715515134,20.447025018692013,20.477546321868896,20.508067625045776,20.538588928222655,20.569110231399534,20.599631534576414,20.630152837753293,20.660674140930173,20.691195444107056,20.721716747283935,20.752238050460814,20.782759353637694,20.813280656814573,20.843801959991453,20.874323263168332,20.90484456634521,20.935365869522094,20.965887172698974,20.996408475875853,21.026929779052733,21.057451082229612,21.08797238540649,21.11849368858337,21.149014991760254,21.179536294937133,21.210057598114012,21.240578901290892,21.27110020446777,21.30162150764465,21.33214281082153,21.362664113998413,21.393185417175292,21.423706720352172,21.45422802352905,21.48474932670593,21.51527062988281,21.54579193305969,21.57631323623657,21.606834539413452,21.63735584259033,21.66787714576721,21.69839844894409,21.72891975212097,21.75944105529785,21.789962358474728,21.82048366165161,21.85100496482849,21.88152626800537,21.91204757118225,21.94256887435913,21.973090177536008,22.003611480712888,22.034132783889767,22.06465408706665,22.09517539024353,22.12569669342041,22.156217996597288,22.186739299774167,22.217260602951047,22.247781906127926,22.27830320930481,22.30882451248169,22.339345815658568,22.369867118835447,22.400388422012327,22.430909725189206,22.461431028366086,22.49195233154297,22.522473634719848,22.552994937896727,22.583516241073607,22.614037544250486,22.644558847427366,22.675080150604245,22.705601453781124,22.736122756958007,22.766644060134887,22.797165363311766,22.827686666488646,22.858207969665525,22.888729272842404,22.919250576019284,22.949771879196167,22.980293182373046,23.010814485549925,23.041335788726805,23.071857091903684,23.102378395080564,23.132899698257443,23.163421001434326,23.193942304611205,23.224463607788085,23.254984910964964,23.285506214141844,23.316027517318723,23.346548820495602,23.377070123672482,23.407591426849365,23.438112730026244,23.468634033203124,23.499155336380003,23.529676639556882,23.560197942733762,23.59071924591064,23.621240549087524,23.651761852264404,23.682283155441283,23.712804458618162,23.74332576179504,23.77384706497192,23.8043683681488,23.834889671325683,23.865410974502563,23.895932277679442,23.92645358085632,23.9569748840332,23.98749618721008,24.01801749038696,24.04853879356384,24.079060096740722,24.1095813999176,24.14010270309448,24.17062400627136,24.20114530944824,24.23166661262512,24.262187915802,24.29270921897888,24.32323052215576,24.35375182533264,24.38427312850952,24.4147944316864,24.44531573486328,24.475837038040158,24.506358341217037,24.53687964439392,24.5674009475708,24.59792225074768,24.62844355392456,24.658964857101438,24.689486160278317,24.720007463455197,24.75052876663208,24.78105006980896,24.81157137298584,24.842092676162718,24.872613979339597,24.903135282516477,24.933656585693356,24.96417788887024,24.99469919204712,25.025220495223998,25.055741798400877,25.086263101577757,25.116784404754636,25.147305707931515,25.177827011108395,25.208348314285278,25.238869617462157,25.269390920639037,25.299912223815916,25.330433526992795,25.360954830169675,25.391476133346554,25.421997436523437,25.452518739700317,25.483040042877196,25.513561346054075,25.544082649230955,25.574603952407834,25.605125255584714,25.635646558761596,25.666167861938476,25.696689165115355,25.727210468292235,25.757731771469114,25.788253074645993,25.818774377822873,25.849295680999752,25.879816984176635,25.910338287353515,25.940859590530394,25.971380893707273,26.001902196884153,26.032423500061032,26.06294480323791,26.093466106414795,26.123987409591674,26.154508712768553,26.185030015945433,26.215551319122312,26.24607262229919,26.27659392547607,26.30711522865295,26.337636531829833,26.368157835006713,26.398679138183592,26.42920044136047,26.45972174453735,26.49024304771423,26.52076435089111,26.551285654067993,26.581806957244872,26.61232826042175,26.64284956359863,26.67337086677551,26.70389216995239,26.73441347312927,26.764934776306152,26.79545607948303,26.82597738265991,26.85649868583679,26.88701998901367,26.91754129219055,26.94806259536743,26.978583898544308,27.00910520172119,27.03962650489807,27.07014780807495,27.10066911125183,27.13119041442871,27.161711717605588,27.192233020782467,27.22275432395935,27.25327562713623,27.28379693031311,27.31431823348999,27.344839536666868,27.375360839843747,27.405882143020627,27.43640344619751,27.46692474937439,27.49744605255127,27.527967355728148,27.558488658905027,27.589009962081906,27.619531265258786,27.650052568435665,27.68057387161255,27.711095174789428,27.741616477966307,27.772137781143186,27.802659084320066,27.833180387496945,27.863701690673825,27.894222993850708,27.924744297027587,27.955265600204466,27.985786903381346,28.016308206558225,28.046829509735105,28.077350812911984,28.107872116088867,28.138393419265746,28.168914722442626,28.199436025619505,28.229957328796385,28.260478631973264,28.290999935150143,28.321521238327023,28.352042541503906,28.382563844680785,28.413085147857664,28.443606451034544,28.474127754211423,28.504649057388303,28.535170360565182,28.565691663742065,28.596212966918944,28.626734270095824,28.657255573272703,28.687776876449583,28.718298179626462,28.74881948280334,28.77934078598022,28.809862089157104,28.840383392333983,28.870904695510863,28.901425998687742,28.93194730186462,28.9624686050415,28.99298990821838,29.023511211395263,29.054032514572143,29.084553817749022,29.1150751209259,29.14559642410278,29.17611772727966,29.20663903045654,29.237160333633422,29.267681636810302,29.29820293998718,29.32872424316406,29.35924554634094,29.38976684951782,29.4202881526947,29.45080945587158,29.48133075904846,29.51185206222534,29.54237336540222,29.5728946685791,29.60341597175598,29.63393727493286,29.664458578109738,29.69497988128662,29.7255011844635,29.75602248764038,29.78654379081726,29.817065093994138,29.847586397171018,29.878107700347897,29.90862900352478,29.93915030670166,29.96967160987854,30.000192913055418,30.030714216232298,30.061235519409177,30.091756822586056,30.122278125762936,30.15279942893982,30.183320732116698,30.213842035293577,30.244363338470457,30.274884641647336,30.305405944824216,30.335927248001095,30.366448551177978,30.396969854354857,30.427491157531737,30.458012460708616,30.488533763885496,30.519055067062375,30.549576370239254,30.580097673416137,30.610618976593017,30.641140279769896,30.671661582946776,30.702182886123655,30.732704189300534,30.763225492477414,30.793746795654293,30.824268098831176,30.854789402008056,30.885310705184935,30.915832008361814,30.946353311538694,30.976874614715573,31.007395917892453,31.037917221069335,31.068438524246215,31.098959827423094,31.129481130599974,31.160002433776853,31.190523736953732,31.221045040130612,31.25156634330749,31.282087646484374,31.312608949661254,31.343130252838133,31.373651556015012,31.404172859191892,31.43469416236877,31.46521546554565,31.495736768722534,31.526258071899413,31.556779375076292,31.587300678253172,31.61782198143005,31.64834328460693,31.67886458778381,31.709385890960693,31.739907194137572,31.77042849731445,31.80094980049133,31.83147110366821,31.86199240684509,31.89251371002197,31.92303501319885,31.95355631637573,31.98407761955261,32.01459892272949,32.04512022590637,32.07564152908325,32.10616283226013,32.13668413543701,32.16720543861389,32.197726741790774,32.22824804496765,32.25876934814453,32.28929065132141,32.31981195449829,32.35033325767517,32.38085456085205,32.41137586402893,32.44189716720581,32.47241847038269,32.50293977355957,32.53346107673645,32.56398237991333,32.59450368309021,32.62502498626709,32.65554628944397,32.68606759262085,32.71658889579773,32.74711019897461,32.777631502151486,32.80815280532837,32.83867410850525,32.86919541168213,32.89971671485901,32.93023801803589,32.96075932121277,32.991280624389645,33.02180192756653,33.052323230743404,33.08284453392029,33.11336583709717,33.143887140274046,33.17440844345093,33.204929746627805,33.23545104980469,33.265972352981564,33.29649365615845,33.32701495933533,33.357536262512205,33.38805756568909,33.418578868865964,33.44910017204285,33.47962147521972,33.510142778396606,33.54066408157349,33.571185384750365,33.60170668792725,33.63222799110412,33.66274929428101,33.69327059745788,33.723791900634765,33.75431320381165,33.784834506988524,33.81535581016541,33.84587711334228,33.876398416519166,33.90691971969604,33.937441022872925,33.96796232604981,33.99848362922668,34.029004932403566,34.05952623558044,34.090047538757325,34.1205688419342,34.151090145111084,34.18161144828797,34.21213275146484,34.242654054641726,34.2731753578186,34.303696660995485,34.33421796417236,34.36473926734924,34.39526057052612,34.425781873703,34.456303176879885,34.48682448005676,34.517345783233644,34.54786708641052,34.5783883895874,34.60890969276428,34.63943099594116,34.669952299118044,34.70047360229492,34.7309949054718,34.76151620864868,34.79203751182556,34.82255881500244,34.85308011817932,34.883601421356204,34.91412272453308,34.94464402770996,34.97516533088684,35.00568663406372,35.0362079372406,35.06672924041748,35.09725054359436,35.12777184677124,35.15829314994812,35.188814453125,35.21933575630188,35.24985705947876,35.28037836265564,35.31089966583252,35.3414209690094,35.37194227218628,35.40246357536316,35.43298487854004,35.463506181716916,35.4940274848938,35.524548788070675,35.55507009124756,35.58559139442444,35.61611269760132,35.6466340007782,35.677155303955075,35.70767660713196,35.738197910308834,35.76871921348572,35.7992405166626,35.829761819839476,35.86028312301636,35.890804426193235,35.92132572937012,35.951847032547,35.982368335723876,36.01288963890076,36.043410942077635,36.07393224525452,36.1044535484314,36.13497485160828,36.16549615478516,36.196017457962036,36.22653876113892,36.257060064315795,36.28758136749268,36.31810267066956,36.348623973846436,36.37914527702332,36.409666580200195,36.44018788337708,36.470709186553954,36.50123048973084,36.53175179290771,36.562273096084596,36.59279439926148,36.623315702438354,36.65383700561524,36.68435830879211,36.714879611968996,36.74540091514587,36.775922218322755,36.80644352149964,36.836964824676514,36.8674861278534,36.89800743103027,36.928528734207156,36.95905003738403,36.989571340560914,37.0200926437378,37.05061394691467,37.081135250091556,37.11165655326843,37.142177856445315,37.17269915962219,37.203220462799074,37.23374176597596,37.26426306915283,37.294784372329715,37.32530567550659,37.355826978683474,37.38634828186035,37.41686958503723,37.447390888214116,37.47791219139099,37.508433494567875,37.53895479774475,37.569476100921634,37.59999740409851,37.63051870727539,37.66104001045227,37.69156131362915,37.722082616806034,37.75260391998291,37.78312522315979,37.81364652633667,37.84416782951355,37.87468913269043,37.90521043586731,37.93573173904419,37.96625304222107,37.99677434539795,38.02729564857483,38.05781695175171,38.08833825492859,38.11885955810547,38.14938086128235,38.17990216445923,38.21042346763611,38.24094477081299,38.27146607398987,38.301987377166746,38.33250868034363,38.36302998352051,38.39355128669739,38.42407258987427,38.45459389305115,38.48511519622803,38.515636499404906,38.54615780258179,38.57667910575867,38.60720040893555,38.63772171211243,38.668243015289306,38.69876431846619,38.729285621643065,38.75980692481995,38.79032822799683,38.82084953117371,38.85137083435059,38.881892137527466,38.91241344070435,38.942934743881224,38.97345604705811,39.00397735023498,39.034498653411866,39.06501995658875,39.095541259765625,39.12606256294251,39.156583866119384,39.18710516929627,39.21762647247314,39.248147775650025,39.27866907882691,39.309190382003784,39.33971168518067,39.37023298835754,39.400754291534426,39.4312755947113,39.461796897888185,39.49231820106507,39.522839504241944,39.55336080741883,39.5838821105957,39.614403413772585,39.64492471694946,39.675446020126344,39.70596732330323,39.7364886264801,39.767009929656986,39.79753123283386,39.828052536010745,39.85857383918762,39.8890951423645,39.919616445541386,39.95013774871826,39.980659051895145,40.01118035507202,40.041701658248904,40.07222296142578,40.10274426460266,40.13326556777954,40.16378687095642,40.194308174133305,40.22482947731018,40.25535078048706,40.28587208366394,40.31639338684082,40.3469146900177,40.37743599319458,40.407957296371464,40.43847859954834,40.46899990272522,40.4995212059021,40.53004250907898,40.56056381225586,40.59108511543274,40.62160641860962,40.6521277217865,40.68264902496338,40.71317032814026,40.74369163131714,40.77421293449402,40.8047342376709,40.83525554084778,40.86577684402466,40.89629814720154,40.92681945037842,40.9573407535553,40.987862056732176,41.01838335990906,41.04890466308594,41.07942596626282,41.1099472694397,41.14046857261658,41.17098987579346,41.201511178970335,41.23203248214722,41.2625537853241,41.29307508850098,41.32359639167786,41.354117694854736,41.38463899803162,41.415160301208495,41.44568160438538,41.476202907562254,41.50672421073914,41.53724551391602,41.567766817092895,41.59828812026978,41.628809423446654,41.65933072662354,41.68985202980041,41.720373332977296,41.75089463615418,41.781415939331055,41.81193724250794,41.84245854568481,41.872979848861696,41.90350115203857,41.934022455215455,41.96454375839234,41.995065061569214,42.0255863647461,42.05610766792297,42.086628971099856,42.11715027427673,42.147671577453615,42.1781928806305,42.20871418380737,42.239235486984256,42.26975679016113,42.300278093338015,42.33079939651489,42.361320699691774,42.39184200286866,42.42236330604553,42.452884609222416,42.48340591239929,42.513927215576174,42.54444851875305,42.57496982192993,42.60549112510681,42.63601242828369,42.666533731460575,42.69705503463745,42.727576337814334,42.75809764099121,42.78861894416809,42.81914024734497,42.84966155052185,42.880182853698734,42.91070415687561,42.94122546005249,42.97174676322937,43.00226806640625,43.03278936958313,43.06331067276001,43.093831975936894,43.12435327911377,43.15487458229065,43.18539588546753,43.21591718864441,43.24643849182129,43.27695979499817,43.30748109817505,43.33800240135193,43.36852370452881,43.39904500770569,43.42956631088257,43.46008761405945,43.49060891723633,43.52113022041321,43.55165152359009,43.58217282676697,43.61269412994385,43.64321543312073,43.673736736297606,43.70425803947449,43.73477934265137,43.76530064582825,43.79582194900513,43.826343252182006,43.85686455535889,43.887385858535765,43.91790716171265,43.948428464889524,43.97894976806641,44.00947107124329,44.039992374420166,44.07051367759705,44.101034980773925,44.13155628395081,44.16207758712768,44.192598890304566,44.22312019348145,44.253641496658325,44.28416279983521,44.314684103012084,44.34520540618897,44.37572670936584,44.406248012542726,44.43676931571961,44.467290618896484,44.49781192207337,44.52833322525024,44.558854528427126,44.589375831604,44.619897134780885,44.65041843795777,44.680939741134644,44.71146104431153,44.7419823474884,44.772503650665286,44.80302495384216,44.833546257019044,44.86406756019593,44.8945888633728,44.925110166549686,44.95563146972656,44.986152772903445,45.01667407608032,45.047195379257204,45.07771668243408,45.10823798561096,45.138759288787845,45.16928059196472,45.199801895141604,45.23032319831848,45.26084450149536,45.29136580467224,45.32188710784912,45.352408411026005,45.38292971420288,45.413451017379764,45.44397232055664,45.47449362373352,45.5050149269104,45.53553623008728,45.566057533264164,45.59657883644104,45.62710013961792,45.6576214427948,45.68814274597168,45.71866404914856,45.74918535232544,45.77970665550232,45.8102279586792,45.84074926185608,45.87127056503296,45.90179186820984,45.93231317138672,45.9628344745636,45.99335577774048,46.02387708091736,46.05439838409424,46.08491968727112,46.115440990448,46.145962293624876,46.17648359680176,46.20700489997864,46.23752620315552,46.2680475063324,46.29856880950928,46.32909011268616,46.359611415863036,46.39013271903992,46.420654022216794,46.45117532539368,46.48169662857056,46.512217931747436,46.54273923492432,46.573260538101195,46.60378184127808,46.634303144454954,46.66482444763184,46.69534575080872,46.725867053985596,46.75638835716248,46.786909660339354,46.81743096351624,46.84795226669311,46.878473569869996,46.90899487304688,46.939516176223755,46.97003747940064,47.000558782577514,47.0310800857544,47.06160138893127,47.092122692108155,47.12264399528504,47.153165298461914,47.1836866016388,47.21420790481567,47.244729207992556,47.27525051116943,47.305771814346315,47.3362931175232,47.366814420700074,47.39733572387696,47.42785702705383,47.458378330230715,47.48889963340759,47.519420936584474,47.54994223976135,47.58046354293823,47.610984846115116,47.64150614929199,47.672027452468875,47.70254875564575,47.73307005882263,47.76359136199951,47.79411266517639,47.824633968353275,47.85515527153015,47.885676574707034,47.91619787788391,47.94671918106079,47.97724048423767,48.00776178741455,48.038283090591435,48.06880439376831,48.09932569694519,48.12984700012207,48.16036830329895,48.19088960647583,48.22141090965271,48.251932212829594,48.28245351600647,48.31297481918335,48.34349612236023,48.37401742553711,48.40453872871399,48.43506003189087,48.46558133506775,48.49610263824463,48.52662394142151,48.55714524459839,48.58766654777527,48.61818785095215,48.64870915412903,48.679230457305906,48.70975176048279,48.74027306365967,48.77079436683655,48.80131567001343,48.831836973190306,48.86235827636719,48.892879579544065,48.92340088272095,48.95392218589783,48.98444348907471,49.01496479225159,49.045486095428465,49.07600739860535,49.106528701782224,49.13705000495911,49.16757130813599,49.198092611312866,49.22861391448975,49.259135217666625,49.28965652084351,49.320177824020384,49.35069912719727,49.38122043037415,49.411741733551025,49.44226303672791,49.472784339904784,49.50330564308167,49.53382694625854,49.564348249435426,49.59486955261231,49.625390855789185,49.65591215896607,49.68643346214294,49.71695476531983,49.7474760684967,49.777997371673585,49.80851867485047,49.839039978027344,49.86956128120423,49.9000825843811,49.930603887557986,49.96112519073486,49.991646493911745,50.02216779708862,50.0526891002655,50.083210403442386,50.11373170661926,50.144253009796145,50.17477431297302,50.205295616149904,50.23581691932678,50.26633822250366,50.296859525680546,50.32738082885742,50.357902132034305,50.38842343521118,50.41894473838806,50.44946604156494,50.47998734474182,50.510508647918705,50.54102995109558,50.571551254272464,50.60207255744934,50.63259386062622,50.6631151638031,50.69363646697998,50.724157770156864,50.75467907333374,50.78520037651062,50.8157216796875,50.84624298286438,50.87676428604126,50.90728558921814,50.937806892395024,50.9683281955719,50.99884949874878,51.02937080192566,51.05989210510254,51.09041340827942,51.1209347114563,51.151456014633176,51.18197731781006,51.21249862098694,51.24301992416382,51.2735412273407,51.30406253051758,51.33458383369446,51.365105136871335,51.39562644004822,51.4261477432251,51.45666904640198,51.48719034957886,51.517711652755736,51.54823295593262,51.578754259109495,51.60927556228638,51.63979686546326,51.67031816864014,51.70083947181702,51.731360774993895,51.76188207817078,51.792403381347654,51.82292468452454,51.85344598770142,51.883967290878296,51.91448859405518,51.945009897232055,51.97553120040894,52.00605250358581,52.036573806762696,52.06709510993958,52.097616413116455,52.12813771629334,52.158659019470214,52.1891803226471,52.21970162582397,52.250222929000856,52.28074423217774,52.311265535354615,52.3417868385315,52.37230814170837,52.402829444885256,52.43335074806213,52.463872051239015,52.49439335441589,52.524914657592774,52.55543596076966,52.58595726394653,52.616478567123416,52.64699987030029,52.677521173477174,52.70804247665405,52.73856377983093,52.769085083007816,52.79960638618469,52.830127689361575,52.86064899253845,52.891170295715334,52.92169159889221,52.95221290206909,52.982734205245976,53.01325550842285,53.043776811599734,53.07429811477661,53.10481941795349,53.13534072113037,53.16586202430725,53.196383327484135,53.22690463066101,53.257425933837894,53.28794723701477,53.31846854019165,53.34898984336853,53.37951114654541,53.410032449722294,53.44055375289917,53.47107505607605,53.50159635925293,53.53211766242981,53.56263896560669,53.59316026878357,53.62368157196045,53.65420287513733,53.68472417831421,53.71524548149109,53.74576678466797,53.77628808784485,53.80680939102173,53.837330694198606,53.86785199737549,53.89837330055237,53.92889460372925,53.95941590690613,53.989937210083006,54.02045851325989,54.050979816436765,54.08150111961365,54.11202242279053,54.14254372596741,54.17306502914429,54.203586332321166,54.23410763549805,54.264628938674925,54.29515024185181,54.32567154502869,54.356192848205566,54.38671415138245,54.417235454559325,54.44775675773621,54.478278060913084,54.50879936408997,54.53932066726685,54.569841970443726,54.60036327362061,54.630884576797484,54.66140587997437,54.69192718315124,54.722448486328126,54.75296978950501,54.783491092681885,54.81401239585877,54.844533699035644,54.87505500221253,54.9055763053894,54.936097608566286,54.96661891174316,54.997140214920044,55.02766151809693,55.0581828212738,55.088704124450686,55.11922542762756,55.149746730804445,55.18026803398132,55.210789337158204,55.24131064033509,55.27183194351196,55.302353246688845,55.33287454986572,55.363395853042604,55.39391715621948,55.42443845939636,55.454959762573246,55.48548106575012,55.516002368927005,55.54652367210388,55.577044975280764,55.60756627845764,55.63808758163452,55.668608884811405,55.69913018798828,55.729651491165164,55.76017279434204,55.79069409751892,55.8212154006958,55.85173670387268,55.882258007049565,55.91277931022644,55.94330061340332,55.9738219165802,56.00434321975708,56.03486452293396,56.06538582611084,56.09590712928772,56.1264284324646,56.15694973564148,56.18747103881836,56.21799234199524,56.24851364517212,56.279034948349,56.309556251525876,56.34007755470276,56.37059885787964,56.40112016105652,56.4316414642334,56.46216276741028,56.49268407058716,56.523205373764036,56.55372667694092,56.5842479801178,56.61476928329468,56.64529058647156,56.675811889648436,56.70633319282532,56.736854496002195,56.76737579917908,56.79789710235596,56.82841840553284,56.85893970870972,56.889461011886596,56.91998231506348,56.950503618240354,56.98102492141724,57.01154622459412,57.042067527770996,57.07258883094788,57.103110134124755,57.13363143730164,57.164152740478514,57.1946740436554,57.22519534683228,57.255716650009155,57.28623795318604,57.316759256362914,57.3472805595398,57.37780186271667,57.408323165893556,57.43884446907043,57.469365772247315,57.4998870754242,57.530408378601074,57.56092968177796,57.59145098495483,57.621972288131715,57.65249359130859,57.683014894485474,57.71353619766236,57.74405750083923,57.774578804016116,57.80510010719299,57.835621410369875,57.86614271354675,57.89666401672363,57.927185319900516,57.95770662307739,57.988227926254275,58.01874922943115,58.049270532608034,58.07979183578491,58.11031313896179,58.140834442138676,58.17135574531555,58.201877048492435,58.23239835166931,58.26291965484619,58.29344095802307,58.32396226119995,58.354483564376835,58.38500486755371,58.415526170730594,58.44604747390747,58.47656877708435,58.50709008026123,58.53761138343811,58.56813268661499,58.59865398979187,58.62917529296875,58.65969659614563,58.69021789932251,58.72073920249939,58.75126050567627,58.78178180885315,58.81230311203003,58.84282441520691,58.87334571838379,58.90386702156067,58.93438832473755,58.96490962791443,58.995430931091306,59.02595223426819,59.05647353744507,59.08699484062195,59.11751614379883,59.14803744697571,59.17855875015259,59.209080053329465,59.23960135650635,59.27012265968323,59.30064396286011,59.33116526603699,59.361686569213866,59.39220787239075,59.422729175567625,59.45325047874451,59.48377178192139,59.51429308509827,59.54481438827515,59.575335691452025,59.60585699462891,59.636378297805784,59.66689960098267,59.69742090415955,59.727942207336426,59.75846351051331,59.788984813690185,59.81950611686707,59.85002742004394,59.880548723220826,59.9110700263977,59.941591329574585,59.97211263275147,60.002633935928344,60.03315523910523,60.0636765422821,60.094197845458986,60.12471914863586,60.155240451812745,60.18576175498963,60.2162830581665,60.246804361343386,60.27732566452026,60.307846967697145,60.33836827087402,60.368889574050904,60.39941087722779,60.42993218040466,60.460453483581546,60.49097478675842,60.521496089935304,60.55201739311218,60.58253869628906,60.613059999465946,60.64358130264282,60.674102605819705,60.70462390899658,60.735145212173464,60.76566651535034,60.79618781852722,60.826709121704106,60.85723042488098,60.887751728057864,60.91827303123474,60.94879433441162,60.9793156375885,61.00983694076538,61.04035824394226,61.07087954711914,61.101400850296024,61.1319221534729,61.16244345664978,61.19296475982666,61.22348606300354,61.25400736618042,61.2845286693573,61.31504997253418,61.34557127571106,61.37609257888794,61.40661388206482,61.4371351852417,61.46765648841858,61.49817779159546,61.52869909477234,61.55922039794922,61.5897417011261,61.62026300430298,61.65078430747986,61.681305610656736,61.71182691383362,61.7423482170105,61.77286952018738,61.80339082336426,61.833912126541136,61.86443342971802,61.894954732894895,61.92547603607178,61.95599733924866,61.98651864242554,62.01703994560242,62.047561248779296,62.07808255195618,62.108603855133055,62.13912515830994,62.16964646148681,62.200167764663696,62.23068906784058,62.261210371017455,62.29173167419434,62.322252977371214,62.3527742805481,62.38329558372497,62.413816886901856,62.44433819007874,62.474859493255614,62.5053807964325,62.53590209960937,62.566423402786256,62.59694470596313,62.627466009140015,62.6579873123169,62.688508615493774,62.71902991867066,62.74955122184753,62.780072525024416,62.81059382820129,62.841115131378174,62.87163643455506,62.90215773773193,62.932679040908816,62.96320034408569,62.993721647262575,63.02424295043945,63.054764253616334,63.08528555679322,63.11580685997009,63.146328163146975,63.17684946632385,63.207370769500734,63.23789207267761,63.26841337585449,63.298934679031376,63.32945598220825,63.359977285385135,63.39049858856201,63.421019891738894,63.45154119491577,63.48206249809265,63.51258380126953,63.54310510444641,63.573626407623294,63.60414771080017,63.63466901397705,63.66519031715393,63.69571162033081,63.72623292350769,63.75675422668457,63.78727552986145,63.81779683303833,63.84831813621521,63.87883943939209,63.90936074256897,63.93988204574585,63.97040334892273,64.00092465209961,64.03144595527648,64.06196725845336,64.09248856163025,64.12300986480713,64.153531167984,64.18405247116088,64.21457377433777,64.24509507751465,64.27561638069153,64.3061376838684,64.33665898704528,64.36718029022217,64.39770159339905,64.42822289657593,64.4587441997528,64.48926550292968,64.51978680610657,64.55030810928345,64.58082941246032,64.6113507156372,64.64187201881408,64.67239332199097,64.70291462516785,64.73343592834472,64.7639572315216,64.79447853469848,64.82499983787537,64.85552114105224,64.88604244422912,64.916563747406,64.94708505058288,64.97760635375977,65.00812765693664,65.03864896011352,65.0691702632904,65.09969156646729,65.13021286964417,65.16073417282104,65.19125547599792,65.2217767791748,65.25229808235169,65.28281938552855,65.31334068870544,65.34386199188232,65.3743832950592,65.40490459823609,65.43542590141296,65.46594720458984,65.49646850776672,65.5269898109436,65.55751111412049,65.58803241729736,65.61855372047424,65.64907502365112,65.679596326828,65.71011763000487,65.74063893318176,65.77116023635864,65.80168153953552,65.8322028427124,65.86272414588927,65.89324544906616,65.92376675224304,65.95428805541992,65.98480935859679,66.01533066177367,66.04585196495056,66.07637326812744,66.10689457130432,66.13741587448119,66.16793717765808,66.19845848083496,66.22897978401184,66.25950108718872,66.29002239036559,66.32054369354248,66.35106499671936,66.38158629989624,66.41210760307311,66.44262890625,66.47315020942688,66.50367151260376,66.53419281578064,66.56471411895751,66.5952354221344,66.62575672531128,66.65627802848816,66.68679933166504,66.71732063484191,66.7478419380188,66.77836324119568,66.80888454437256,66.83940584754943,66.86992715072631,66.9004484539032,66.93096975708008,66.96149106025696,66.99201236343383,67.02253366661071,67.0530549697876,67.08357627296448,67.11409757614135,67.14461887931823,67.17514018249511,67.205661485672,67.23618278884888,67.26670409202575,67.29722539520263,67.32774669837951,67.3582680015564,67.38878930473328,67.41931060791015,67.44983191108703,67.48035321426391,67.5108745174408,67.54139582061767,67.57191712379455,67.60243842697143,67.63295973014831,67.6634810333252,67.69400233650207,67.72452363967895,67.75504494285583,67.78556624603272,67.8160875492096,67.84660885238647,67.87713015556335,67.90765145874023,67.93817276191712,67.968694065094,67.99921536827087,68.02973667144775,68.06025797462463,68.09077927780152,68.1213005809784,68.15182188415527,68.18234318733215,68.21286449050903,68.24338579368592,68.2739070968628,68.30442840003967,68.33494970321655,68.36547100639343,68.39599230957032,68.42651361274719,68.45703491592407,68.48755621910095,68.51807752227784,68.54859882545472,68.57912012863159,68.60964143180847,68.64016273498535,68.67068403816224,68.70120534133912,68.73172664451599,68.76224794769287,68.79276925086975,68.82329055404664,68.8538118572235,68.88433316040039,68.91485446357727,68.94537576675415,68.97589706993104,69.0064183731079,69.03693967628479,69.06746097946167,69.09798228263855,69.12850358581542,69.1590248889923,69.18954619216919,69.22006749534607,69.25058879852295,69.28111010169982,69.3116314048767,69.34215270805359,69.37267401123047,69.40319531440736,69.43371661758422,69.46423792076111,69.49475922393799,69.52528052711487,69.55580183029174,69.58632313346862,69.61684443664551,69.64736573982239,69.67788704299927,69.70840834617614,69.73892964935303,69.76945095252991,69.79997225570679,69.83049355888367,69.86101486206054,69.89153616523743,69.92205746841431,69.95257877159119,69.98310007476806,70.01362137794494,70.04414268112183,70.07466398429871,70.10518528747559,70.13570659065246,70.16622789382934,70.19674919700623,70.22727050018311,70.25779180335998,70.28831310653686,70.31883440971374,70.34935571289063,70.37987701606751,70.41039831924438,70.44091962242126,70.47144092559815,70.50196222877503,70.53248353195191,70.56300483512878,70.59352613830566,70.62404744148255,70.65456874465943,70.6850900478363,70.71561135101318,70.74613265419006,70.77665395736695,70.80717526054383,70.8376965637207,70.86821786689758,70.89873917007446,70.92926047325135,70.95978177642823,70.9903030796051,71.02082438278198,71.05134568595886,71.08186698913575,71.11238829231262,71.1429095954895,71.17343089866638,71.20395220184326,71.23447350502015,71.26499480819702,71.2955161113739,71.32603741455078,71.35655871772767,71.38708002090453,71.41760132408142,71.4481226272583,71.47864393043518,71.50916523361207,71.53968653678893,71.57020783996582,71.6007291431427,71.63125044631958,71.66177174949647,71.69229305267334,71.72281435585022,71.7533356590271,71.78385696220398,71.81437826538085,71.84489956855774,71.87542087173462,71.9059421749115,71.93646347808838,71.96698478126525,71.99750608444214,72.02802738761902,72.0585486907959,72.08906999397279,72.11959129714965,72.15011260032654,72.18063390350342,72.2111552066803,72.24167650985717,72.27219781303405,72.30271911621094,72.33324041938782,72.3637617225647,72.39428302574157,72.42480432891846,72.45532563209534,72.48584693527222,72.5163682384491,72.54688954162597,72.57741084480286,72.60793214797974,72.63845345115662,72.66897475433349,72.69949605751037,72.73001736068726,72.76053866386414,72.79105996704102,72.82158127021789,72.85210257339477,72.88262387657166,72.91314517974854,72.94366648292541,72.97418778610229,73.00470908927917,73.03523039245606,73.06575169563294,73.09627299880981,73.12679430198669,73.15731560516357,73.18783690834046,73.21835821151734,73.24887951469421,73.27940081787109,73.30992212104798,73.34044342422486,73.37096472740173,73.40148603057861,73.4320073337555,73.46252863693238,73.49304994010926,73.52357124328613,73.55409254646301,73.5846138496399,73.61513515281678,73.64565645599366,73.67617775917053,73.70669906234741,73.7372203655243,73.76774166870118,73.79826297187805,73.82878427505493,73.85930557823181,73.8898268814087,73.92034818458558,73.95086948776245,73.98139079093933,74.01191209411621,74.0424333972931,74.07295470046996,74.10347600364685,74.13399730682373,74.16451861000061,74.1950399131775,74.22556121635436,74.25608251953125,74.28660382270813,74.31712512588501,74.3476464290619,74.37816773223877,74.40868903541565,74.43921033859253,74.46973164176941,74.50025294494628,74.53077424812317,74.56129555130005,74.59181685447693,74.62233815765381,74.65285946083068,74.68338076400757,74.71390206718445,74.74442337036133,74.77494467353822,74.80546597671508,74.83598727989197,74.86650858306885,74.89702988624573,74.9275511894226,74.95807249259948,74.98859379577637,75.01911509895325,75.04963640213013,75.080157705307,75.11067900848388,75.14120031166077,75.17172161483765,75.20224291801452,75.2327642211914,75.26328552436829,75.29380682754517,75.32432813072205,75.35484943389892,75.3853707370758,75.41589204025269,75.44641334342957,75.47693464660645,75.50745594978332,75.5379772529602,75.56849855613709,75.59901985931397,75.62954116249084,75.66006246566772,75.6905837688446,75.72110507202149,75.75162637519837,75.78214767837524,75.81266898155212,75.843190284729,75.87371158790589,75.90423289108277,75.93475419425964,75.96527549743652,75.9957968006134,76.02631810379029,76.05683940696716,76.08736071014404,76.11788201332092,76.1484033164978,76.17892461967469,76.20944592285156,76.23996722602844,76.27048852920532,76.3010098323822,76.33153113555908,76.36205243873596,76.39257374191284,76.42309504508972,76.4536163482666,76.48413765144348,76.51465895462036,76.54518025779724,76.57570156097412,76.60622286415101,76.63674416732788,76.66726547050476,76.69778677368164,76.72830807685853,76.7588293800354,76.78935068321228,76.81987198638916,76.85039328956604,76.88091459274293,76.9114358959198,76.94195719909668,76.97247850227356,77.00299980545044,77.03352110862733,77.0640424118042,77.09456371498108,77.12508501815796,77.15560632133484,77.18612762451171,77.2166489276886,77.24717023086548,77.27769153404236,77.30821283721924,77.33873414039611,77.369255443573,77.39977674674988,77.43029804992676,77.46081935310364,77.49134065628051,77.5218619594574,77.55238326263428,77.58290456581116,77.61342586898803,77.64394717216491,77.6744684753418,77.70498977851868,77.73551108169556,77.76603238487243,77.79655368804931,77.8270749912262,77.85759629440308,77.88811759757995,77.91863890075683,77.94916020393372,77.9796815071106,78.01020281028748,78.04072411346435,78.07124541664123,78.10176671981812,78.132288022995,78.16280932617188,78.19333062934875,78.22385193252563,78.25437323570252,78.2848945388794,78.31541584205627,78.34593714523315,78.37645844841003,78.40697975158692,78.4375010547638,78.46802235794067,78.49854366111755,78.52906496429443,78.55958626747132,78.5901075706482,78.62062887382507,78.65115017700195,78.68167148017884,78.71219278335572,78.74271408653259,78.77323538970947,78.80375669288635,78.83427799606324,78.86479929924012,78.89532060241699,78.92584190559387,78.95636320877075,78.98688451194764,79.0174058151245,79.04792711830139,79.07844842147827,79.10896972465515,79.13949102783204,79.1700123310089,79.20053363418579,79.23105493736267,79.26157624053955,79.29209754371644,79.3226188468933,79.35314015007019,79.38366145324707,79.41418275642395,79.44470405960082,79.4752253627777,79.50574666595459,79.53626796913147,79.56678927230836,79.59731057548522,79.6278318786621,79.65835318183899,79.68887448501587,79.71939578819276,79.74991709136962,79.78043839454651,79.81095969772339,79.84148100090027,79.87200230407714,79.90252360725403,79.93304491043091,79.96356621360779,79.99408751678467,80.02460881996154,80.05513012313843,80.08565142631531,80.11617272949219,80.14669403266906,80.17721533584594,80.20773663902283,80.23825794219971,80.26877924537659,80.29930054855346,80.32982185173034,80.36034315490723,80.39086445808411,80.42138576126099,80.45190706443786,80.48242836761474,80.51294967079163,80.54347097396851,80.57399227714538,80.60451358032226,80.63503488349915,80.66555618667603,80.69607748985291,80.72659879302978,80.75712009620666,80.78764139938355,80.81816270256043,80.84868400573731,80.87920530891418,80.90972661209106,80.94024791526795,80.97076921844483,81.0012905216217,81.03181182479858,81.06233312797546,81.09285443115235,81.12337573432923,81.1538970375061,81.18441834068298,81.21493964385986,81.24546094703675,81.27598225021362,81.3065035533905,81.33702485656738,81.36754615974426,81.39806746292115,81.42858876609802,81.4591100692749,81.48963137245178,81.52015267562867,81.55067397880555,81.58119528198242,81.6117165851593,81.64223788833618,81.67275919151307,81.70328049468993,81.73380179786682,81.7643231010437,81.79484440422058,81.82536570739747,81.85588701057434,81.88640831375122,81.9169296169281,81.94745092010498,81.97797222328187,82.00849352645874,82.03901482963562,82.0695361328125,82.10005743598938,82.13057873916625,82.16110004234314,82.19162134552002,82.2221426486969,82.25266395187379,82.28318525505065,82.31370655822754,82.34422786140442,82.3747491645813,82.40527046775817,82.43579177093505,82.46631307411194,82.49683437728882,82.5273556804657,82.55787698364257,82.58839828681946,82.61891958999634,82.64944089317322,82.6799621963501,82.71048349952697,82.74100480270386,82.77152610588074,82.80204740905762,82.83256871223449,82.86309001541137,82.89361131858826,82.92413262176514,82.95465392494202,82.98517522811889,83.01569653129577,83.04621783447266,83.07673913764954,83.10726044082642,83.13778174400329,83.16830304718017,83.19882435035706,83.22934565353394,83.25986695671081,83.29038825988769,83.32090956306457,83.35143086624146,83.38195216941834,83.41247347259521,83.44299477577209,83.47351607894898,83.50403738212586,83.53455868530274,83.56507998847961,83.5956012916565,83.62612259483338,83.65664389801026,83.68716520118713,83.71768650436401,83.7482078075409,83.77872911071778,83.80925041389466,83.83977171707153,83.87029302024841,83.9008143234253,83.93133562660218,83.96185692977905,83.99237823295593,84.02289953613281,84.0534208393097,84.08394214248658,84.11446344566345,84.14498474884033,84.17550605201721,84.2060273551941,84.23654865837098,84.26706996154785,84.29759126472473,84.32811256790161,84.3586338710785,84.38915517425536,84.41967647743225,84.45019778060913,84.48071908378601,84.5112403869629,84.54176169013977,84.57228299331665,84.60280429649353,84.63332559967041,84.6638469028473,84.69436820602417,84.72488950920105,84.75541081237793,84.78593211555481,84.81645341873168,84.84697472190857,84.87749602508545,84.90801732826233,84.93853863143922,84.96905993461608,84.99958123779297,85.03010254096985,85.06062384414673,85.0911451473236,85.12166645050048,85.15218775367737,85.18270905685425,85.21323036003113,85.243751663208,85.27427296638488,85.30479426956177,85.33531557273865,85.36583687591553,85.3963581790924,85.42687948226929,85.45740078544617,85.48792208862305,85.51844339179992,85.5489646949768,85.57948599815369,85.61000730133057,85.64052860450745,85.67104990768432,85.7015712108612,85.73209251403809,85.76261381721497,85.79313512039185,85.82365642356872,85.8541777267456,85.88469902992249,85.91522033309937,85.94574163627624,85.97626293945312,86.00678424263,86.03730554580689,86.06782684898377,86.09834815216064,86.12886945533752,86.1593907585144,86.18991206169129,86.22043336486816,86.25095466804504,86.28147597122192,86.3119972743988,86.34251857757569,86.37303988075256,86.40356118392944,86.43408248710632,86.4646037902832,86.49512509346009,86.52564639663696,86.55616769981384,86.58668900299072,86.6172103061676,86.64773160934448,86.67825291252136,86.70877421569824,86.73929551887512,86.76981682205201,86.80033812522888,86.83085942840576,86.86138073158264,86.89190203475953,86.92242333793641,86.95294464111328,86.98346594429016,87.01398724746704,87.04450855064393,87.0750298538208,87.10555115699768,87.13607246017456,87.16659376335144,87.19711506652833,87.2276363697052,87.25815767288208,87.28867897605896,87.31920027923584,87.34972158241271,87.3802428855896,87.41076418876648,87.44128549194336,87.47180679512024,87.50232809829711,87.532849401474,87.56337070465088,87.59389200782776,87.62441331100464,87.65493461418151,87.6854559173584,87.71597722053528,87.74649852371216,87.77701982688903,87.80754113006591,87.8380624332428,87.86858373641968,87.89910503959656,87.92962634277343,87.96014764595031,87.9906689491272,88.02119025230408,88.05171155548096,88.08223285865783,88.11275416183472,88.1432754650116,88.17379676818848,88.20431807136535,88.23483937454223,88.26536067771912,88.295881980896,88.32640328407288,88.35692458724975,88.38744589042663,88.41796719360352,88.4484884967804,88.47900979995728,88.50953110313415,88.54005240631103,88.57057370948792,88.6010950126648,88.63161631584167,88.66213761901855,88.69265892219543,88.72318022537232,88.7537015285492,88.78422283172607,88.81474413490295,88.84526543807984,88.87578674125672,88.90630804443359,88.93682934761047,88.96735065078735,88.99787195396424,89.02839325714112,89.05891456031799,89.08943586349487,89.11995716667175,89.15047846984864,89.18099977302552,89.21152107620239,89.24204237937927,89.27256368255615,89.30308498573304,89.3336062889099,89.36412759208679,89.39464889526367,89.42517019844055,89.45569150161744,89.4862128047943,89.51673410797119,89.54725541114807,89.57777671432495,89.60829801750184,89.6388193206787,89.66934062385559,89.69986192703247,89.73038323020936,89.76090453338622,89.7914258365631,89.82194713973999,89.85246844291687,89.88298974609376,89.91351104927062,89.94403235244751,89.97455365562439,90.00507495880127,90.03559626197814,90.06611756515503,90.09663886833191,90.12716017150879,90.15768147468567,90.18820277786254,90.21872408103943,90.24924538421631,90.27976668739319,90.31028799057007,90.34080929374694,90.37133059692383,90.40185190010071,90.43237320327759,90.46289450645446,90.49341580963134,90.52393711280823,90.55445841598511,90.58497971916199,90.61550102233886,90.64602232551574,90.67654362869263,90.70706493186951,90.7375862350464,90.76810753822326,90.79862884140015,90.82915014457703,90.85967144775391,90.89019275093078,90.92071405410766,90.95123535728455,90.98175666046143,91.01227796363831,91.04279926681518,91.07332056999206,91.10384187316895,91.13436317634583,91.1648844795227,91.19540578269958,91.22592708587646,91.25644838905335,91.28696969223023,91.3174909954071,91.34801229858398,91.37853360176086,91.40905490493775,91.43957620811463,91.4700975112915,91.50061881446838,91.53114011764526,91.56166142082215,91.59218272399902,91.6227040271759,91.65322533035278,91.68374663352967,91.71426793670655,91.74478923988342,91.7753105430603,91.80583184623718,91.83635314941407,91.86687445259095,91.89739575576782,91.9279170589447,91.95843836212158,91.98895966529847,92.01948096847534,92.05000227165222,92.0805235748291,92.11104487800598,92.14156618118287,92.17208748435974,92.20260878753662,92.2331300907135,92.26365139389038,92.29417269706725,92.32469400024414,92.35521530342102,92.3857366065979,92.41625790977479,92.44677921295165,92.47730051612854,92.50782181930542,92.5383431224823,92.56886442565919,92.59938572883605,92.62990703201294,92.66042833518982,92.6909496383667,92.72147094154357,92.75199224472046,92.78251354789734,92.81303485107422,92.8435561542511,92.87407745742797,92.90459876060486,92.93512006378174,92.96564136695862,92.9961626701355,93.02668397331237,93.05720527648926,93.08772657966614,93.11824788284302,93.14876918601989,93.17929048919677,93.20981179237366,93.24033309555054,93.27085439872742,93.30137570190429,93.33189700508117,93.36241830825806,93.39293961143494,93.42346091461181,93.45398221778869,93.48450352096557,93.51502482414246,93.54554612731934,93.57606743049621,93.60658873367309,93.63711003684998,93.66763134002686,93.69815264320374,93.72867394638061,93.7591952495575,93.78971655273438,93.82023785591126,93.85075915908813,93.88128046226501,93.9118017654419,93.94232306861878,93.97284437179566,94.00336567497253,94.03388697814941,94.0644082813263,94.09492958450318,94.12545088768006,94.15597219085693,94.18649349403381,94.2170147972107,94.24753610038758,94.27805740356445,94.30857870674133,94.33910000991821,94.3696213130951,94.40014261627198,94.43066391944885,94.46118522262573,94.49170652580261,94.5222278289795,94.55274913215638,94.58327043533325,94.61379173851013,94.64431304168701,94.6748343448639,94.70535564804077,94.73587695121765,94.76639825439453,94.79691955757141,94.8274408607483,94.85796216392517,94.88848346710205,94.91900477027893,94.94952607345581,94.98004737663268,95.01056867980957,95.04108998298645,95.07161128616333,95.10213258934021,95.13265389251708,95.16317519569397,95.19369649887085,95.22421780204773,95.25473910522462,95.28526040840148,95.31578171157837,95.34630301475525,95.37682431793213,95.407345621109,95.43786692428588,95.46838822746277,95.49890953063965,95.52943083381653,95.5599521369934,95.59047344017029,95.62099474334717,95.65151604652405,95.68203734970093,95.7125586528778,95.74307995605469,95.77360125923157,95.80412256240845,95.83464386558532,95.8651651687622,95.89568647193909,95.92620777511597,95.95672907829285,95.98725038146972,96.0177716846466,96.04829298782349,96.07881429100037,96.10933559417724,96.13985689735412,96.170378200531,96.20089950370789,96.23142080688477,96.26194211006164,96.29246341323852,96.3229847164154,96.35350601959229,96.38402732276917,96.41454862594604,96.44506992912292,96.4755912322998,96.50611253547669,96.53663383865356,96.56715514183044,96.59767644500732,96.6281977481842,96.65871905136109,96.68924035453796,96.71976165771484,96.75028296089172,96.7808042640686,96.81132556724549,96.84184687042236,96.87236817359924,96.90288947677612,96.93341077995301,96.96393208312988,96.99445338630676,97.02497468948364,97.05549599266052,97.08601729583741,97.11653859901428,97.14705990219116,97.17758120536804,97.20810250854493,97.2386238117218,97.26914511489868,97.29966641807556,97.33018772125244,97.36070902442933,97.3912303276062,97.42175163078308,97.45227293395996,97.48279423713684,97.51331554031373,97.5438368434906,97.57435814666748,97.60487944984436,97.63540075302124,97.66592205619811,97.696443359375,97.72696466255188,97.75748596572876,97.78800726890564,97.81852857208251,97.8490498752594,97.87957117843628,97.91009248161316,97.94061378479005,97.97113508796691,98.0016563911438,98.03217769432068,98.06269899749756,98.09322030067443,98.12374160385131,98.1542629070282,98.18478421020508,98.21530551338196,98.24582681655883,98.27634811973572,98.3068694229126,98.33739072608948,98.36791202926635,98.39843333244323,98.42895463562012,98.459475938797,98.48999724197388,98.52051854515075,98.55103984832763,98.58156115150452,98.6120824546814,98.64260375785828,98.67312506103515,98.70364636421203,98.73416766738892,98.7646889705658,98.79521027374267,98.82573157691955,98.85625288009643,98.88677418327332,98.9172954864502,98.94781678962707,98.97833809280395,99.00885939598083,99.03938069915772,99.0699020023346,99.10042330551147,99.13094460868835,99.16146591186524,99.19198721504212,99.22250851821899,99.25302982139587,99.28355112457275,99.31407242774964,99.34459373092652,99.37511503410339,99.40563633728027,99.43615764045715,99.46667894363404,99.49720024681092,99.52772154998779,99.55824285316467,99.58876415634155,99.61928545951844,99.6498067626953,99.68032806587219,99.71084936904907,99.74137067222595,99.77189197540284,99.8024132785797,99.83293458175659,99.86345588493347,99.89397718811036,99.92449849128722,99.9550197944641,99.98554109764099,100.01606240081787,100.04658370399476,100.07710500717162,100.10762631034851,100.13814761352539,100.16866891670227,100.19919021987916,100.22971152305603,100.26023282623291,100.29075412940979,100.32127543258667,100.35179673576354,100.38231803894043,100.41283934211731,100.44336064529419,100.47388194847107,100.50440325164794,100.53492455482483,100.56544585800171,100.59596716117859,100.62648846435548,100.65700976753234,100.68753107070923,100.71805237388611,100.74857367706299,100.77909498023986,100.80961628341674,100.84013758659363,100.87065888977051,100.9011801929474,100.93170149612426,100.96222279930114,100.99274410247803,101.02326540565491,101.05378670883178,101.08430801200866,101.11482931518555,101.14535061836243,101.17587192153931,101.20639322471618,101.23691452789306,101.26743583106995,101.29795713424683,101.32847843742371,101.35899974060058,101.38952104377746,101.42004234695435,101.45056365013123,101.4810849533081,101.51160625648498,101.54212755966186,101.57264886283875,101.60317016601563,101.6336914691925,101.66421277236938,101.69473407554626,101.72525537872315,101.75577668190003,101.7862979850769,101.81681928825378,101.84734059143067,101.87786189460755,101.90838319778442,101.9389045009613,101.96942580413818,101.99994710731507,102.03046841049195,102.06098971366882,102.0915110168457,102.12203232002258,102.15255362319947,102.18307492637634,102.21359622955322,102.2441175327301,102.27463883590698,102.30516013908387,102.33568144226074,102.36620274543762,102.3967240486145,102.42724535179138,102.45776665496827,102.48828795814514,102.51880926132202,102.5493305644989,102.57985186767579,102.61037317085265,102.64089447402954,102.67141577720642,102.7019370803833,102.73245838356019,102.76297968673705,102.79350098991394,102.82402229309082,102.8545435962677,102.88506489944459,102.91558620262145,102.94610750579834,102.97662880897522,103.0071501121521,103.03767141532897,103.06819271850586,103.09871402168274,103.12923532485962,103.1597566280365,103.19027793121337,103.22079923439026,103.25132053756714,103.28184184074402,103.31236314392089,103.34288444709777,103.37340575027466,103.40392705345154,103.43444835662842,103.46496965980529,103.49549096298217,103.52601226615906,103.55653356933594,103.58705487251282,103.61757617568969,103.64809747886657,103.67861878204346,103.70914008522034,103.73966138839721,103.77018269157409,103.80070399475098,103.83122529792786,103.86174660110474,103.89226790428161,103.9227892074585,103.95331051063538,103.98383181381226,104.01435311698914,104.04487442016601,104.0753957233429,104.10591702651978,104.13643832969666,104.16695963287353,104.19748093605041,104.2280022392273,104.25852354240418,104.28904484558106,104.31956614875793,104.35008745193481,104.3806087551117,104.41113005828858,104.44165136146545,104.47217266464233,104.50269396781921,104.5332152709961,104.56373657417298,104.59425787734985,104.62477918052673,104.65530048370361,104.6858217868805,104.71634309005738,104.74686439323425,104.77738569641113,104.80790699958801,104.8384283027649,104.86894960594176,104.89947090911865,104.92999221229553,104.96051351547241,104.9910348186493,105.02155612182617,105.05207742500305,105.08259872817993,105.11312003135681,105.1436413345337,105.17416263771057,105.20468394088745,105.23520524406433,105.26572654724121,105.29624785041808,105.32676915359497,105.35729045677185,105.38781175994873,105.41833306312562,105.44885436630248,105.47937566947937,105.50989697265625,105.54041827583313,105.57093957901002,105.60146088218688,105.63198218536377,105.66250348854065,105.69302479171753,105.7235460948944,105.75406739807129,105.78458870124817,105.81511000442505,105.84563130760193,105.8761526107788,105.90667391395569,105.93719521713257,105.96771652030945,105.99823782348632,106.0287591266632,106.05928042984009,106.08980173301697,106.12032303619385,106.15084433937072,106.1813656425476,106.21188694572449,106.24240824890137,106.27292955207825,106.30345085525512,106.333972158432,106.36449346160889,106.39501476478577,106.42553606796264,106.45605737113952,106.4865786743164,106.51709997749329,106.54762128067017,106.57814258384704,106.60866388702392,106.6391851902008,106.66970649337769,106.70022779655457,106.73074909973144,106.76127040290832,106.7917917060852,106.82231300926209,106.85283431243896,106.88335561561584,106.91387691879272,106.9443982219696,106.97491952514649,107.00544082832336,107.03596213150024,107.06648343467712,107.09700473785401,107.12752604103088,107.15804734420776,107.18856864738464,107.21908995056152,107.24961125373841,107.28013255691528,107.31065386009216,107.34117516326904,107.37169646644593,107.40221776962281,107.43273907279968,107.46326037597656,107.49378167915344,107.52430298233033,107.5548242855072,107.58534558868408,107.61586689186096,107.64638819503784,107.67690949821473,107.7074308013916,107.73795210456848,107.76847340774536,107.79899471092224,107.82951601409913,107.860037317276,107.89055862045288,107.92107992362976,107.95160122680664,107.98212252998351,108.0126438331604,108.04316513633728,108.07368643951416,108.10420774269105,108.13472904586791,108.1652503490448,108.19577165222168,108.22629295539856,108.25681425857543,108.28733556175231,108.3178568649292,108.34837816810608,108.37889947128296,108.40942077445983,108.43994207763672,108.4704633808136,108.50098468399048,108.53150598716736,108.56202729034423,108.59254859352112,108.623069896698,108.65359119987488,108.68411250305175,108.71463380622863,108.74515510940552,108.7756764125824,108.80619771575928,108.83671901893615,108.86724032211303,108.89776162528992,108.9282829284668,108.95880423164368,108.98932553482055,109.01984683799743,109.05036814117432,109.0808894443512,109.11141074752807,109.14193205070495,109.17245335388183,109.20297465705872,109.2334959602356,109.26401726341247,109.29453856658935,109.32505986976624,109.35558117294312,109.38610247611999,109.41662377929687,109.44714508247375,109.47766638565064,109.50818768882752,109.53870899200439,109.56923029518127,109.59975159835815,109.63027290153504,109.66079420471192,109.69131550788879,109.72183681106567,109.75235811424255,109.78287941741944,109.8134007205963,109.84392202377319,109.87444332695007,109.90496463012695,109.93548593330384,109.9660072364807,109.99652853965759,110.02704984283447,110.05757114601136,110.08809244918824,110.1186137523651,110.14913505554199,110.17965635871887,110.21017766189576,110.24069896507262,110.27122026824951,110.30174157142639,110.33226287460327,110.36278417778016,110.39330548095703,110.42382678413391,110.45434808731079,110.48486939048767,110.51539069366456,110.54591199684143,110.57643330001831,110.60695460319519,110.63747590637207,110.66799720954894,110.69851851272583,110.72903981590271,110.75956111907959,110.79008242225648,110.82060372543334,110.85112502861023,110.88164633178711,110.91216763496399,110.94268893814086,110.97321024131774,111.00373154449463,111.03425284767151,111.0647741508484,111.09529545402526,111.12581675720214,111.15633806037903,111.18685936355591,111.2173806667328,111.24790196990966,111.27842327308655,111.30894457626343,111.33946587944031,111.36998718261718,111.40050848579406,111.43102978897095,111.46155109214783,111.49207239532471,111.52259369850158,111.55311500167846,111.58363630485535,111.61415760803223,111.64467891120911,111.67520021438598,111.70572151756286,111.73624282073975,111.76676412391663,111.7972854270935,111.82780673027038,111.85832803344726,111.88884933662415,111.91937063980103,111.9498919429779,111.98041324615478,112.01093454933167,112.04145585250855,112.07197715568542,112.1024984588623,112.13301976203918,112.16354106521607,112.19406236839295,112.22458367156982,112.2551049747467,112.28562627792358,112.31614758110047,112.34666888427735,112.37719018745422,112.4077114906311,112.43823279380798,112.46875409698487,112.49927540016174,112.52979670333862,112.5603180065155,112.59083930969238,112.62136061286927,112.65188191604614,112.68240321922302,112.7129245223999,112.74344582557679,112.77396712875367,112.80448843193054,112.83500973510742,112.8655310382843,112.89605234146119,112.92657364463805,112.95709494781494,112.98761625099182,113.0181375541687,113.04865885734559,113.07918016052245,113.10970146369934,113.14022276687622,113.1707440700531,113.20126537322997,113.23178667640686,113.26230797958374,113.29282928276062,113.3233505859375,113.35387188911437,113.38439319229126,113.41491449546814,113.44543579864502,113.4759571018219,113.50647840499877,113.53699970817566,113.56752101135254,113.59804231452942,113.62856361770629,113.65908492088317,113.68960622406006,113.72012752723694,113.75064883041382,113.78117013359069,113.81169143676757,113.84221273994446,113.87273404312134,113.90325534629822,113.93377664947509,113.96429795265198,113.99481925582886,114.02534055900574,114.05586186218261,114.08638316535949,114.11690446853638,114.14742577171326,114.17794707489014,114.20846837806701,114.2389896812439,114.26951098442078,114.30003228759766,114.33055359077453,114.36107489395141,114.3915961971283,114.42211750030518,114.45263880348206,114.48316010665893,114.51368140983581,114.5442027130127,114.57472401618958,114.60524531936646,114.63576662254333,114.66628792572021,114.6968092288971,114.72733053207398,114.75785183525085,114.78837313842773,114.81889444160461,114.8494157447815,114.87993704795838,114.91045835113525,114.94097965431213,114.97150095748901,115.0020222606659,115.03254356384278,115.06306486701965,115.09358617019653,115.12410747337341,115.1546287765503,115.18515007972717,115.21567138290405,115.24619268608093,115.27671398925781,115.3072352924347,115.33775659561157,115.36827789878845,115.39879920196533,115.42932050514221,115.4598418083191,115.49036311149597,115.52088441467285,115.55140571784973,115.58192702102662,115.61244832420348,115.64296962738037,115.67349093055725,115.70401223373413,115.73453353691102,115.76505484008788,115.79557614326477,115.82609744644165,115.85661874961853,115.8871400527954,115.91766135597229,115.94818265914917,115.97870396232605,116.00922526550293,116.0397465686798,116.07026787185669,116.10078917503357,116.13131047821045,116.16183178138733,116.1923530845642,116.22287438774109,116.25339569091797,116.28391699409485,116.31443829727172,116.3449596004486,116.37548090362549,116.40600220680237,116.43652350997925,116.46704481315612,116.497566116333,116.52808741950989,116.55860872268677,116.58913002586365,116.61965132904052,116.6501726322174,116.68069393539429,116.71121523857117,116.74173654174804,116.77225784492492,116.8027791481018,116.83330045127869,116.86382175445557,116.89434305763244,116.92486436080932,116.9553856639862,116.98590696716309,117.01642827033996,117.04694957351684,117.07747087669372,117.1079921798706,117.13851348304749,117.16903478622436,117.19955608940124,117.23007739257812,117.26059869575501,117.29111999893189,117.32164130210876,117.35216260528564,117.38268390846252,117.41320521163941,117.44372651481628,117.47424781799316,117.50476912117004,117.53529042434693,117.56581172752381,117.59633303070068,117.62685433387756,117.65737563705444,117.68789694023133,117.71841824340821,117.74893954658508,117.77946084976196,117.80998215293884,117.84050345611573,117.8710247592926,117.90154606246948,117.93206736564636,117.96258866882324,117.99310997200013,118.023631275177,118.05415257835388,118.08467388153076,118.11519518470764,118.14571648788451,118.1762377910614,118.20675909423828,118.23728039741516,118.26780170059205,118.29832300376891,118.3288443069458,118.35936561012268,118.38988691329956,118.42040821647645,118.45092951965331,118.4814508228302,118.51197212600708,118.54249342918396,118.57301473236083,118.60353603553772,118.6340573387146,118.66457864189148,118.69509994506836,118.72562124824523,118.75614255142212,118.786663854599,118.81718515777588,118.84770646095276,118.87822776412963,118.90874906730652,118.9392703704834,118.96979167366028,119.00031297683715,119.03083428001403,119.06135558319092,119.0918768863678,119.12239818954468,119.15291949272155,119.18344079589843,119.21396209907532,119.2444834022522,119.27500470542907,119.30552600860595,119.33604731178283,119.36656861495972,119.3970899181366,119.42761122131347,119.45813252449035,119.48865382766724,119.51917513084412,119.549696434021,119.58021773719787,119.61073904037475,119.64126034355164,119.67178164672852,119.70230294990539,119.73282425308227,119.76334555625915,119.79386685943604,119.82438816261292,119.85490946578979,119.88543076896667,119.91595207214355,119.94647337532044,119.97699467849732,120.00751598167419,120.03803728485107,120.06855858802795,120.09907989120484,120.1296011943817,120.16012249755859,120.19064380073547,120.22116510391236,120.25168640708924,120.2822077102661,120.31272901344299,120.34325031661987,120.37377161979676,120.40429292297362,120.43481422615051,120.46533552932739,120.49585683250427,120.52637813568116,120.55689943885803,120.58742074203491,120.61794204521179,120.64846334838867,120.67898465156556,120.70950595474243,120.74002725791931,120.77054856109619,120.80106986427307,120.83159116744994,120.86211247062683,120.89263377380371,120.92315507698059,120.95367638015748,120.98419768333434,121.01471898651123,121.04524028968811,121.07576159286499,121.10628289604188,121.13680419921874,121.16732550239563,121.19784680557251,121.2283681087494,121.25888941192626,121.28941071510314,121.31993201828003,121.35045332145691,121.3809746246338,121.41149592781066,121.44201723098755,121.47253853416443,121.50305983734131,121.5335811405182,121.56410244369506,121.59462374687195,121.62514505004883,121.65566635322571,121.68618765640258,121.71670895957946,121.74723026275635,121.77775156593323,121.80827286911011,121.83879417228698,121.86931547546386,121.89983677864075,121.93035808181763,121.9608793849945,121.99140068817138,122.02192199134826,122.05244329452515,122.08296459770203,122.1134859008789,122.14400720405578,122.17452850723267,122.20504981040955,122.23557111358643,122.2660924167633,122.29661371994018,122.32713502311707,122.35765632629395,122.38817762947082,122.4186989326477,122.44922023582458,122.47974153900147,122.51026284217835,122.54078414535522,122.5713054485321,122.60182675170898,122.63234805488587,122.66286935806275,122.69339066123962,122.7239119644165,122.75443326759338,122.78495457077027,122.81547587394714,122.84599717712402,122.8765184803009,122.90703978347779,122.93756108665467,122.96808238983154,122.99860369300842,123.0291249961853,123.05964629936219,123.09016760253905,123.12068890571594,123.15121020889282,123.1817315120697,123.21225281524659,123.24277411842345,123.27329542160034,123.30381672477722,123.3343380279541,123.36485933113099,123.39538063430786,123.42590193748474,123.45642324066162,123.4869445438385,123.51746584701537,123.54798715019226,123.57850845336914,123.60902975654602,123.6395510597229,123.67007236289977,123.70059366607666,123.73111496925354,123.76163627243042,123.7921575756073,123.82267887878417,123.85320018196106,123.88372148513794,123.91424278831482,123.94476409149169,123.97528539466857,124.00580669784546,124.03632800102234,124.06684930419922,124.09737060737609,124.12789191055298,124.15841321372986,124.18893451690674,124.21945582008361,124.24997712326049,124.28049842643738,124.31101972961426,124.34154103279114,124.37206233596801,124.4025836391449,124.43310494232178,124.46362624549866,124.49414754867554,124.52466885185241,124.5551901550293,124.58571145820618,124.61623276138306,124.64675406455993,124.67727536773681,124.7077966709137,124.73831797409058,124.76883927726746,124.79936058044433,124.82988188362121,124.8604031867981,124.89092448997498,124.92144579315186,124.95196709632873,124.98248839950561,125.0130097026825,125.04353100585938,125.07405230903625,125.10457361221313,125.13509491539001,125.1656162185669,125.19613752174378,125.22665882492065,125.25718012809753,125.28770143127441,125.3182227344513,125.34874403762817,125.37926534080505,125.40978664398193,125.44030794715881,125.4708292503357,125.50135055351257,125.53187185668945,125.56239315986633,125.59291446304321,125.6234357662201,125.65395706939697,125.68447837257385,125.71499967575073,125.74552097892762,125.77604228210448,125.80656358528137,125.83708488845825,125.86760619163513,125.89812749481202,125.92864879798888,125.95917010116577,125.98969140434265,126.02021270751953,126.05073401069642,126.08125531387329,126.11177661705017,126.14229792022705,126.17281922340393,126.2033405265808,126.23386182975769,126.26438313293457,126.29490443611145,126.32542573928833,126.3559470424652,126.38646834564209,126.41698964881897,126.44751095199585,126.47803225517274,126.5085535583496,126.53907486152649,126.56959616470337,126.60011746788025,126.63063877105712,126.661160074234,126.69168137741089,126.72220268058777,126.75272398376465,126.78324528694152,126.8137665901184,126.84428789329529,126.87480919647217,126.90533049964904,126.93585180282592,126.9663731060028,126.99689440917969,127.02741571235657,127.05793701553344,127.08845831871032,127.1189796218872,127.14950092506409,127.18002222824097,127.21054353141784,127.24106483459472,127.2715861377716,127.30210744094849,127.33262874412536,127.36315004730224,127.39367135047912,127.42419265365601,127.45471395683289,127.48523526000976,127.51575656318664,127.54627786636352,127.57679916954041,127.60732047271729,127.63784177589416,127.66836307907104,127.69888438224793,127.72940568542481,127.75992698860168,127.79044829177856,127.82096959495544,127.85149089813233,127.88201220130921,127.91253350448608,127.94305480766296,127.97357611083984,128.0040974140167,128.03461871719358,128.06514002037048,128.09566132354735,128.12618262672424,128.1567039299011,128.18722523307798,128.21774653625488,128.24826783943175,128.27878914260864,128.3093104457855,128.33983174896238,128.37035305213928,128.40087435531615,128.43139565849305,128.4619169616699,128.49243826484678,128.52295956802368,128.55348087120055,128.58400217437745,128.61452347755431,128.64504478073118,128.67556608390808,128.70608738708495,128.73660869026185,128.76712999343872,128.79765129661558,128.82817259979248,128.85869390296935,128.88921520614622,128.91973650932312,128.95025781249998,128.98077911567688,129.01130041885375,129.04182172203062,129.07234302520752,129.10286432838438,129.13338563156128,129.16390693473815,129.19442823791502,129.22494954109192,129.25547084426879,129.28599214744568,129.31651345062255,129.34703475379942,129.37755605697632,129.4080773601532,129.43859866333008,129.46911996650695,129.49964126968382,129.53016257286072,129.5606838760376,129.59120517921446,129.62172648239135,129.65224778556822,129.68276908874512,129.713290391922,129.74381169509886,129.77433299827575,129.80485430145262,129.83537560462952,129.8658969078064,129.89641821098326,129.92693951416015,129.95746081733702,129.98798212051392,130.0185034236908,130.04902472686766,130.07954603004455,130.11006733322142,130.14058863639832,130.1711099395752,130.20163124275206,130.23215254592895,130.26267384910582,130.2931951522827,130.3237164554596,130.35423775863646,130.38475906181336,130.41528036499022,130.4458016681671,130.476322971344,130.50684427452086,130.53736557769776,130.56788688087462,130.5984081840515,130.6289294872284,130.65945079040526,130.68997209358216,130.72049339675903,130.7510146999359,130.7815360031128,130.81205730628966,130.84257860946656,130.87309991264343,130.9036212158203,130.9341425189972,130.96466382217406,130.99518512535096,131.02570642852783,131.0562277317047,131.0867490348816,131.11727033805846,131.14779164123533,131.17831294441223,131.2088342475891,131.239355550766,131.26987685394286,131.30039815711973,131.33091946029663,131.3614407634735,131.3919620666504,131.42248336982726,131.45300467300413,131.48352597618103,131.5140472793579,131.5445685825348,131.57508988571166,131.60561118888853,131.63613249206543,131.6666537952423,131.6971750984192,131.72769640159606,131.75821770477293,131.78873900794983,131.8192603111267,131.84978161430357,131.88030291748046,131.91082422065733,131.94134552383423,131.9718668270111,132.002388130188,132.03290943336486,132.06343073654173,132.09395203971863,132.1244733428955,132.1549946460724,132.18551594924926,132.21603725242613,132.24655855560303,132.2770798587799,132.3076011619568,132.33812246513367,132.36864376831053,132.39916507148743,132.4296863746643,132.4602076778412,132.49072898101807,132.52125028419493,132.55177158737183,132.5822928905487,132.6128141937256,132.64333549690247,132.67385680007934,132.70437810325623,132.7348994064331,132.76542070960997,132.79594201278687,132.82646331596374,132.85698461914063,132.8875059223175,132.91802722549437,132.94854852867127,132.97906983184814,133.00959113502503,133.0401124382019,133.07063374137877,133.10115504455567,133.13167634773254,133.16219765090943,133.1927189540863,133.22324025726317,133.25376156044007,133.28428286361694,133.31480416679383,133.3453254699707,133.37584677314757,133.40636807632447,133.43688937950134,133.46741068267823,133.4979319858551,133.52845328903197,133.55897459220887,133.58949589538574,133.6200171985626,133.6505385017395,133.68105980491637,133.71158110809327,133.74210241127014,133.772623714447,133.8031450176239,133.83366632080077,133.86418762397767,133.89470892715454,133.9252302303314,133.9557515335083,133.98627283668517,134.01679413986207,134.04731544303894,134.0778367462158,134.1083580493927,134.13887935256957,134.16940065574647,134.19992195892334,134.2304432621002,134.2609645652771,134.29148586845398,134.32200717163084,134.35252847480774,134.3830497779846,134.4135710811615,134.44409238433838,134.47461368751524,134.50513499069214,134.535656293869,134.5661775970459,134.59669890022278,134.62722020339965,134.65774150657654,134.6882628097534,134.7187841129303,134.74930541610718,134.77982671928405,134.81034802246094,134.8408693256378,134.8713906288147,134.90191193199158,134.93243323516845,134.96295453834534,134.9934758415222,135.0239971446991,135.05451844787598,135.08503975105285,135.11556105422974,135.1460823574066,135.17660366058348,135.20712496376038,135.23764626693725,135.26816757011414,135.298688873291,135.32921017646788,135.35973147964478,135.39025278282165,135.42077408599854,135.4512953891754,135.48181669235228,135.51233799552918,135.54285929870605,135.57338060188295,135.60390190505981,135.63442320823668,135.66494451141358,135.69546581459045,135.72598711776735,135.75650842094421,135.78702972412108,135.81755102729798,135.84807233047485,135.87859363365172,135.90911493682862,135.93963624000548,135.97015754318238,136.00067884635925,136.03120014953612,136.06172145271302,136.09224275588988,136.12276405906678,136.15328536224365,136.18380666542052,136.21432796859742,136.24484927177429,136.27537057495118,136.30589187812805,136.33641318130492,136.36693448448182,136.39745578765869,136.42797709083558,136.45849839401245,136.48901969718932,136.51954100036622,136.5500623035431,136.58058360671996,136.61110490989685,136.64162621307372,136.67214751625062,136.7026688194275,136.73319012260436,136.76371142578125,136.79423272895812,136.82475403213502,136.8552753353119,136.88579663848876,136.91631794166565,136.94683924484252,136.97736054801942,137.0078818511963,137.03840315437316,137.06892445755005,137.09944576072692,137.12996706390382,137.1604883670807,137.19100967025756,137.22153097343445,137.25205227661132,137.28257357978822,137.3130948829651,137.34361618614196,137.37413748931885,137.40465879249572,137.4351800956726,137.4657013988495,137.49622270202636,137.52674400520326,137.55726530838012,137.587786611557,137.6183079147339,137.64882921791076,137.67935052108766,137.70987182426452,137.7403931274414,137.7709144306183,137.80143573379516,137.83195703697206,137.86247834014893,137.8929996433258,137.9235209465027,137.95404224967956,137.98456355285646,138.01508485603333,138.0456061592102,138.0761274623871,138.10664876556396,138.13717006874083,138.16769137191773,138.1982126750946,138.2287339782715,138.25925528144836,138.28977658462523,138.32029788780213,138.350819190979,138.3813404941559,138.41186179733276,138.44238310050963,138.47290440368653,138.5034257068634,138.5339470100403,138.56446831321716,138.59498961639403,138.62551091957093,138.6560322227478,138.6865535259247,138.71707482910156,138.74759613227843,138.77811743545533,138.8086387386322,138.83916004180907,138.86968134498596,138.90020264816283,138.93072395133973,138.9612452545166,138.99176655769347,139.02228786087036,139.05280916404723,139.08333046722413,139.113851770401,139.14437307357787,139.17489437675476,139.20541567993163,139.23593698310853,139.2664582862854,139.29697958946227,139.32750089263916,139.35802219581603,139.38854349899293,139.4190648021698,139.44958610534667,139.48010740852357,139.51062871170043,139.54115001487733,139.5716713180542,139.60219262123107,139.63271392440797,139.66323522758483,139.6937565307617,139.7242778339386,139.75479913711547,139.78532044029237,139.81584174346924,139.8463630466461,139.876884349823,139.90740565299987,139.93792695617677,139.96844825935364,139.9989695625305,140.0294908657074,140.06001216888427,140.09053347206117,140.12105477523804,140.1515760784149,140.1820973815918,140.21261868476867,140.24313998794557,140.27366129112244,140.3041825942993,140.3347038974762,140.36522520065307,140.39574650382994,140.42626780700684,140.4567891101837,140.4873104133606,140.51783171653747,140.54835301971434,140.57887432289124,140.6093956260681,140.639916929245,140.67043823242187,140.70095953559874,140.73148083877564,140.7620021419525,140.7925234451294,140.82304474830627,140.85356605148314,140.88408735466004,140.9146086578369,140.9451299610138,140.97565126419067,141.00617256736754,141.03669387054444,141.0672151737213,141.0977364768982,141.12825778007507,141.15877908325194,141.18930038642884,141.2198216896057,141.25034299278258,141.28086429595947,141.31138559913634,141.34190690231324,141.3724282054901,141.40294950866698,141.43347081184388,141.46399211502074,141.49451341819764,141.5250347213745,141.55555602455138,141.58607732772828,141.61659863090514,141.64711993408204,141.6776412372589,141.70816254043578,141.73868384361268,141.76920514678955,141.79972644996644,141.8302477531433,141.86076905632018,141.89129035949708,141.92181166267395,141.95233296585081,141.9828542690277,142.01337557220458,142.04389687538148,142.07441817855835,142.10493948173522,142.1354607849121,142.16598208808898,142.19650339126588,142.22702469444275,142.25754599761962,142.2880673007965,142.31858860397338,142.34910990715028,142.37963121032715,142.41015251350402,142.4406738166809,142.47119511985778,142.50171642303468,142.53223772621155,142.56275902938842,142.5932803325653,142.62380163574218,142.65432293891905,142.68484424209595,142.71536554527282,142.74588684844971,142.77640815162658,142.80692945480345,142.83745075798035,142.86797206115722,142.89849336433412,142.92901466751098,142.95953597068785,142.99005727386475,143.02057857704162,143.05109988021852,143.08162118339538,143.11214248657225,143.14266378974915,143.17318509292602,143.20370639610292,143.23422769927978,143.26474900245665,143.29527030563355,143.32579160881042,143.35631291198732,143.38683421516419,143.41735551834105,143.44787682151795,143.47839812469482,143.5089194278717,143.5394407310486,143.56996203422545,143.60048333740235,143.63100464057922,143.6615259437561,143.692047246933,143.72256855010986,143.75308985328675,143.78361115646362,143.8141324596405,143.8446537628174,143.87517506599426,143.90569636917115,143.93621767234802,143.9667389755249,143.9972602787018,144.02778158187866,144.05830288505555,144.08882418823242,144.1193454914093,144.1498667945862,144.18038809776306,144.21090940093993,144.24143070411682,144.2719520072937,144.3024733104706,144.33299461364746,144.36351591682433,144.39403722000122,144.4245585231781,144.455079826355,144.48560112953186,144.51612243270873,144.54664373588562,144.5771650390625,144.6076863422394,144.63820764541626,144.66872894859313,144.69925025177002,144.7297715549469,144.7602928581238,144.79081416130066,144.82133546447753,144.85185676765443,144.8823780708313,144.91289937400816,144.94342067718506,144.97394198036193,145.00446328353883,145.0349845867157,145.06550588989256,145.09602719306946,145.12654849624633,145.15706979942323,145.1875911026001,145.21811240577696,145.24863370895386,145.27915501213073,145.30967631530763,145.3401976184845,145.37071892166136,145.40124022483826,145.43176152801513,145.46228283119203,145.4928041343689,145.52332543754576,145.55384674072266,145.58436804389953,145.61488934707643,145.6454106502533,145.67593195343017,145.70645325660706,145.73697455978393,145.7674958629608,145.7980171661377,145.82853846931457,145.85905977249146,145.88958107566833,145.9201023788452,145.9506236820221,145.98114498519897,146.01166628837586,146.04218759155273,146.0727088947296,146.1032301979065,146.13375150108337,146.16427280426026,146.19479410743713,146.225315410614,146.2558367137909,146.28635801696777,146.31687932014466,146.34740062332153,146.3779219264984,146.4084432296753,146.43896453285217,146.46948583602904,146.50000713920593,146.5305284423828,146.5610497455597,146.59157104873657,146.62209235191344,146.65261365509033,146.6831349582672,146.7136562614441,146.74417756462097,146.77469886779784,146.80522017097474,146.8357414741516,146.8662627773285,146.89678408050537,146.92730538368224,146.95782668685914,146.988347990036,147.0188692932129,147.04939059638977,147.07991189956664,147.11043320274354,147.1409545059204,147.1714758090973,147.20199711227417,147.23251841545104,147.26303971862794,147.2935610218048,147.32408232498167,147.35460362815857,147.38512493133544,147.41564623451234,147.4461675376892,147.47668884086607,147.50721014404297,147.53773144721984,147.56825275039674,147.5987740535736,147.62929535675048,147.65981665992737,147.69033796310424,147.72085926628114,147.751380569458,147.78190187263488,147.81242317581177,147.84294447898864,147.87346578216554,147.9039870853424,147.93450838851928,147.96502969169617,147.99555099487304,148.0260722980499,148.0565936012268,148.08711490440368,148.11763620758057,148.14815751075744,148.1786788139343,148.2092001171112,148.23972142028808,148.27024272346497,148.30076402664184,148.3312853298187,148.3618066329956,148.39232793617248,148.42284923934938,148.45337054252624,148.4838918457031,148.51441314888,148.54493445205688,148.57545575523378,148.60597705841064,148.6364983615875,148.6670196647644,148.69754096794128,148.72806227111815,148.75858357429505,148.7891048774719,148.8196261806488,148.85014748382568,148.88066878700255,148.91119009017945,148.94171139335631,148.9722326965332,149.00275399971008,149.03327530288695,149.06379660606385,149.09431790924071,149.1248392124176,149.15536051559448,149.18588181877135,149.21640312194825,149.24692442512512,149.277445728302,149.30796703147888,149.33848833465575,149.36900963783265,149.39953094100952,149.4300522441864,149.46057354736328,149.49109485054015,149.52161615371705,149.55213745689392,149.58265876007079,149.61318006324768,149.64370136642455,149.67422266960145,149.70474397277832,149.7352652759552,149.76578657913208,149.79630788230895,149.82682918548585,149.85735048866272,149.8878717918396,149.91839309501648,149.94891439819335,149.97943570137025,150.00995700454712,150.040478307724,150.07099961090088,150.10152091407775,150.13204221725465,150.16256352043152,150.1930848236084,150.22360612678528,150.25412742996215,150.28464873313902,150.31517003631592,150.3456913394928,150.37621264266969,150.40673394584655,150.43725524902342,150.46777655220032,150.4982978553772,150.52881915855409,150.55934046173095,150.58986176490782,150.62038306808472,150.6509043712616,150.6814256744385,150.71194697761536,150.74246828079222,150.77298958396912,150.803510887146,150.8340321903229,150.86455349349976,150.89507479667662,150.92559609985352,150.9561174030304,150.9866387062073,151.01716000938416,151.04768131256102,151.07820261573792,151.1087239189148,151.13924522209166,151.16976652526856,151.20028782844543,151.23080913162232,151.2613304347992,151.29185173797606,151.32237304115296,151.35289434432983,151.38341564750672,151.4139369506836,151.44445825386046,151.47497955703736,151.50550086021423,151.53602216339112,151.566543466568,151.59706476974486,151.62758607292176,151.65810737609863,151.68862867927552,151.7191499824524,151.74967128562926,151.78019258880616,151.81071389198303,151.8412351951599,151.8717564983368,151.90227780151366,151.93279910469056,151.96332040786743,151.9938417110443,152.0243630142212,152.05488431739806,152.08540562057496,152.11592692375183,152.1464482269287,152.1769695301056,152.20749083328246,152.23801213645936,152.26853343963623,152.2990547428131,152.32957604599,152.36009734916686,152.39061865234376,152.42113995552063,152.4516612586975,152.4821825618744,152.51270386505126,152.54322516822813,152.57374647140503,152.6042677745819,152.6347890777588,152.66531038093567,152.69583168411253,152.72635298728943,152.7568742904663,152.7873955936432,152.81791689682007,152.84843819999693,152.87895950317383,152.9094808063507,152.9400021095276,152.97052341270447,153.00104471588133,153.03156601905823,153.0620873222351,153.092608625412,153.12312992858887,153.15365123176574,153.18417253494263,153.2146938381195,153.2452151412964,153.27573644447327,153.30625774765014,153.33677905082703,153.3673003540039,153.39782165718077,153.42834296035767,153.45886426353454,153.48938556671143,153.5199068698883,153.55042817306517,153.58094947624207,153.61147077941894,153.64199208259583,153.6725133857727,153.70303468894957,153.73355599212647,153.76407729530334,153.79459859848023,153.8251199016571,153.85564120483397,153.88616250801087,153.91668381118774,153.94720511436464,153.9777264175415,154.00824772071837,154.03876902389527,154.06929032707214,154.099811630249,154.1303329334259,154.16085423660277,154.19137553977967,154.22189684295654,154.2524181461334,154.2829394493103,154.31346075248717,154.34398205566407,154.37450335884094,154.4050246620178,154.4355459651947,154.46606726837157,154.49658857154847,154.52710987472534,154.5576311779022,154.5881524810791,154.61867378425598,154.64919508743287,154.67971639060974,154.7102376937866,154.7407589969635,154.77128030014038,154.80180160331724,154.83232290649414,154.862844209671,154.8933655128479,154.92388681602478,154.95440811920164,154.98492942237854,155.0154507255554,155.0459720287323,155.07649333190918,155.10701463508605,155.13753593826294,155.1680572414398,155.1985785446167,155.22909984779358,155.25962115097045,155.29014245414734,155.3206637573242,155.3511850605011,155.38170636367798,155.41222766685485,155.44274897003174,155.4732702732086,155.5037915763855,155.53431287956238,155.56483418273925,155.59535548591614,155.625876789093,155.65639809226988,155.68691939544678,155.71744069862365,155.74796200180054,155.7784833049774,155.80900460815428,155.83952591133118,155.87004721450805,155.90056851768495,155.9310898208618,155.96161112403868,155.99213242721558,156.02265373039245,156.05317503356935,156.08369633674621,156.11421763992308,156.14473894309998,156.17526024627685,156.20578154945375,156.23630285263062,156.26682415580748,156.29734545898438,156.32786676216125,156.35838806533812,156.38890936851502,156.41943067169188,156.44995197486878,156.48047327804565,156.51099458122252,156.54151588439942,156.57203718757629,156.60255849075318,156.63307979393005,156.66360109710692,156.69412240028382,156.72464370346069,156.75516500663758,156.78568630981445,156.81620761299132,156.84672891616822,156.8772502193451,156.90777152252198,156.93829282569885,156.96881412887572,156.99933543205262,157.0298567352295,157.06037803840638,157.09089934158325,157.12142064476012,157.15194194793702,157.1824632511139,157.21298455429076,157.24350585746765,157.27402716064452,157.30454846382142,157.3350697669983,157.36559107017516,157.39611237335205,157.42663367652892,157.45715497970582,157.4876762828827,157.51819758605956,157.54871888923645,157.57924019241332,157.60976149559022,157.6402827987671,157.67080410194396,157.70132540512085,157.73184670829772,157.76236801147462,157.7928893146515,157.82341061782836,157.85393192100526,157.88445322418212,157.914974527359,157.9454958305359,157.97601713371276,158.00653843688966,158.03705974006652,158.0675810432434,158.0981023464203,158.12862364959716,158.15914495277406,158.18966625595093,158.2201875591278,158.2507088623047,158.28123016548156,158.31175146865846,158.34227277183533,158.3727940750122,158.4033153781891,158.43383668136596,158.46435798454286,158.49487928771973,158.5254005908966,158.5559218940735,158.58644319725036,158.61696450042723,158.64748580360413,158.678007106781,158.7085284099579,158.73904971313476,158.76957101631163,158.80009231948853,158.8306136226654,158.8611349258423,158.89165622901916,158.92217753219603,158.95269883537293,158.9832201385498,159.0137414417267,159.04426274490356,159.07478404808043,159.10530535125733,159.1358266544342,159.1663479576111,159.19686926078796,159.22739056396483,159.25791186714173,159.2884331703186,159.3189544734955,159.34947577667236,159.37999707984923,159.41051838302613,159.441039686203,159.47156098937987,159.50208229255676,159.53260359573363,159.56312489891053,159.5936462020874,159.62416750526427,159.65468880844116,159.68521011161803,159.71573141479493,159.7462527179718,159.77677402114867,159.80729532432557,159.83781662750243,159.86833793067933,159.8988592338562,159.92938053703307,159.95990184020997,159.99042314338683,160.02094444656373,160.0514657497406,160.08198705291747,160.11250835609437,160.14302965927124,160.1735509624481,160.204072265625,160.23459356880187,160.26511487197877,160.29563617515564,160.3261574783325,160.3566787815094,160.38720008468627,160.41772138786317,160.44824269104004,160.4787639942169,160.5092852973938,160.53980660057067,160.57032790374757,160.60084920692444,160.6313705101013,160.6618918132782,160.69241311645507,160.72293441963197,160.75345572280884,160.7839770259857,160.8144983291626,160.84501963233947,160.87554093551634,160.90606223869324,160.9365835418701,160.967104845047,160.99762614822387,161.02814745140074,161.05866875457764,161.0891900577545,161.1197113609314,161.15023266410827,161.18075396728514,161.21127527046204,161.2417965736389,161.2723178768158,161.30283917999267,161.33336048316954,161.36388178634644,161.3944030895233,161.4249243927002,161.45544569587707,161.48596699905394,161.51648830223084,161.5470096054077,161.5775309085846,161.60805221176147,161.63857351493834,161.66909481811524,161.6996161212921,161.73013742446898,161.76065872764588,161.79118003082274,161.82170133399964,161.8522226371765,161.88274394035338,161.91326524353028,161.94378654670714,161.97430784988404,162.0048291530609,162.03535045623778,162.06587175941468,162.09639306259155,162.12691436576844,162.1574356689453,162.18795697212218,162.21847827529908,162.24899957847595,162.27952088165284,162.3100421848297,162.34056348800658,162.37108479118348,162.40160609436035,162.43212739753722,162.4626487007141,162.49317000389098,162.52369130706788,162.55421261024475,162.58473391342162,162.6152552165985,162.64577651977538,162.67629782295228,162.70681912612915,162.73734042930602,162.7678617324829,162.79838303565978,162.82890433883668,162.85942564201355,162.88994694519042,162.9204682483673,162.95098955154418,162.98151085472108,163.01203215789795,163.04255346107482,163.07307476425171,163.10359606742858,163.13411737060548,163.16463867378235,163.19515997695922,163.22568128013611,163.25620258331298,163.28672388648985,163.31724518966675,163.34776649284362,163.37828779602052,163.40880909919738,163.43933040237425,163.46985170555115,163.50037300872802,163.53089431190492,163.56141561508178,163.59193691825865,163.62245822143555,163.65297952461242,163.68350082778932,163.71402213096619,163.74454343414305,163.77506473731995,163.80558604049682,163.83610734367372,163.8666286468506,163.89714995002745,163.92767125320435,163.95819255638122,163.9887138595581,164.019235162735,164.04975646591186,164.08027776908875,164.11079907226562,164.1413203754425,164.1718416786194,164.20236298179626,164.23288428497315,164.26340558815002,164.2939268913269,164.3244481945038,164.35496949768066,164.38549080085755,164.41601210403442,164.4465334072113,164.4770547103882,164.50757601356506,164.53809731674195,164.56861861991882,164.5991399230957,164.6296612262726,164.66018252944946,164.69070383262633,164.72122513580322,164.7517464389801,164.782267742157,164.81278904533386,164.84331034851073,164.87383165168762,164.9043529548645,164.9348742580414,164.96539556121826,164.99591686439513,165.02643816757202,165.0569594707489,165.0874807739258,165.11800207710266,165.14852338027953,165.17904468345642,165.2095659866333,165.2400872898102,165.27060859298706,165.30112989616393,165.33165119934083,165.3621725025177,165.3926938056946,165.42321510887146,165.45373641204833,165.48425771522523,165.5147790184021,165.54530032157896,165.57582162475586,165.60634292793273,165.63686423110963,165.6673855342865,165.69790683746336,165.72842814064026,165.75894944381713,165.78947074699403,165.8199920501709,165.85051335334776,165.88103465652466,165.91155595970153,165.94207726287843,165.9725985660553,166.00311986923217,166.03364117240906,166.06416247558593,166.09468377876283,166.1252050819397,166.15572638511657,166.18624768829346,166.21676899147033,166.2472902946472,166.2778115978241,166.30833290100097,166.33885420417786,166.36937550735473,166.3998968105316,166.4304181137085,166.46093941688537,166.49146072006226,166.52198202323913,166.552503326416,166.5830246295929,166.61354593276977,166.64406723594666,166.67458853912353,166.7051098423004,166.7356311454773,166.76615244865417,166.79667375183107,166.82719505500793,166.8577163581848,166.8882376613617,166.91875896453857,166.94928026771544,166.97980157089233,167.0103228740692,167.0408441772461,167.07136548042297,167.10188678359984,167.13240808677673,167.1629293899536,167.1934506931305,167.22397199630737,167.25449329948424,167.28501460266114,167.315535905838,167.3460572090149,167.37657851219177,167.40709981536864,167.43762111854554,167.4681424217224,167.4986637248993,167.52918502807617,167.55970633125304,167.59022763442994,167.6207489376068,167.6512702407837,167.68179154396057,167.71231284713744,167.74283415031434,167.7733554534912,167.80387675666807,167.83439805984497,167.86491936302184,167.89544066619874,167.9259619693756,167.95648327255248,167.98700457572937,168.01752587890624,168.04804718208314,168.07856848526,168.10908978843688,168.13961109161377,168.17013239479064,168.20065369796754,168.2311750011444,168.26169630432128,168.29221760749817,168.32273891067504,168.35326021385194,168.3837815170288,168.41430282020568,168.44482412338257,168.47534542655944,168.5058667297363,168.5363880329132,168.56690933609008,168.59743063926697,168.62795194244384,168.6584732456207,168.6889945487976,168.71951585197448,168.75003715515138,168.78055845832824,168.8110797615051,168.841601064682,168.87212236785888,168.90264367103578,168.93316497421264,168.9636862773895,168.9942075805664,169.02472888374328,169.05525018692018,169.08577149009704,169.1162927932739,169.1468140964508,169.17733539962768,169.20785670280458,169.23837800598145,169.26889930915831,169.2994206123352,169.32994191551208,169.36046321868895,169.39098452186585,169.42150582504271,169.4520271282196,169.48254843139648,169.51306973457335,169.54359103775025,169.57411234092712,169.604633644104,169.63515494728088,169.66567625045775,169.69619755363465,169.72671885681152,169.7572401599884,169.78776146316528,169.81828276634215,169.84880406951905,169.87932537269592,169.9098466758728,169.94036797904968,169.97088928222655,170.00141058540345,170.03193188858032,170.06245319175719,170.09297449493408,170.12349579811095,170.15401710128785,170.18453840446472,170.2150597076416,170.24558101081848,170.27610231399535,170.30662361717225,170.33714492034912,170.367666223526,170.39818752670288,170.42870882987975,170.45923013305665,170.48975143623352,170.5202727394104,170.55079404258728,170.58131534576415,170.61183664894105,170.64235795211792,170.6728792552948,170.70340055847169,170.73392186164855,170.76444316482542,170.79496446800232,170.8254857711792,170.85600707435609,170.88652837753295,170.91704968070982,170.94757098388672,170.9780922870636,171.0086135902405,171.03913489341735,171.06965619659422,171.10017749977112,171.130698802948,171.1612201061249,171.19174140930176,171.22226271247862,171.25278401565552,171.2833053188324,171.3138266220093,171.34434792518616,171.37486922836302,171.40539053153992,171.4359118347168,171.4664331378937,171.49695444107056,171.52747574424743,171.55799704742432,171.5885183506012,171.61903965377806,171.64956095695496,171.68008226013183,171.71060356330872,171.7411248664856,171.77164616966246,171.80216747283936,171.83268877601623,171.86321007919312,171.89373138237,171.92425268554686,171.95477398872376,171.98529529190063,172.01581659507752,172.0463378982544,172.07685920143126,172.10738050460816,172.13790180778503,172.16842311096192,172.1989444141388,172.22946571731566,172.25998702049256,172.29050832366943,172.3210296268463,172.3515509300232,172.38207223320006,172.41259353637696,172.44311483955383,172.4736361427307,172.5041574459076,172.53467874908446,172.56520005226136,172.59572135543823,172.6262426586151,172.656763961792,172.68728526496886,172.71780656814576,172.74832787132263,172.7788491744995,172.8093704776764,172.83989178085326,172.87041308403016,172.90093438720703,172.9314556903839,172.9619769935608,172.99249829673766,173.02301959991456,173.05354090309143,173.0840622062683,173.1145835094452,173.14510481262207,173.17562611579893,173.20614741897583,173.2366687221527,173.2671900253296,173.29771132850647,173.32823263168333,173.35875393486023,173.3892752380371,173.419796541214,173.45031784439087,173.48083914756774,173.51136045074463,173.5418817539215,173.5724030570984,173.60292436027527,173.63344566345214,173.66396696662903,173.6944882698059,173.7250095729828,173.75553087615967,173.78605217933654,173.81657348251343,173.8470947856903,173.87761608886717,173.90813739204407,173.93865869522094,173.96917999839783,173.9997013015747,174.03022260475157,174.06074390792847,174.09126521110534,174.12178651428223,174.1523078174591,174.18282912063597,174.21335042381287,174.24387172698974,174.27439303016664,174.3049143333435,174.33543563652037,174.36595693969727,174.39647824287414,174.42699954605104,174.4575208492279,174.48804215240477,174.51856345558167,174.54908475875854,174.5796060619354,174.6101273651123,174.64064866828917,174.67116997146607,174.70169127464294,174.7322125778198,174.7627338809967,174.79325518417357,174.82377648735047,174.85429779052734,174.8848190937042,174.9153403968811,174.94586170005797,174.97638300323487,175.00690430641174,175.0374256095886,175.0679469127655,175.09846821594238,175.12898951911927,175.15951082229614,175.190032125473,175.2205534286499,175.25107473182678,175.28159603500367,175.31211733818054,175.3426386413574,175.3731599445343,175.40368124771118,175.43420255088805,175.46472385406494,175.4952451572418,175.5257664604187,175.55628776359558,175.58680906677245,175.61733036994934,175.6478516731262,175.6783729763031,175.70889427947998,175.73941558265685,175.76993688583374,175.8004581890106,175.8309794921875,175.86150079536438,175.89202209854125,175.92254340171814,175.953064704895,175.9835860080719,176.01410731124878,176.04462861442565,176.07514991760254,176.1056712207794,176.13619252395628,176.16671382713318,176.19723513031005,176.22775643348695,176.2582777366638,176.28879903984068,176.31932034301758,176.34984164619445,176.38036294937135,176.41088425254821,176.44140555572508,176.47192685890198,176.50244816207885,176.53296946525575,176.56349076843262,176.59401207160948,176.62453337478638,176.65505467796325,176.68557598114015,176.71609728431702,176.74661858749388,176.77713989067078,176.80766119384765,176.83818249702452,176.86870380020142,176.89922510337828,176.92974640655518,176.96026770973205,176.99078901290892,177.02131031608582,177.05183161926269,177.08235292243958,177.11287422561645,177.14339552879332,177.17391683197022,177.2044381351471,177.23495943832398,177.26548074150085,177.29600204467772,177.32652334785462,177.3570446510315,177.38756595420838,177.41808725738525,177.44860856056212,177.47912986373902,177.5096511669159,177.54017247009278,177.57069377326965,177.60121507644652,177.63173637962342,177.6622576828003,177.69277898597716,177.72330028915405,177.75382159233092,177.78434289550782,177.8148641986847,177.84538550186156,177.87590680503845,177.90642810821532,177.93694941139222,177.9674707145691,177.99799201774596,178.02851332092285,178.05903462409972,178.08955592727662,178.1200772304535,178.15059853363036,178.18111983680726,178.21164113998412,178.24216244316102,178.2726837463379,178.30320504951476,178.33372635269166,178.36424765586852,178.3947689590454,178.4252902622223,178.45581156539916,178.48633286857606,178.51685417175293,178.5473754749298,178.5778967781067,178.60841808128356,178.63893938446046,178.66946068763733,178.6999819908142,178.7305032939911,178.76102459716796,178.79154590034486,178.82206720352173,178.8525885066986,178.8831098098755,178.91363111305236,178.94415241622926,178.97467371940613,179.005195022583,179.0357163257599,179.06623762893676,179.09675893211366,179.12728023529053,179.1578015384674,179.1883228416443,179.21884414482116,179.24936544799803,179.27988675117493,179.3104080543518,179.3409293575287,179.37145066070556,179.40197196388243,179.43249326705933,179.4630145702362,179.4935358734131,179.52405717658996,179.55457847976683,179.58509978294373,179.6156210861206,179.6461423892975,179.67666369247436,179.70718499565123,179.73770629882813,179.768227602005,179.7987489051819,179.82927020835876,179.85979151153563,179.89031281471253,179.9208341178894,179.95135542106627,179.98187672424316,180.01239802742003,180.04291933059693,180.0734406337738,180.10396193695067,180.13448324012757,180.16500454330443,180.19552584648133,180.2260471496582,180.25656845283507,180.28708975601197,180.31761105918883,180.34813236236573,180.3786536655426,180.40917496871947,180.43969627189637,180.47021757507324,180.50073887825013,180.531260181427,180.56178148460387,180.59230278778077,180.62282409095764,180.6533453941345,180.6838666973114,180.71438800048827,180.74490930366517,180.77543060684204,180.8059519100189,180.8364732131958,180.86699451637267,180.89751581954957,180.92803712272644,180.9585584259033,180.9890797290802,181.01960103225707,181.05012233543397,181.08064363861084,181.1111649417877,181.1416862449646,181.17220754814147,181.20272885131837,181.23325015449524,181.2637714576721,181.294292760849,181.32481406402587,181.35533536720277,181.38585667037964,181.4163779735565,181.4468992767334,181.47742057991027,181.50794188308714,181.53846318626404,181.5689844894409,181.5995057926178,181.63002709579467,181.66054839897154,181.69106970214844,181.7215910053253,181.7521123085022,181.78263361167907,181.81315491485594,181.84367621803284,181.8741975212097,181.9047188243866,181.93524012756347,181.96576143074034,181.99628273391724,182.0268040370941,182.057325340271,182.08784664344788,182.11836794662474,182.14888924980164,182.1794105529785,182.20993185615538,182.24045315933228,182.27097446250914,182.30149576568604,182.3320170688629,182.36253837203978,182.39305967521668,182.42358097839355,182.45410228157044,182.4846235847473,182.51514488792418,182.54566619110108,182.57618749427795,182.60670879745484,182.6372301006317,182.66775140380858,182.69827270698548,182.72879401016235,182.75931531333924,182.7898366165161,182.82035791969298,182.85087922286988,182.88140052604675,182.91192182922362,182.9424431324005,182.97296443557738,183.00348573875428,183.03400704193115,183.06452834510802,183.0950496482849,183.12557095146178,183.15609225463868,183.18661355781555,183.21713486099242,183.2476561641693,183.27817746734618,183.30869877052308,183.33922007369995,183.36974137687682,183.40026268005371,183.43078398323058,183.46130528640748,183.49182658958435,183.52234789276122,183.55286919593811,183.58339049911498,183.61391180229188,183.64443310546875,183.67495440864562,183.70547571182252,183.73599701499938,183.76651831817625,183.79703962135315,183.82756092453002,183.85808222770692,183.88860353088378,183.91912483406065,183.94964613723755,183.98016744041442,184.01068874359132,184.04121004676819,184.07173134994505,184.10225265312195,184.13277395629882,184.16329525947572,184.1938165626526,184.22433786582945,184.25485916900635,184.28538047218322,184.31590177536012,184.346423078537,184.37694438171386,184.40746568489075,184.43798698806762,184.4685082912445,184.4990295944214,184.52955089759826,184.56007220077515,184.59059350395202,184.6211148071289,184.6516361103058,184.68215741348266,184.71267871665955,184.74320001983642,184.7737213230133,184.8042426261902,184.83476392936706,184.86528523254395,184.89580653572082,184.9263278388977,184.9568491420746,184.98737044525146,185.01789174842835,185.04841305160522,185.0789343547821,185.109455657959,185.13997696113586,185.17049826431276,185.20101956748962,185.2315408706665,185.2620621738434,185.29258347702026,185.32310478019713,185.35362608337402,185.3841473865509,185.4146686897278,185.44518999290466,185.47571129608153,185.50623259925842,185.5367539024353,185.5672752056122,185.59779650878906,185.62831781196593,185.65883911514283,185.6893604183197,185.7198817214966,185.75040302467346,185.78092432785033,185.81144563102723,185.8419669342041,185.872488237381,185.90300954055786,185.93353084373473,185.96405214691163,185.9945734500885,186.02509475326536,186.05561605644226,186.08613735961913,186.11665866279603,186.1471799659729,186.17770126914976,186.20822257232666,186.23874387550353,186.26926517868043,186.2997864818573,186.33030778503417,186.36082908821106,186.39135039138793,186.42187169456483,186.4523929977417,186.48291430091857,186.51343560409546,186.54395690727233,186.57447821044923,186.6049995136261,186.63552081680297,186.66604211997986,186.69656342315673,186.7270847263336,186.7576060295105,186.78812733268737,186.81864863586426,186.84916993904113,186.879691242218,186.9102125453949,186.94073384857177,186.97125515174866,187.00177645492553,187.0322977581024,187.0628190612793,187.09334036445617,187.12386166763307,187.15438297080993,187.1849042739868,187.2154255771637,187.24594688034057,187.27646818351747,187.30698948669433,187.3375107898712,187.3680320930481,187.39855339622497,187.42907469940187,187.45959600257873,187.4901173057556,187.5206386089325,187.55115991210937,187.58168121528624,187.61220251846314,187.64272382164,187.6732451248169,187.70376642799377,187.73428773117064,187.76480903434754,187.7953303375244,187.8258516407013,187.85637294387817,187.88689424705504,187.91741555023194,187.9479368534088,187.9784581565857,188.00897945976257,188.03950076293944,188.07002206611634,188.1005433692932,188.1310646724701,188.16158597564697,188.19210727882384,188.22262858200074,188.2531498851776,188.28367118835448,188.31419249153137,188.34471379470824,188.37523509788514,188.405756401062,188.43627770423888,188.46679900741577,188.49732031059264,188.52784161376954,188.5583629169464,188.58888422012328,188.61940552330017,188.64992682647704,188.68044812965394,188.7109694328308,188.74149073600768,188.77201203918457,188.80253334236144,188.83305464553834,188.8635759487152,188.89409725189208,188.92461855506897,188.95513985824584,188.98566116142274,189.0161824645996,189.04670376777648,189.07722507095338,189.10774637413024,189.1382676773071,189.168788980484,189.19931028366088,189.22983158683778,189.26035289001464,189.2908741931915,189.3213954963684,189.35191679954528,189.38243810272218,189.41295940589904,189.4434807090759,189.4740020122528,189.50452331542968,189.53504461860658,189.56556592178345,189.5960872249603,189.6266085281372,189.65712983131408,189.68765113449098,189.71817243766785,189.74869374084471,189.7792150440216,189.80973634719848,189.84025765037535,189.87077895355225,189.90130025672912,189.931821559906,189.96234286308288,189.99286416625975,190.02338546943665,190.05390677261352,190.0844280757904,190.11494937896728,190.14547068214415,190.17599198532105,190.20651328849792,190.2370345916748,190.26755589485168,190.29807719802855,190.32859850120545,190.35911980438232,190.3896411075592,190.42016241073608,190.45068371391295,190.48120501708985,190.51172632026672,190.5422476234436,190.57276892662048,190.60329022979735,190.63381153297425,190.66433283615112,190.694854139328,190.72537544250488,190.75589674568175,190.78641804885865,190.81693935203552,190.8474606552124,190.87798195838928,190.90850326156615,190.93902456474305,190.96954586791992,191.0000671710968,191.03058847427369,191.06110977745055,191.09163108062745,191.12215238380432,191.1526736869812,191.18319499015809,191.21371629333495,191.24423759651185,191.27475889968872,191.3052802028656,191.3358015060425,191.36632280921935,191.39684411239622,191.42736541557312,191.45788671875,191.4884080219269,191.51892932510376,191.54945062828062,191.57997193145752,191.6104932346344,191.6410145378113,191.67153584098816,191.70205714416502,191.73257844734192,191.7630997505188,191.7936210536957,191.82414235687256,191.85466366004943,191.88518496322632,191.9157062664032,191.9462275695801,191.97674887275696,192.00727017593383,192.03779147911072,192.0683127822876,192.09883408546446,192.12935538864136,192.15987669181823,192.19039799499512,192.220919298172,192.25144060134886,192.28196190452576,192.31248320770263,192.34300451087952,192.3735258140564,192.40404711723326,192.43456842041016,192.46508972358703,192.49561102676392,192.5261323299408,192.55665363311766,192.58717493629456,192.61769623947143,192.64821754264833,192.6787388458252,192.70926014900206,192.73978145217896,192.77030275535583,192.8008240585327,192.8313453617096,192.86186666488646,192.89238796806336,192.92290927124023,192.9534305744171,192.983951877594,193.01447318077086,193.04499448394776,193.07551578712463,193.1060370903015,193.1365583934784,193.16707969665526,193.19760099983216,193.22812230300903,193.2586436061859,193.2891649093628,193.31968621253966,193.35020751571656,193.38072881889343,193.4112501220703,193.4417714252472,193.47229272842407,193.50281403160096,193.53333533477783,193.5638566379547,193.5943779411316,193.62489924430847,193.65542054748533,193.68594185066223,193.7164631538391,193.746984457016,193.77750576019287,193.80802706336974,193.83854836654663,193.8690696697235,193.8995909729004,193.93011227607727,193.96063357925414,193.99115488243103,194.0216761856079,194.0521974887848,194.08271879196167,194.11324009513854,194.14376139831543,194.1742827014923,194.2048040046692,194.23532530784607,194.26584661102294,194.29636791419983,194.3268892173767,194.35741052055357,194.38793182373047,194.41845312690734,194.44897443008423,194.4794957332611,194.51001703643797,194.54053833961487,194.57105964279174,194.60158094596864,194.6321022491455,194.66262355232237,194.69314485549927,194.72366615867614,194.75418746185304,194.7847087650299,194.81523006820677,194.84575137138367,194.87627267456054,194.90679397773744,194.9373152809143,194.96783658409117,194.99835788726807,195.02887919044494,195.05940049362184,195.0899217967987,195.12044309997557,195.15096440315247,195.18148570632934,195.2120070095062,195.2425283126831,195.27304961585997,195.30357091903687,195.33409222221374,195.3646135253906,195.3951348285675,195.42565613174438,195.45617743492127,195.48669873809814,195.517220041275,195.5477413444519,195.57826264762878,195.60878395080567,195.63930525398254,195.6698265571594,195.7003478603363,195.73086916351318,195.76139046669007,195.79191176986694,195.8224330730438,195.8529543762207,195.88347567939758,195.91399698257445,195.94451828575134,195.9750395889282,196.0055608921051,196.03608219528198,196.06660349845885,196.09712480163574,196.1276461048126,196.1581674079895,196.18868871116638,196.21921001434325,196.24973131752014,196.280252620697,196.3107739238739,196.34129522705078,196.37181653022765,196.40233783340454,196.4328591365814,196.4633804397583,196.49390174293518,196.52442304611205,196.55494434928895,196.5854656524658,196.61598695564268,196.64650825881958,196.67702956199645,196.70755086517335,196.73807216835021,196.76859347152708,196.79911477470398,196.82963607788085,196.86015738105775,196.89067868423462,196.92119998741148,196.95172129058838,196.98224259376525,197.01276389694215,197.04328520011902,197.07380650329588,197.10432780647278,197.13484910964965,197.16537041282655,197.19589171600342,197.22641301918028,197.25693432235718,197.28745562553405,197.31797692871095,197.34849823188782,197.37901953506469,197.40954083824158,197.44006214141845,197.47058344459532,197.50110474777222,197.5316260509491,197.56214735412598,197.59266865730285,197.62318996047972,197.65371126365662,197.6842325668335,197.71475387001038,197.74527517318725,197.77579647636412,197.80631777954102,197.8368390827179,197.86736038589478,197.89788168907165,197.92840299224852,197.95892429542542,197.9894455986023,198.01996690177918,198.05048820495605,198.08100950813292,198.11153081130982,198.1420521144867,198.17257341766356,198.20309472084045,198.23361602401732,198.26413732719422,198.2946586303711,198.32517993354796,198.35570123672485,198.38622253990172,198.41674384307862,198.4472651462555,198.47778644943236,198.50830775260926,198.53882905578612,198.56935035896302,198.5998716621399,198.63039296531676,198.66091426849366,198.69143557167052,198.72195687484742,198.7524781780243,198.78299948120116,198.81352078437806,198.84404208755493,198.8745633907318,198.9050846939087,198.93560599708556,198.96612730026246,198.99664860343933,199.0271699066162,199.0576912097931,199.08821251296996,199.11873381614686,199.14925511932373,199.1797764225006,199.2102977256775,199.24081902885436,199.27134033203126,199.30186163520813,199.332382938385,199.3629042415619,199.39342554473876,199.42394684791566,199.45446815109253,199.4849894542694,199.5155107574463,199.54603206062316,199.57655336380006,199.60707466697693,199.6375959701538,199.6681172733307,199.69863857650756,199.72915987968443,199.75968118286133,199.7902024860382,199.8207237892151,199.85124509239196,199.88176639556883,199.91228769874573,199.9428090019226,199.9733303050995,200.00385160827636,200.03437291145323,200.06489421463013,200.095415517807,200.1259368209839,200.15645812416076,200.18697942733763,200.21750073051453,200.2480220336914,200.2785433368683,200.30906464004516,200.33958594322203,200.37010724639893,200.4006285495758,200.43114985275267,200.46167115592957,200.49219245910643,200.52271376228333,200.5532350654602,200.58375636863707,200.61427767181397,200.64479897499083,200.67532027816773,200.7058415813446,200.73636288452147,200.76688418769837,200.79740549087524,200.82792679405213,200.858448097229,200.88896940040587,200.91949070358277,200.95001200675964,200.98053330993653,201.0110546131134,201.04157591629027,201.07209721946717,201.10261852264404,201.13313982582093,201.1636611289978,201.19418243217467,201.22470373535157,201.25522503852844,201.2857463417053,201.3162676448822,201.34678894805907,201.37731025123597,201.40783155441284,201.4383528575897,201.4688741607666,201.49939546394347,201.52991676712037,201.56043807029724,201.5909593734741,201.621480676651,201.65200197982787,201.68252328300477,201.71304458618164,201.7435658893585,201.7740871925354,201.80460849571227,201.83512979888917,201.86565110206604,201.8961724052429,201.9266937084198,201.95721501159667,201.98773631477354,202.01825761795044,202.0487789211273,202.0793002243042,202.10982152748107,202.14034283065794,202.17086413383484,202.2013854370117,202.2319067401886,202.26242804336547,202.29294934654234,202.32347064971924,202.3539919528961,202.384513256073,202.41503455924988,202.44555586242674,202.47607716560364,202.5065984687805,202.5371197719574,202.56764107513428,202.59816237831114,202.62868368148804,202.6592049846649,202.68972628784178,202.72024759101868,202.75076889419555,202.78129019737244,202.8118115005493,202.84233280372618,202.87285410690308,202.90337541007995,202.93389671325684,202.9644180164337,202.99493931961058,203.02546062278748,203.05598192596435,203.08650322914124,203.1170245323181,203.14754583549498,203.17806713867188,203.20858844184875,203.23910974502564,203.2696310482025,203.30015235137938,203.33067365455628,203.36119495773315,203.39171626091004,203.4222375640869,203.45275886726378,203.48328017044068,203.51380147361755,203.54432277679442,203.5748440799713,203.60536538314818,203.63588668632508,203.66640798950195,203.69692929267882,203.72745059585571,203.75797189903258,203.78849320220948,203.81901450538635,203.84953580856322,203.88005711174011,203.91057841491698,203.94109971809388,203.97162102127075,204.00214232444762,204.03266362762452,204.06318493080138,204.09370623397828,204.12422753715515,204.15474884033202,204.18527014350892,204.21579144668578,204.24631274986265,204.27683405303955,204.30735535621642,204.33787665939332,204.36839796257019,204.39891926574705,204.42944056892395,204.45996187210082,204.49048317527772,204.52100447845459,204.55152578163145,204.58204708480835,204.61256838798522,204.64308969116212,204.673610994339,204.70413229751586,204.73465360069275,204.76517490386962,204.79569620704652,204.8262175102234,204.85673881340026,204.88726011657715,204.91778141975402,204.9483027229309,204.9788240261078,205.00934532928466,205.03986663246155,205.07038793563842,205.1009092388153,205.1314305419922,205.16195184516906,205.19247314834595,205.22299445152282,205.2535157546997,205.2840370578766,205.31455836105346,205.34507966423035,205.37560096740722,205.4061222705841,205.436643573761,205.46716487693786,205.49768618011475,205.52820748329162,205.5587287864685,205.5892500896454,205.61977139282226,205.65029269599916,205.68081399917602,205.7113353023529,205.7418566055298,205.77237790870666,205.80289921188353,205.83342051506042,205.8639418182373,205.8944631214142,205.92498442459106,205.95550572776793,205.98602703094483,206.0165483341217,206.0470696372986,206.07759094047546,206.10811224365233,206.13863354682923,206.1691548500061,206.199676153183,206.23019745635986,206.26071875953673,206.29124006271363,206.3217613658905,206.3522826690674,206.38280397224426,206.41332527542113,206.44384657859803,206.4743678817749,206.50488918495176,206.53541048812866,206.56593179130553,206.59645309448243,206.6269743976593,206.65749570083617,206.68801700401306,206.71853830718993,206.74905961036683,206.7795809135437,206.81010221672057,206.84062351989746,206.87114482307433,206.90166612625123,206.9321874294281,206.96270873260497,206.99323003578186,207.02375133895873,207.05427264213563,207.0847939453125,207.11531524848937,207.14583655166626,207.17635785484313,207.20687915802003,207.2374004611969,207.26792176437377,207.29844306755066,207.32896437072753,207.3594856739044,207.3900069770813,207.42052828025817,207.45104958343506,207.48157088661193,207.5120921897888,207.5426134929657,207.57313479614257,207.60365609931947,207.63417740249633,207.6646987056732,207.6952200088501,207.72574131202697,207.75626261520387,207.78678391838073,207.8173052215576,207.8478265247345,207.87834782791137,207.90886913108827,207.93939043426514,207.969911737442,208.0004330406189,208.03095434379577,208.06147564697264,208.09199695014954,208.1225182533264,208.1530395565033,208.18356085968017,208.21408216285704,208.24460346603394,208.2751247692108,208.3056460723877,208.33616737556457,208.36668867874144,208.39720998191834,208.4277312850952,208.4582525882721,208.48877389144897,208.51929519462584,208.54981649780274,208.5803378009796,208.6108591041565,208.64138040733337,208.67190171051024,208.70242301368714,208.732944316864,208.76346562004088,208.79398692321777,208.82450822639464,208.85502952957154,208.8855508327484,208.91607213592528,208.94659343910217,208.97711474227904,209.00763604545594,209.0381573486328,209.06867865180968,209.09919995498657,209.12972125816344,209.16024256134034,209.1907638645172,209.22128516769408,209.25180647087097,209.28232777404784,209.31284907722474,209.3433703804016,209.37389168357848,209.40441298675537,209.43493428993224,209.46545559310914,209.495976896286,209.52649819946288,209.55701950263978,209.58754080581664,209.6180621089935,209.6485834121704,209.67910471534728,209.70962601852418,209.74014732170104,209.7706686248779,209.8011899280548,209.83171123123168,209.86223253440858,209.89275383758545,209.9232751407623,209.9537964439392,209.98431774711608,210.01483905029298,210.04536035346985,210.07588165664671,210.1064029598236,210.13692426300048,210.16744556617738,210.19796686935425,210.22848817253112,210.259009475708,210.28953077888488,210.32005208206175,210.35057338523865,210.38109468841552,210.4116159915924,210.44213729476928,210.47265859794615,210.50317990112305,210.53370120429992,210.5642225074768,210.59474381065368,210.62526511383055,210.65578641700745,210.68630772018432,210.7168290233612,210.74735032653808,210.77787162971495,210.80839293289185,210.83891423606872,210.86943553924561,210.89995684242248,210.93047814559935,210.96099944877625,210.99152075195312,211.02204205513002,211.05256335830688,211.08308466148375,211.11360596466065,211.14412726783752,211.1746485710144,211.20516987419128,211.23569117736815,211.26621248054505,211.29673378372192,211.3272550868988,211.35777639007568,211.38829769325255,211.41881899642945,211.44934029960632,211.4798616027832,211.51038290596009,211.54090420913695,211.57142551231385,211.60194681549072,211.6324681186676,211.6629894218445,211.69351072502135,211.72403202819825,211.75455333137512,211.785074634552,211.8155959377289,211.84611724090576,211.87663854408262,211.90715984725952,211.9376811504364,211.9682024536133,211.99872375679016,212.02924505996702,212.05976636314392,212.0902876663208,212.1208089694977,212.15133027267456,212.18185157585143,212.21237287902832,212.2428941822052,212.2734154853821,212.30393678855896,212.33445809173583,212.36497939491272,212.3955006980896,212.4260220012665,212.45654330444336,212.48706460762023,212.51758591079712,212.548107213974,212.57862851715086,212.60914982032776,212.63967112350463,212.67019242668152,212.7007137298584,212.73123503303526,212.76175633621216,212.79227763938903,212.82279894256592,212.8533202457428,212.88384154891966,212.91436285209656,212.94488415527343,212.97540545845033,213.0059267616272,213.03644806480406,213.06696936798096,213.09749067115783,213.12801197433473,213.1585332775116,213.18905458068846,213.21957588386536,213.25009718704223,213.28061849021913,213.311139793396,213.34166109657286,213.37218239974976,213.40270370292663,213.4332250061035,213.4637463092804,213.49426761245726,213.52478891563416,213.55531021881103,213.5858315219879,213.6163528251648,213.64687412834166,213.67739543151856,213.70791673469543,213.7384380378723,213.7689593410492,213.79948064422607,213.83000194740296,213.86052325057983,213.8910445537567,213.9215658569336,213.95208716011047,213.98260846328736,214.01312976646423,214.0436510696411,214.074172372818,214.10469367599487,214.13521497917174,214.16573628234863,214.1962575855255,214.2267788887024,214.25730019187927,214.28782149505614,214.31834279823303,214.3488641014099,214.3793854045868,214.40990670776367,214.44042801094054,214.47094931411743,214.5014706172943,214.5319919204712,214.56251322364807,214.59303452682494,214.62355583000183,214.6540771331787,214.6845984363556,214.71511973953247,214.74564104270934,214.77616234588623,214.8066836490631,214.83720495223997,214.86772625541687,214.89824755859374,214.92876886177064,214.9592901649475,214.98981146812437,215.02033277130127,215.05085407447814,215.08137537765504,215.1118966808319,215.14241798400877,215.17293928718567,215.20346059036254,215.23398189353944,215.2645031967163,215.29502449989317,215.32554580307007,215.35606710624694,215.38658840942384,215.4171097126007,215.44763101577757,215.47815231895447,215.50867362213134,215.53919492530824,215.5697162284851,215.60023753166197,215.63075883483887,215.66128013801574,215.6918014411926,215.7223227443695,215.75284404754638,215.78336535072327,215.81388665390014,215.844407957077,215.8749292602539,215.90545056343078,215.93597186660767,215.96649316978454,215.9970144729614,216.0275357761383,216.05805707931518,216.08857838249207,216.11909968566894,216.1496209888458,216.1801422920227,216.21066359519958,216.24118489837647,216.27170620155334,216.3022275047302,216.3327488079071,216.36327011108398,216.39379141426085,216.42431271743774,216.4548340206146,216.4853553237915,216.51587662696838,216.54639793014525,216.57691923332214,216.607440536499,216.6379618396759,216.66848314285278,216.69900444602965,216.72952574920654,216.7600470523834,216.7905683555603,216.82108965873718,216.85161096191405,216.88213226509095,216.9126535682678,216.9431748714447,216.97369617462158,217.00421747779845,217.03473878097535,217.06526008415221,217.0957813873291,217.12630269050598,217.15682399368285,217.18734529685975,217.21786660003661,217.24838790321348,217.27890920639038,217.30943050956725,217.33995181274415,217.37047311592102,217.40099441909788,217.43151572227478,217.46203702545165,217.49255832862855,217.52307963180542,217.55360093498228,217.58412223815918,217.61464354133605,217.64516484451295,217.67568614768982,217.70620745086669,217.73672875404358,217.76725005722045,217.79777136039735,217.82829266357422,217.8588139667511,217.88933526992798,217.91985657310485,217.95037787628172,217.98089917945862,218.0114204826355,218.04194178581238,218.07246308898925,218.10298439216612,218.13350569534302,218.1640269985199,218.19454830169678,218.22506960487365,218.25559090805052,218.28611221122742,218.3166335144043,218.34715481758118,218.37767612075805,218.40819742393492,218.43871872711182,218.4692400302887,218.49976133346559,218.53028263664245,218.56080393981932,218.59132524299622,218.6218465461731,218.65236784934996,218.68288915252685,218.71341045570372,218.74393175888062,218.7744530620575,218.80497436523436,218.83549566841126,218.86601697158812,218.89653827476502,218.9270595779419,218.95758088111876,218.98810218429566,219.01862348747252,219.04914479064942,219.0796660938263,219.11018739700316,219.14070870018006,219.17123000335692,219.20175130653382,219.2322726097107,219.26279391288756,219.29331521606446,219.32383651924133,219.35435782241822,219.3848791255951,219.41540042877196,219.44592173194886,219.47644303512573,219.5069643383026,219.5374856414795,219.56800694465636,219.59852824783326,219.62904955101013,219.659570854187,219.6900921573639,219.72061346054076,219.75113476371766,219.78165606689453,219.8121773700714,219.8426986732483,219.87321997642516,219.90374127960206,219.93426258277893,219.9647838859558,219.9953051891327,220.02582649230956,220.05634779548646,220.08686909866333,220.1173904018402,220.1479117050171,220.17843300819396,220.20895431137083,220.23947561454773,220.2699969177246,220.3005182209015,220.33103952407836,220.36156082725523,220.39208213043213,220.422603433609,220.4531247367859,220.48364603996276,220.51416734313963,220.54468864631653,220.5752099494934,220.6057312526703,220.63625255584716,220.66677385902403,220.69729516220093,220.7278164653778,220.7583377685547,220.78885907173157,220.81938037490843,220.84990167808533,220.8804229812622,220.91094428443907,220.94146558761597,220.97198689079283,221.00250819396973,221.0330294971466,221.06355080032347,221.09407210350037,221.12459340667723,221.15511470985413,221.185636013031,221.21615731620787,221.24667861938477,221.27719992256164,221.30772122573853,221.3382425289154,221.36876383209227,221.39928513526917,221.42980643844604,221.46032774162293,221.4908490447998,221.52137034797667,221.55189165115357,221.58241295433044,221.61293425750733,221.6434555606842,221.67397686386107,221.70449816703797,221.73501947021484,221.7655407733917,221.7960620765686,221.82658337974547,221.85710468292237,221.88762598609924,221.9181472892761,221.948668592453,221.97918989562987,222.00971119880677,222.04023250198364,222.0707538051605,222.1012751083374,222.13179641151427,222.16231771469117,222.19283901786804,222.2233603210449,222.2538816242218,222.28440292739867,222.31492423057557,222.34544553375244,222.3759668369293,222.4064881401062,222.43700944328307,222.46753074645994,222.49805204963684,222.5285733528137,222.5590946559906,222.58961595916747,222.62013726234434,222.65065856552124,222.6811798686981,222.711701171875,222.74222247505188,222.77274377822874,222.80326508140564,222.8337863845825,222.8643076877594,222.89482899093628,222.92535029411314,222.95587159729004,222.9863929004669,223.0169142036438,223.04743550682068,223.07795680999754,223.10847811317444,223.1389994163513,223.1695207195282,223.20004202270508,223.23056332588195,223.26108462905884,223.2916059322357,223.32212723541258,223.35264853858948,223.38316984176635,223.41369114494324,223.4442124481201,223.47473375129698,223.50525505447388,223.53577635765075,223.56629766082764,223.5968189640045,223.62734026718138,223.65786157035828,223.68838287353515,223.71890417671204,223.7494254798889,223.77994678306578,223.81046808624268,223.84098938941955,223.87151069259644,223.9020319957733,223.93255329895018,223.96307460212708,223.99359590530395,224.02411720848082,224.0546385116577,224.08515981483458,224.11568111801148,224.14620242118835,224.17672372436522,224.20724502754211,224.23776633071898,224.26828763389588,224.29880893707275,224.32933024024962,224.35985154342652,224.39037284660338,224.42089414978028,224.45141545295715,224.48193675613402,224.51245805931092,224.54297936248778,224.57350066566468,224.60402196884155,224.63454327201842,224.66506457519532,224.69558587837219,224.72610718154905,224.75662848472595,224.78714978790282,224.81767109107972,224.84819239425659,224.87871369743345,224.90923500061035,224.93975630378722,224.97027760696412,225.000798910141,225.03132021331785,225.06184151649475,225.09236281967162,225.12288412284852,225.1534054260254,225.18392672920226,225.21444803237915,225.24496933555602,225.27549063873292,225.3060119419098,225.33653324508666,225.36705454826355,225.39757585144042,225.42809715461732,225.4586184577942,225.48913976097106,225.51966106414795,225.55018236732482,225.5807036705017,225.6112249736786,225.64174627685546,225.67226758003235,225.70278888320922,225.7333101863861,225.763831489563,225.79435279273986,225.82487409591675,225.85539539909362,225.8859167022705,225.9164380054474,225.94695930862426,225.97748061180116,226.00800191497802,226.0385232181549,226.0690445213318,226.09956582450866,226.13008712768556,226.16060843086242,226.1911297340393,226.2216510372162,226.25217234039306,226.28269364356993,226.31321494674683,226.3437362499237,226.3742575531006,226.40477885627746,226.43530015945433,226.46582146263123,226.4963427658081,226.526864068985,226.55738537216186,226.58790667533873,226.61842797851563,226.6489492816925,226.6794705848694,226.70999188804626,226.74051319122313,226.77103449440003,226.8015557975769,226.8320771007538,226.86259840393066,226.89311970710753,226.92364101028443,226.9541623134613,226.9846836166382,227.01520491981506,227.04572622299193,227.07624752616883,227.1067688293457,227.13729013252257,227.16781143569946,227.19833273887633,227.22885404205323,227.2593753452301,227.28989664840697,227.32041795158386,227.35093925476073,227.38146055793763,227.4119818611145,227.44250316429137,227.47302446746826,227.50354577064513,227.53406707382203,227.5645883769989,227.59510968017577,227.62563098335266,227.65615228652953,227.68667358970643,227.7171948928833,227.74771619606017,227.77823749923706,227.80875880241393,227.8392801055908,227.8698014087677,227.90032271194457,227.93084401512147,227.96136531829833,227.9918866214752,228.0224079246521,228.05292922782897,228.08345053100587,228.11397183418273,228.1444931373596,228.1750144405365,228.20553574371337,228.23605704689027,228.26657835006714,228.297099653244,228.3276209564209,228.35814225959777,228.38866356277467,228.41918486595154,228.4497061691284,228.4802274723053,228.51074877548217,228.54127007865904,228.57179138183594,228.6023126850128,228.6328339881897,228.66335529136657,228.69387659454344,228.72439789772034,228.7549192008972,228.7854405040741,228.81596180725097,228.84648311042784,228.87700441360474,228.9075257167816,228.9380470199585,228.96856832313537,228.99908962631224,229.02961092948914,229.060132232666,229.0906535358429,229.12117483901977,229.15169614219664,229.18221744537354,229.2127387485504,229.2432600517273,229.27378135490417,229.30430265808104,229.33482396125794,229.3653452644348,229.39586656761168,229.42638787078857,229.45690917396544,229.48743047714234,229.5179517803192,229.54847308349608,229.57899438667297,229.60951568984984,229.64003699302674,229.6705582962036,229.70107959938048,229.73160090255737,229.76212220573424,229.79264350891114,229.823164812088,229.85368611526488,229.88420741844178,229.91472872161864,229.94525002479554,229.9757713279724,230.00629263114928,230.03681393432618,230.06733523750304,230.0978565406799,230.1283778438568,230.15889914703368,230.18942045021058,230.21994175338745,230.2504630565643,230.2809843597412,230.31150566291808,230.34202696609498,230.37254826927185,230.40306957244871,230.4335908756256,230.46411217880248,230.49463348197938,230.52515478515625,230.55567608833312,230.58619739151,230.61671869468688,230.64723999786378,230.67776130104065,230.70828260421752,230.7388039073944,230.76932521057128,230.79984651374815,230.83036781692505,230.86088912010192,230.8914104232788,230.92193172645568,230.95245302963255,230.98297433280945,231.01349563598632,231.0440169391632,231.07453824234008,231.10505954551695,231.13558084869385,231.16610215187072,231.19662345504761,231.22714475822448,231.25766606140135,231.28818736457825,231.31870866775512,231.34922997093202,231.37975127410888,231.41027257728575,231.44079388046265,231.47131518363952,231.50183648681642,231.53235778999328,231.56287909317015,231.59340039634705,231.62392169952392,231.6544430027008,231.68496430587768,231.71548560905455,231.74600691223145,231.77652821540832,231.8070495185852,231.83757082176209,231.86809212493895,231.89861342811585,231.92913473129272,231.9596560344696,231.9901773376465,232.02069864082335,232.05121994400025,232.08174124717712,232.112262550354,232.1427838535309,232.17330515670776,232.20382645988465,232.23434776306152,232.2648690662384,232.2953903694153,232.32591167259216,232.35643297576902,232.38695427894592,232.4174755821228,232.4479968852997,232.47851818847656,232.50903949165343,232.53956079483032,232.5700820980072,232.6006034011841,232.63112470436096,232.66164600753783,232.69216731071472,232.7226886138916,232.7532099170685,232.78373122024536,232.81425252342223,232.84477382659912,232.875295129776,232.9058164329529,232.93633773612976,232.96685903930663,232.99738034248352,233.0279016456604,233.0584229488373,233.08894425201416,233.11946555519103,233.14998685836792,233.1805081615448,233.21102946472166,233.24155076789856,233.27207207107543,233.30259337425233,233.3331146774292,233.36363598060606,233.39415728378296,233.42467858695983,233.45519989013673,233.4857211933136,233.51624249649046,233.54676379966736,233.57728510284423,233.60780640602113,233.638327709198,233.66884901237486,233.69937031555176,233.72989161872863,233.76041292190553,233.7909342250824,233.82145552825926,233.85197683143616,233.88249813461303,233.9130194377899,233.9435407409668,233.97406204414366,234.00458334732056,234.03510465049743,234.0656259536743,234.0961472568512,234.12666856002807,234.15718986320496,234.18771116638183,234.2182324695587,234.2487537727356,234.27927507591247,234.30979637908936,234.34031768226623,234.3708389854431,234.40136028862,234.43188159179687,234.46240289497376,234.49292419815063,234.5234455013275,234.5539668045044,234.58448810768127,234.61500941085814,234.64553071403503,234.6760520172119,234.7065733203888,234.73709462356567,234.76761592674254,234.79813722991943,234.8286585330963,234.8591798362732,234.88970113945007,234.92022244262694,234.95074374580383,234.9812650489807,235.0117863521576,235.04230765533447,235.07282895851134,235.10335026168823,235.1338715648651,235.164392868042,235.19491417121887,235.22543547439574,235.25595677757264,235.2864780807495,235.3169993839264,235.34752068710327,235.37804199028014,235.40856329345704,235.4390845966339,235.46960589981077,235.50012720298767,235.53064850616454,235.56116980934144,235.5916911125183,235.62221241569517,235.65273371887207,235.68325502204894,235.71377632522584,235.7442976284027,235.77481893157957,235.80534023475647,235.83586153793334,235.86638284111024,235.8969041442871,235.92742544746397,235.95794675064087,235.98846805381774,236.01898935699464,236.0495106601715,236.08003196334838,236.11055326652527,236.14107456970214,236.171595872879,236.2021171760559,236.23263847923278,236.26315978240967,236.29368108558654,236.3242023887634,236.3547236919403,236.38524499511718,236.41576629829407,236.44628760147094,236.4768089046478,236.5073302078247,236.53785151100158,236.56837281417847,236.59889411735534,236.6294154205322,236.6599367237091,236.69045802688598,236.72097933006287,236.75150063323974,236.7820219364166,236.8125432395935,236.84306454277038,236.87358584594725,236.90410714912414,236.934628452301,236.9651497554779,236.99567105865478,237.02619236183165,237.05671366500854,237.0872349681854,237.1177562713623,237.14827757453918,237.17879887771605,237.20932018089295,237.2398414840698,237.2703627872467,237.30088409042358,237.33140539360045,237.36192669677735,237.39244799995421,237.4229693031311,237.45349060630798,237.48401190948485,237.51453321266175,237.54505451583861,237.5755758190155,237.60609712219238,237.63661842536925,237.66713972854615,237.69766103172302,237.72818233489988,237.75870363807678,237.78922494125365,237.81974624443055,237.85026754760742,237.88078885078428,237.91131015396118,237.94183145713805,237.97235276031495,238.00287406349182,238.03339536666869,238.06391666984558,238.09443797302245,238.12495927619935,238.15548057937622,238.1860018825531,238.21652318572998,238.24704448890685,238.27756579208375,238.30808709526062,238.3386083984375,238.36912970161438,238.39965100479125,238.43017230796812,238.46069361114502,238.4912149143219,238.52173621749878,238.55225752067565,238.58277882385252,238.61330012702942,238.6438214302063,238.67434273338318,238.70486403656005,238.73538533973692,238.76590664291382,238.7964279460907,238.82694924926759,238.85747055244445,238.88799185562132,238.91851315879822,238.9490344619751,238.97955576515199,239.01007706832885,239.04059837150572,239.07111967468262,239.1016409778595,239.1321622810364,239.16268358421326,239.19320488739012,239.22372619056702,239.2542474937439,239.28476879692076,239.31529010009766,239.34581140327452,239.37633270645142,239.4068540096283,239.43737531280516,239.46789661598206,239.49841791915892,239.52893922233582,239.5594605255127,239.58998182868956,239.62050313186646,239.65102443504333,239.68154573822022,239.7120670413971,239.74258834457396,239.77310964775086,239.80363095092773,239.83415225410462,239.8646735572815,239.89519486045836,239.92571616363526,239.95623746681213,239.986758769989,240.0172800731659,240.04780137634276,240.07832267951966,240.10884398269653,240.1393652858734,240.1698865890503,240.20040789222716,240.23092919540406,240.26145049858093,240.2919718017578,240.3224931049347,240.35301440811156,240.38353571128846,240.41405701446533,240.4445783176422,240.4750996208191,240.50562092399596,240.53614222717286,240.56666353034973,240.5971848335266,240.6277061367035,240.65822743988036,240.68874874305723,240.71927004623413,240.749791349411,240.7803126525879,240.81083395576476,240.84135525894163,240.87187656211853,240.9023978652954,240.9329191684723,240.96344047164916,240.99396177482603,241.02448307800293,241.0550043811798,241.0855256843567,241.11604698753357,241.14656829071043,241.17708959388733,241.2076108970642,241.2381322002411,241.26865350341797,241.29917480659483,241.32969610977173,241.3602174129486,241.3907387161255,241.42126001930237,241.45178132247923,241.48230262565613,241.512823928833,241.54334523200987,241.57386653518677,241.60438783836364,241.63490914154053,241.6654304447174,241.69595174789427,241.72647305107117,241.75699435424804,241.78751565742493,241.8180369606018,241.84855826377867,241.87907956695557,241.90960087013244,241.94012217330933,241.9706434764862,242.00116477966307,242.03168608283997,242.06220738601684,242.09272868919373,242.1232499923706,242.15377129554747,242.18429259872437,242.21481390190124,242.2453352050781,242.275856508255,242.30637781143187,242.33689911460877,242.36742041778564,242.3979417209625,242.4284630241394,242.45898432731627,242.48950563049317,242.52002693367004,242.5505482368469,242.5810695400238,242.61159084320067,242.64211214637757,242.67263344955444,242.7031547527313,242.7336760559082,242.76419735908507,242.79471866226197,242.82523996543884,242.8557612686157,242.8862825717926,242.91680387496947,242.94732517814634,242.97784648132324,243.0083677845001,243.038889087677,243.06941039085388,243.09993169403074,243.13045299720764,243.1609743003845,243.1914956035614,243.22201690673828,243.25253820991514,243.28305951309204,243.3135808162689,243.3441021194458,243.37462342262268,243.40514472579954,243.43566602897644,243.4661873321533,243.4967086353302,243.52722993850708,243.55775124168395,243.58827254486084,243.6187938480377,243.6493151512146,243.67983645439148,243.71035775756835,243.74087906074524,243.7714003639221,243.80192166709898,243.83244297027588,243.86296427345275,243.89348557662964,243.9240068798065,243.95452818298338,243.98504948616028,244.01557078933715,244.04609209251404,244.0766133956909,244.10713469886778,244.13765600204468,244.16817730522155,244.19869860839844,244.2292199115753,244.25974121475218,244.29026251792908,244.32078382110595,244.35130512428285,244.3818264274597,244.41234773063658,244.44286903381348,244.47339033699035,244.50391164016722,244.53443294334411,244.56495424652098,244.59547554969788,244.62599685287475,244.65651815605162,244.68703945922852,244.71756076240538,244.74808206558228,244.77860336875915,244.80912467193602,244.83964597511292,244.87016727828978,244.90068858146668,244.93120988464355,244.96173118782042,244.99225249099732,245.02277379417419,245.05329509735108,245.08381640052795,245.11433770370482,245.14485900688172,245.17538031005859,245.20590161323548,245.23642291641235,245.26694421958922,245.29746552276612,245.327986825943,245.35850812911985,245.38902943229675,245.41955073547362,245.45007203865052,245.4805933418274,245.51111464500426,245.54163594818115,245.57215725135802,245.60267855453492,245.6331998577118,245.66372116088866,245.69424246406555,245.72476376724242,245.75528507041932,245.7858063735962,245.81632767677306,245.84684897994995,245.87737028312682,245.90789158630372,245.9384128894806,245.96893419265746,245.99945549583435,246.02997679901122,246.0604981021881,246.091019405365,246.12154070854186,246.15206201171875,246.18258331489562,246.2131046180725,246.2436259212494,246.27414722442626,246.30466852760316,246.33518983078002,246.3657111339569,246.3962324371338,246.42675374031066,246.45727504348756,246.48779634666442,246.5183176498413,246.5488389530182,246.57936025619506,246.60988155937196,246.64040286254883,246.6709241657257,246.7014454689026,246.73196677207946,246.76248807525633,246.79300937843323,246.8235306816101,246.854051984787,246.88457328796386,246.91509459114073,246.94561589431763,246.9761371974945,247.0066585006714,247.03717980384826,247.06770110702513,247.09822241020203,247.1287437133789,247.1592650165558,247.18978631973266,247.22030762290953,247.25082892608643,247.2813502292633,247.3118715324402,247.34239283561706,247.37291413879393,247.40343544197083,247.4339567451477,247.4644780483246,247.49499935150146,247.52552065467833,247.55604195785523,247.5865632610321,247.61708456420897,247.64760586738586,247.67812717056273,247.70864847373963,247.7391697769165,247.76969108009337,247.80021238327026,247.83073368644713,247.86125498962403,247.8917762928009,247.92229759597777,247.95281889915466,247.98334020233153,248.01386150550843,248.0443828086853,248.07490411186217,248.10542541503906,248.13594671821593,248.16646802139283,248.1969893245697,248.22751062774657,248.25803193092347,248.28855323410033,248.3190745372772,248.3495958404541,248.38011714363097,248.41063844680787,248.44115974998473,248.4716810531616,248.5022023563385,248.53272365951537,248.56324496269227,248.59376626586914,248.624287569046,248.6548088722229,248.68533017539977,248.71585147857667,248.74637278175354,248.7768940849304,248.8074153881073,248.83793669128417,248.86845799446107,248.89897929763794,248.9295006008148,248.9600219039917,248.99054320716857,249.02106451034547,249.05158581352234,249.0821071166992,249.1126284198761,249.14314972305297,249.17367102622984,249.20419232940674,249.2347136325836,249.2652349357605,249.29575623893737,249.32627754211424,249.35679884529114,249.387320148468,249.4178414516449,249.44836275482177,249.47888405799864,249.50940536117554,249.5399266643524,249.5704479675293,249.60096927070617,249.63149057388304,249.66201187705994,249.6925331802368,249.7230544834137,249.75357578659057,249.78409708976744,249.81461839294434,249.8451396961212,249.87566099929808,249.90618230247497,249.93670360565184,249.96722490882874,249.9977462120056,250.02826751518248,250.05878881835937,250.08931012153624,250.11983142471314,250.15035272789,250.18087403106688,250.21139533424378,250.24191663742064,250.27243794059754,250.3029592437744,250.33348054695128,250.36400185012818,250.39452315330504,250.42504445648194,250.4555657596588,250.48608706283568,250.51660836601258,250.54712966918945,250.5776509723663,250.6081722755432,250.63869357872008,250.66921488189698,250.69973618507385,250.73025748825071,250.7607787914276,250.79130009460448,250.82182139778138,250.85234270095825,250.88286400413512,250.913385307312,250.94390661048888,250.97442791366578,251.00494921684265,251.03547052001952,251.0659918231964,251.09651312637328,251.12703442955018,251.15755573272705,251.18807703590392,251.2185983390808,251.24911964225768,251.27964094543458,251.31016224861145,251.34068355178832,251.3712048549652,251.40172615814208,251.43224746131895,251.46276876449585,251.49329006767272,251.52381137084961,251.55433267402648,251.58485397720335,251.61537528038025,251.64589658355712,251.67641788673401,251.70693918991088,251.73746049308775,251.76798179626465,251.79850309944152,251.82902440261842,251.85954570579528,251.89006700897215,251.92058831214905,251.95110961532592,251.98163091850282,252.01215222167968,252.04267352485655,252.07319482803345,252.10371613121032,252.1342374343872,252.16475873756409,252.19528004074095,252.22580134391785,252.25632264709472,252.2868439502716,252.3173652534485,252.34788655662535,252.37840785980225,252.40892916297912,252.439450466156,252.4699717693329,252.50049307250976,252.53101437568665,252.56153567886352,252.5920569820404,252.6225782852173,252.65309958839416,252.68362089157105,252.71414219474792,252.7446634979248,252.7751848011017,252.80570610427856,252.83622740745543,252.86674871063232,252.8972700138092,252.9277913169861,252.95831262016296,252.98883392333983,253.01935522651672,253.0498765296936,253.0803978328705,253.11091913604736,253.14144043922423,253.17196174240112,253.202483045578,253.2330043487549,253.26352565193176,253.29404695510863,253.32456825828552,253.3550895614624,253.3856108646393,253.41613216781616,253.44665347099303,253.47717477416992,253.5076960773468,253.5382173805237,253.56873868370056,253.59925998687743,253.62978129005432,253.6603025932312,253.69082389640806,253.72134519958496,253.75186650276183,253.78238780593873,253.8129091091156,253.84343041229246,253.87395171546936,253.90447301864623,253.93499432182313,253.93499432182313]}], {"xaxis":{"rangeslider":{"visible":false},"gridcolor":"white","rangeselector":{"buttons":[{"step":10,"stepmode":"backward","label":"1m","count":1},{"step":"all"}]},"title":{"text":""},"range":[],"zerolinecolor":"white","ticksuffix":" ms"},"modebar":{"color":"gray","activecolor":"rgb(229,236,246)","yanchor":"bottom","xanchor":"right","y":1,"bgcolor":"rgba(0,0,0,0)","orientation":"h","x":0},"hovermode":"closest","paper_bgcolor":"rgba(0,0,0,0)","template":{"layout":{"coloraxis":{"colorbar":{"ticks":"","outlinewidth":0}},"xaxis":{"gridcolor":"white","zerolinewidth":2,"title":{"standoff":15},"ticks":"","zerolinecolor":"white","automargin":true,"linecolor":"white"},"hovermode":"closest","paper_bgcolor":"white","geo":{"showlakes":true,"showland":true,"landcolor":"#E5ECF6","bgcolor":"white","subunitcolor":"white","lakecolor":"white"},"colorscale":{"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]},"yaxis":{"gridcolor":"white","zerolinewidth":2,"title":{"standoff":15},"ticks":"","zerolinecolor":"white","automargin":true,"linecolor":"white"},"shapedefaults":{"line":{"color":"#2a3f5f"}},"hoverlabel":{"align":"left"},"mapbox":{"style":"light"},"polar":{"angularaxis":{"gridcolor":"white","ticks":"","linecolor":"white"},"bgcolor":"#E5ECF6","radialaxis":{"gridcolor":"white","ticks":"","linecolor":"white"}},"autotypenumbers":"strict","font":{"color":"#2a3f5f"},"ternary":{"baxis":{"gridcolor":"white","ticks":"","linecolor":"white"},"bgcolor":"#E5ECF6","caxis":{"gridcolor":"white","ticks":"","linecolor":"white"},"aaxis":{"gridcolor":"white","ticks":"","linecolor":"white"}},"annotationdefaults":{"arrowhead":0,"arrowwidth":1,"arrowcolor":"#2a3f5f"},"plot_bgcolor":"#E5ECF6","title":{"x":0.05},"scene":{"xaxis":{"gridcolor":"white","gridwidth":2,"backgroundcolor":"#E5ECF6","ticks":"","showbackground":true,"zerolinecolor":"white","linecolor":"white"},"zaxis":{"gridcolor":"white","gridwidth":2,"backgroundcolor":"#E5ECF6","ticks":"","showbackground":true,"zerolinecolor":"white","linecolor":"white"},"yaxis":{"gridcolor":"white","gridwidth":2,"backgroundcolor":"#E5ECF6","ticks":"","showbackground":true,"zerolinecolor":"white","linecolor":"white"}},"colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"]},"data":{"barpolar":[{"type":"barpolar","marker":{"line":{"color":"#E5ECF6","width":0.5}}}],"carpet":[{"aaxis":{"gridcolor":"white","endlinecolor":"#2a3f5f","minorgridcolor":"white","startlinecolor":"#2a3f5f","linecolor":"white"},"type":"carpet","baxis":{"gridcolor":"white","endlinecolor":"#2a3f5f","minorgridcolor":"white","startlinecolor":"#2a3f5f","linecolor":"white"}}],"scatterpolar":[{"type":"scatterpolar","marker":{"colorbar":{"ticks":"","outlinewidth":0}}}],"parcoords":[{"line":{"colorbar":{"ticks":"","outlinewidth":0}},"type":"parcoords"}],"scatter":[{"type":"scatter","marker":{"colorbar":{"ticks":"","outlinewidth":0}}}],"histogram2dcontour":[{"colorbar":{"ticks":"","outlinewidth":0},"type":"histogram2dcontour","colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"contour":[{"colorbar":{"ticks":"","outlinewidth":0},"type":"contour","colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"scattercarpet":[{"type":"scattercarpet","marker":{"colorbar":{"ticks":"","outlinewidth":0}}}],"mesh3d":[{"colorbar":{"ticks":"","outlinewidth":0},"type":"mesh3d"}],"surface":[{"colorbar":{"ticks":"","outlinewidth":0},"type":"surface","colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"scattermapbox":[{"type":"scattermapbox","marker":{"colorbar":{"ticks":"","outlinewidth":0}}}],"scattergeo":[{"type":"scattergeo","marker":{"colorbar":{"ticks":"","outlinewidth":0}}}],"histogram":[{"type":"histogram","marker":{"colorbar":{"ticks":"","outlinewidth":0}}}],"pie":[{"type":"pie","automargin":true}],"choropleth":[{"colorbar":{"ticks":"","outlinewidth":0},"type":"choropleth"}],"heatmapgl":[{"colorbar":{"ticks":"","outlinewidth":0},"type":"heatmapgl","colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"bar":[{"type":"bar","error_y":{"color":"#2a3f5f"},"error_x":{"color":"#2a3f5f"},"marker":{"line":{"color":"#E5ECF6","width":0.5}}}],"heatmap":[{"colorbar":{"ticks":"","outlinewidth":0},"type":"heatmap","colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"contourcarpet":[{"colorbar":{"ticks":"","outlinewidth":0},"type":"contourcarpet"}],"table":[{"type":"table","header":{"line":{"color":"white"},"fill":{"color":"#C8D4E3"}},"cells":{"line":{"color":"white"},"fill":{"color":"#EBF0F8"}}}],"scatter3d":[{"line":{"colorbar":{"ticks":"","outlinewidth":0}},"type":"scatter3d","marker":{"colorbar":{"ticks":"","outlinewidth":0}}}],"scattergl":[{"type":"scattergl","marker":{"colorbar":{"ticks":"","outlinewidth":0}}}],"histogram2d":[{"colorbar":{"ticks":"","outlinewidth":0},"type":"histogram2d","colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"scatterternary":[{"type":"scatterternary","marker":{"colorbar":{"ticks":"","outlinewidth":0}}}],"scatterpolargl":[{"type":"scatterpolargl","marker":{"colorbar":{"ticks":"","outlinewidth":0}}}]}},"height":300,"legend":{"yanchor":"bottom","xanchor":"left","y":1,"orientation":"h","x":0},"yaxis":{"gridcolor":"white","zerolinecolor":"white","fixedrange":false},"shapes":[],"font":{"color":"gray"},"annotations":[],"plot_bgcolor":"rgb(229,236,246)","margin":{"l":0,"b":0,"r":0,"t":0}}, {"modeBarButtonsToRemove":["zoom","autoScale","resetScale2d","pan","tableRotation","resetCameraLastSave","zoomIn","zoomOut"],"displaylogo":false,"toImageButtonOptions":{"format":"svg"},"editable":false,"responsive":true,"staticPlot":false,"scrollZoom":true}, diff --git a/dev/assets/examples/1-signal2.html b/dev/assets/examples/1-signal2.html index 41a44dccf..70af795ec 100644 --- a/dev/assets/examples/1-signal2.html +++ b/dev/assets/examples/1-signal2.html @@ -9,7 +9,7 @@
@@ -17,9 +17,9 @@ window.PLOTLYENV = window.PLOTLYENV || {} - if (document.getElementById('1e9bfc84-395c-400d-9da2-1687a11873e5')) { + if (document.getElementById('ed968d4f-2c5b-4f5c-8443-ddb220d8f5e2')) { Plotly.newPlot( - '1e9bfc84-395c-400d-9da2-1687a11873e5', + 'ed968d4f-2c5b-4f5c-8443-ddb220d8f5e2', [{"y":[0.9401082,0.9398212,0.9395344,0.9392478,0.93896115,0.93867457,0.9383882,0.9381018,0.9378155,0.93752927,0.9372432,0.9369571,0.9366713,0.9363855,0.9360996,0.935814,0.9355284,0.93524295,0.93495756,0.9346723,0.93438697,0.93410176,0.9338168,0.9335319,0.9332469,0.93296206,0.9326775,0.93239284,0.9321082,0.9318238,0.9315394,0.93125516,0.93097097,0.9306869,0.9304028,0.93011904,0.92983514,0.92955136,0.9292677,0.9289842,0.92870057,0.92841715,0.92813396,0.92785066,0.9275675,0.9272844,0.9270014,0.9267186,0.92643577,0.92615306,0.92587036,0.9255879,0.9253054,0.9250231,0.92474073,0.92445856,0.92417645,0.92389446,0.9236124,0.9233306,0.9230489,0.9227671,0.9224856,0.92220414,0.9219226,0.9216413,0.9213601,0.92107886,0.92079777,0.9205168,0.9202358,0.919955,0.9196743,0.9193937,0.91911304,0.9188326,0.9185522,0.9182719,0.9179917,0.91771156,0.91743153,0.9171515,0.9168716,0.9165918,0.9163121,0.9160325,0.91575295,0.9154736,0.91519415,0.9149148,0.91463566,0.9143564,0.9140775,0.9137985,0.9135197,0.9132409,0.91296214,0.91268355,0.9124051,0.9121266,0.91184825,0.91157,0.9112918,0.9110138,0.9107358,0.91045785,0.9101799,0.90990216,0.9096246,0.90934694,0.9090695,0.9087921,0.9085147,0.9082375,0.9079603,0.90768325,0.90740615,0.9071294,0.90685254,0.9065758,0.9062991,0.9060225,0.905746,0.9054697,0.90519327,0.9049171,0.904641,0.9043649,0.90408885,0.903813,0.9035372,0.90326136,0.90298575,0.9027102,0.90243477,0.9021594,0.90188414,0.90160877,0.9013337,0.9010586,0.90078366,0.90050876,0.900234,0.8999592,0.8996846,0.89941,0.8991356,0.8988612,0.8985869,0.8983126,0.89803857,0.8977645,0.8974905,0.8972166,0.89694285,0.89666915,0.8963955,0.8961219,0.89584845,0.8955751,0.89530176,0.89502865,0.8947554,0.89448243,0.8942094,0.8939366,0.8936638,0.893391,0.8931183,0.89284587,0.89257336,0.892301,0.8920287,0.8917565,0.8914844,0.89121234,0.89094037,0.89066845,0.89039665,0.8901249,0.8898533,0.8895818,0.8893103,0.88903886,0.8887676,0.88849634,0.8882252,0.8879541,0.8876832,0.88741225,0.8871415,0.8868708,0.88660014,0.88632953,0.88605905,0.8857887,0.8855184,0.8852482,0.88497794,0.8847079,0.884438,0.884168,0.88389826,0.8836285,0.88335884,0.88308924,0.8828198,0.88255036,0.882281,0.8820118,0.8817427,0.88147354,0.88120455,0.8809356,0.88066685,0.880398,0.8801294,0.8798609,0.8795923,0.8793239,0.8790555,0.8787872,0.8785191,0.878251,0.87798303,0.87771505,0.87744725,0.87717944,0.8769118,0.87664413,0.8763766,0.8761091,0.87584186,0.8755745,0.8753074,0.8750402,0.8747732,0.87450624,0.8742394,0.87397254,0.87370586,0.8734393,0.87317276,0.87290627,0.87263983,0.8723736,0.8721073,0.8718412,0.8715752,0.8713093,0.87104326,0.8707774,0.8705117,0.8702461,0.8699806,0.86971503,0.8694496,0.8691842,0.86891913,0.8686539,0.86838883,0.86812377,0.8678589,0.86759406,0.86732924,0.8670646,0.86679995,0.8665355,0.8662711,0.86600673,0.8657424,0.8654782,0.86521417,0.8649501,0.86468613,0.86442226,0.86415845,0.86389476,0.8636311,0.8633675,0.8631041,0.8628407,0.86257744,0.86231416,0.86205095,0.861788,0.86152494,0.861262,0.8609992,0.8607364,0.8604738,0.8602112,0.85994864,0.8596863,0.85942394,0.8591617,0.8588995,0.85863733,0.8583754,0.8581134,0.85785156,0.8575898,0.85732806,0.8570664,0.85680485,0.85654336,0.85628194,0.8560207,0.8557595,0.8554983,0.8552373,0.8549763,0.85471535,0.8544545,0.85419375,0.853933,0.85367256,0.8534119,0.8531515,0.8528912,0.852631,0.8523708,0.8521106,0.85185057,0.85159063,0.85133076,0.85107094,0.8508112,0.85055166,0.85029215,0.8500325,0.84977317,0.8495138,0.8492546,0.8489954,0.8487364,0.8484773,0.8482184,0.8479596,0.8477007,0.8474421,0.84718347,0.84692496,0.8466665,0.8464081,0.8461498,0.8458916,0.8456335,0.84537536,0.8451174,0.8448595,0.84460163,0.8443439,0.8440862,0.8438287,0.8435711,0.84331375,0.84305644,0.8427991,0.8425419,0.8422849,0.8420278,0.8417708,0.84151393,0.8412571,0.84100044,0.8407438,0.8404872,0.84023076,0.8399742,0.8397179,0.8394617,0.8392055,0.83894944,0.83869344,0.8384375,0.83818156,0.8379258,0.8376701,0.83741444,0.8371589,0.8369035,0.83664805,0.83639276,0.83613753,0.83588237,0.8356273,0.83537227,0.8351173,0.8348625,0.8346077,0.834353,0.83409834,0.8338439,0.8335894,0.83333504,0.83308077,0.8328265,0.83257234,0.83231825,0.83206433,0.8318103,0.83155644,0.8313027,0.831049,0.83079547,0.8305419,0.83028847,0.8300351,0.8297817,0.8295286,0.8292754,0.8290223,0.8287694,0.8285164,0.8282637,0.82801086,0.82775813,0.8275056,0.82725304,0.8270007,0.82674825,0.8264959,0.82624364,0.8259916,0.8257395,0.82548743,0.8252356,0.8249838,0.824732,0.8244803,0.82422876,0.8239772,0.82372576,0.82347435,0.8232231,0.8229719,0.82272077,0.8224696,0.82221866,0.8219678,0.82171685,0.82146615,0.82121545,0.8209648,0.82071424,0.8204639,0.8202135,0.8199631,0.81971294,0.8194628,0.8192128,0.81896275,0.8187128,0.8184629,0.8182132,0.81796354,0.81771386,0.81746435,0.8172149,0.8169656,0.81671625,0.816467,0.81621784,0.8159687,0.8157197,0.81547076,0.8152219,0.8149732,0.81472445,0.81447583,0.8142273,0.8139788,0.8137304,0.8134821,0.81323385,0.81298566,0.81273764,0.81248957,0.81224155,0.8119937,0.8117459,0.8114982,0.8112506,0.811003,0.81075555,0.81050813,0.8102608,0.81001353,0.80976635,0.80951923,0.80927217,0.8090252,0.80877835,0.8085315,0.80828476,0.8080381,0.8077916,0.807545,0.80729854,0.8070522,0.8068059,0.80655974,0.8063136,0.8060675,0.80582154,0.80557567,0.80532974,0.8050841,0.80483836,0.8045927,0.8043472,0.80410177,0.8038564,0.803611,0.8033658,0.80312073,0.8028755,0.80263054,0.8023856,0.8021408,0.801896,0.80165124,0.8014066,0.8011621,0.80091757,0.8006731,0.80042887,0.80018455,0.7999404,0.79969627,0.7994522,0.7992082,0.7989643,0.7987206,0.79847676,0.7982331,0.79798955,0.79774606,0.7975026,0.7972592,0.79701585,0.79677266,0.79652953,0.7962864,0.79604346,0.7958005,0.7955577,0.79531485,0.7950722,0.79482955,0.794587,0.79434454,0.7941022,0.79385984,0.79361755,0.7933754,0.7931333,0.7928912,0.79264927,0.79240733,0.7921655,0.79192376,0.7916822,0.7914405,0.7911991,0.79095757,0.7907162,0.7904749,0.7902337,0.7899925,0.7897514,0.78951037,0.7892695,0.7890287,0.78878784,0.7885472,0.7883066,0.7880659,0.7878254,0.78758496,0.7873447,0.7871044,0.7868642,0.786624,0.786384,0.7861441,0.78590417,0.78566426,0.7854246,0.78518486,0.7849453,0.78470576,0.7844663,0.78422683,0.7839875,0.7837483,0.7835092,0.78326994,0.783031,0.782792,0.7825532,0.7823143,0.7820756,0.781837,0.7815983,0.7813599,0.7811214,0.780883,0.7806448,0.78040653,0.7801683,0.7799303,0.7796922,0.77945435,0.7792164,0.77897865,0.77874094,0.7785033,0.7782657,0.7780282,0.77779084,0.77755344,0.77731615,0.7770789,0.7768418,0.77660465,0.7763678,0.7761308,0.775894,0.77565724,0.7754205,0.77518386,0.7749473,0.77471083,0.7744744,0.774238,0.7740018,0.7737656,0.7735294,0.7732934,0.7730574,0.7728215,0.7725857,0.77234995,0.7721142,0.7718786,0.771643,0.7714076,0.7711721,0.77093685,0.7707016,0.77046645,0.7702312,0.7699962,0.76976126,0.76952636,0.7692914,0.7690567,0.768822,0.76858747,0.7683528,0.7681184,0.7678841,0.7676496,0.76741546,0.7671812,0.7669471,0.766713,0.7664791,0.7662452,0.7660113,0.7657776,0.7655439,0.7653102,0.76507664,0.7648432,0.76460975,0.76437646,0.7641432,0.76391,0.76367694,0.7634439,0.76321083,0.762978,0.7627452,0.7625124,0.7622797,0.76204705,0.7618145,0.761582,0.7613497,0.7611172,0.760885,0.76065284,0.7604207,0.76018864,0.75995666,0.7597247,0.7594929,0.75926113,0.7590294,0.7587978,0.7585662,0.7583348,0.7581034,0.757872,0.7576407,0.7574095,0.75717837,0.7569473,0.7567163,0.7564854,0.7562545,0.75602376,0.75579304,0.7555624,0.7553319,0.7551013,0.7548709,0.7546406,0.7544102,0.75418,0.7539498,0.7537198,0.75348973,0.7532599,0.75302994,0.7528001,0.7525704,0.7523408,0.75211114,0.75188166,0.7516522,0.7514228,0.7511936,0.7509643,0.7507351,0.75050604,0.7502769,0.75004804,0.74981916,0.7495903,0.7493616,0.7491329,0.74890435,0.7486758,0.74844724,0.7482189,0.74799055,0.74776226,0.74753404,0.74730605,0.74707794,0.74684995,0.74662197,0.74639416,0.7461664,0.7459387,0.7457111,0.7454834,0.745256,0.74502856,0.74480116,0.7445739,0.7443467,0.74411947,0.74389243,0.7436654,0.7434385,0.7432117,0.74298483,0.74275804,0.7425315,0.7423048,0.7420783,0.7418518,0.7416255,0.74139917,0.74117285,0.74094665,0.7407206,0.7404945,0.7402686,0.7400427,0.7398168,0.73959106,0.73936546,0.73913974,0.7389142,0.73868865,0.7384633,0.73823786,0.7380126,0.7377874,0.7375623,0.7373372,0.73711216,0.7368872,0.7366624,0.73643756,0.73621273,0.73598814,0.73576355,0.735539,0.73531455,0.7350902,0.73486584,0.7346416,0.73441744,0.73419327,0.73396915,0.7337452,0.73352134,0.73329747,0.7330737,0.73285,0.7326263,0.73240274,0.7321793,0.7319558,0.7317324,0.73150915,0.7312859,0.73106277,0.73083967,0.7306166,0.73039365,0.73017085,0.7299479,0.7297252,0.7295025,0.7292799,0.7290573,0.7288348,0.7286124,0.7283901,0.7281679,0.7279456,0.7277234,0.7275014,0.7272794,0.7270574,0.7268355,0.7266138,0.72639203,0.72617036,0.72594875,0.7257272,0.7255057,0.72528434,0.72506297,0.7248418,0.7246206,0.7243994,0.7241784,0.7239573,0.72373646,0.7235155,0.7232948,0.7230741,0.72285336,0.7226328,0.7224123,0.7221919,0.72197145,0.72175115,0.7215308,0.7213106,0.72109056,0.72087044,0.72065055,0.7204306,0.72021073,0.719991,0.71977127,0.7195516,0.719332,0.7191125,0.71889305,0.71867365,0.71845436,0.7182351,0.71801597,0.71779686,0.7175778,0.71735877,0.71713984,0.71692103,0.7167022,0.71648353,0.7162649,0.7160463,0.71582776,0.7156094,0.715391,0.7151727,0.71495444,0.7147363,0.7145181,0.7143001,0.7140821,0.7138642,0.7136463,0.71342856,0.7132109,0.7129932,0.7127755,0.71255803,0.71234065,0.7121232,0.71190596,0.7116887,0.7114715,0.7112543,0.7110374,0.7108203,0.7106034,0.7103866,0.71016985,0.70995307,0.70973647,0.7095198,0.7093033,0.70908684,0.7088705,0.7086541,0.70843786,0.7082217,0.7080056,0.7077894,0.7075735,0.7073576,0.7071417,0.7069259,0.70671016,0.7064945,0.706279,0.70606333,0.7058479,0.70563257,0.70541716,0.705202,0.70498675,0.70477164,0.70455647,0.70434153,0.7041266,0.70391166,0.70369685,0.70348215,0.7032675,0.7030529,0.70283824,0.7026238,0.7024094,0.70219505,0.7019807,0.7017665,0.70155233,0.7013383,0.70112425,0.7009103,0.7006964,0.70048255,0.7002688,0.7000551,0.69984156,0.69962794,0.6994143,0.6992009,0.69898766,0.6987743,0.698561,0.6983478,0.6981347,0.69792175,0.6977087,0.6974959,0.697283,0.6970702,0.69685745,0.6966448,0.6964322,0.6962196,0.6960072,0.69579476,0.69558245,0.6953702,0.69515806,0.69494593,0.6947338,0.6945218,0.69430983,0.69409794,0.69388616,0.6936744,0.6934627,0.6932511,0.69303954,0.69282806,0.6926166,0.6924052,0.6921939,0.69198275,0.69177157,0.6915605,0.6913493,0.69113845,0.6909275,0.6907166,0.6905058,0.69029516,0.6900845,0.6898739,0.6896634,0.6894529,0.6892425,0.68903214,0.6888219,0.6886117,0.68840164,0.68819153,0.6879815,0.6877715,0.6875617,0.68735176,0.687142,0.6869324,0.68672276,0.6865131,0.6863037,0.6860942,0.6858849,0.68567556,0.68546635,0.6852571,0.68504804,0.68483895,0.6846299,0.6844211,0.68421215,0.6840034,0.6837947,0.68358594,0.6833774,0.6831688,0.6829604,0.6827519,0.6825435,0.68233526,0.68212706,0.6819189,0.68171084,0.68150276,0.68129486,0.6810869,0.680879,0.6806713,0.68046355,0.68025595,0.68004835,0.67984074,0.6796333,0.67942595,0.6792186,0.67901134,0.67880416,0.6785969,0.67838985,0.6781828,0.67797583,0.67776895,0.6775622,0.67735535,0.67714864,0.67694205,0.6767354,0.67652893,0.6763225,0.67611617,0.67590976,0.67570347,0.6754973,0.6752911,0.67508507,0.6748791,0.67467314,0.6744672,0.6742614,0.67405564,0.67384994,0.67364424,0.6734387,0.6732332,0.67302775,0.67282236,0.6726171,0.67241186,0.67220664,0.6720015,0.6717964,0.6715914,0.6713865,0.6711816,0.67097664,0.67077196,0.6705673,0.67036265,0.6701581,0.6699536,0.6697491,0.6695447,0.66934043,0.6691361,0.66893196,0.6687278,0.6685237,0.66831976,0.6681158,0.6679119,0.6677081,0.6675043,0.6673006,0.6670969,0.66689336,0.6666899,0.6664865,0.6662831,0.66607964,0.66587645,0.66567326,0.66547006,0.665267,0.66506404,0.6648611,0.6646581,0.66445535,0.6642525,0.66404986,0.6638472,0.6636446,0.66344213,0.66323966,0.66303724,0.6628349,0.6626326,0.6624304,0.6622283,0.6620262,0.66182417,0.6616222,0.6614202,0.6612184,0.6610166,0.66081494,0.6606133,0.66041166,0.6602102,0.6600087,0.6598073,0.6596059,0.65940464,0.6592034,0.6590022,0.65880114,0.6586001,0.65839905,0.6581981,0.6579973,0.6577965,0.65759575,0.6573951,0.65719444,0.6569939,0.6567934,0.65659297,0.6563926,0.65619224,0.65599203,0.6557919,0.6555917,0.6553917,0.65519166,0.65499175,0.6547919,0.65459204,0.65439224,0.6541925,0.6539929,0.6537934,0.6535939,0.6533944,0.65319496,0.65299565,0.6527963,0.6525971,0.65239805,0.6521989,0.6519999,0.651801,0.651602,0.6514032,0.6512044,0.6510056,0.65080696,0.65060836,0.6504099,0.65021133,0.6500129,0.64981455,0.6496163,0.64941806,0.6492198,0.6490217,0.6488237,0.6486257,0.6484278,0.64822984,0.64803207,0.64783424,0.64763653,0.64743894,0.6472414,0.6470438,0.64684635,0.646649,0.64645165,0.64625436,0.6460571,0.64586,0.6456629,0.6454659,0.6452689,0.645072,0.6448751,0.6446784,0.6444816,0.64428484,0.6440884,0.64389175,0.6436953,0.64349884,0.64330244,0.64310616,0.6429099,0.6427137,0.64251757,0.64232147,0.6421254,0.6419295,0.64173365,0.6415377,0.64134204,0.6411463,0.6409506,0.640755,0.64055955,0.640364,0.64016867,0.6399733,0.639778,0.63958275,0.63938755,0.6391924,0.6389974,0.6388024,0.6386074,0.63841254,0.6382177,0.63802296,0.63782823,0.6376336,0.637439,0.63724446,0.63705003,0.63685566,0.6366613,0.63646704,0.6362727,0.63607854,0.63588446,0.6356904,0.63549644,0.63530254,0.63510865,0.6349148,0.63472104,0.6345274,0.6343337,0.6341402,0.63394666,0.6337532,0.63355976,0.63336647,0.6331731,0.63298,0.63278675,0.63259363,0.63240063,0.63220763,0.6320147,0.6318218,0.631629,0.6314363,0.6312436,0.63105094,0.63085836,0.63066584,0.63047343,0.63028103,0.6300886,0.62989634,0.6297042,0.62951195,0.6293199,0.6291278,0.6289358,0.62874395,0.628552,0.6283602,0.62816846,0.62797683,0.62778515,0.6275936,0.627402,0.62721056,0.62701917,0.62682784,0.62663656,0.62644535,0.6262541,0.62606305,0.62587196,0.625681,0.62549,0.62529916,0.62510836,0.62491757,0.6247269,0.6245362,0.62434566,0.62415516,0.6239646,0.62377423,0.6235839,0.6233936,0.62320334,0.62301314,0.62282306,0.622633,0.6224429,0.622253,0.62206316,0.6218732,0.62168354,0.6214938,0.62130415,0.62111455,0.620925,0.6207355,0.6205461,0.6203567,0.62016743,0.6199782,0.61978894,0.6195998,0.6194107,0.6192217,0.61903274,0.61884385,0.61865497,0.6184662,0.61827743,0.6180888,0.6179002,0.61771166,0.6175231,0.61733466,0.61714625,0.61695796,0.6167696,0.61658144,0.61639327,0.61620516,0.61601716,0.6158291,0.6156412,0.6154533,0.61526555,0.61507773,0.6148901,0.61470246,0.6145148,0.6143273,0.6141398,0.6139524,0.61376506,0.6135778,0.6133905,0.61320335,0.6130162,0.61282915,0.61264217,0.61245507,0.61226827,0.6120814,0.61189467,0.61170787,0.61152124,0.6113346,0.61114806,0.61096156,0.6107752,0.61058867,0.6104024,0.6102161,0.6100299,0.60984373,0.60965765,0.60947156,0.6092856,0.6090996,0.60891384,0.60872793,0.60854214,0.6083565,0.6081708,0.60798526,0.60779965,0.6076142,0.6074287,0.6072435,0.6070581,0.6068729,0.60668766,0.60650253,0.6063174,0.6061324,0.6059474,0.60576254,0.60557765,0.6053928,0.6052081,0.60502344,0.6048388,0.60465425,0.6044697,0.60428524,0.6041008,0.60391647,0.6037322,0.6035479,0.6033638,0.60317963,0.6029956,0.60281163,0.60262764,0.6024437,0.6022598,0.60207605,0.60189235,0.6017086,0.601525,0.6013414,0.60115796,0.60097456,0.6007911,0.60060775,0.6004245,0.60024124,0.6000581,0.599875,0.59969187,0.5995089,0.5993259,0.599143,0.5989602,0.5987775,0.5985947,0.59841204,0.59822935,0.5980469,0.59786433,0.5976819,0.5974995,0.5973172,0.5971349,0.59695274,0.59677047,0.5965884,0.59640634,0.59622437,0.5960424,0.5958605,0.5956787,0.59549683,0.59531516,0.5951334,0.59495187,0.5947703,0.5945887,0.5944073,0.5942259,0.5940446,0.5938633,0.5936821,0.5935009,0.59331983,0.5931387,0.59295774,0.59277683,0.5925959,0.59241503,0.59223425,0.59205353,0.59187293,0.59169227,0.59151167,0.5913312,0.5911507,0.59097034,0.59079,0.59060967,0.5904294,0.5902493,0.5900692,0.58988905,0.58970904,0.58952916,0.5893492,0.5891693,0.5889896,0.58880985,0.58863014,0.5884505,0.5882709,0.5880914,0.58791196,0.5877325,0.58755326,0.58737385,0.5871947,0.58701545,0.5868363,0.5866572,0.5864782,0.5862992,0.58612025,0.58594143,0.5857626,0.5855838,0.5854052,0.58522654,0.5850479,0.5848694,0.5846909,0.5845124,0.5843341,0.5841558,0.5839775,0.5837993,0.5836212,0.58344305,0.58326507,0.583087,0.58290905,0.5827312,0.5825534,0.5823756,0.58219784,0.5820202,0.5818426,0.58166504,0.58148754,0.58131003,0.5811327,0.58095527,0.58077806,0.5806008,0.5804236,0.5802465,0.5800694,0.5798924,0.57971543,0.5795385,0.5793616,0.5791849,0.5790081,0.5788314,0.57865477,0.57847816,0.5783016,0.5781252,0.57794875,0.5777724,0.57759607,0.57741976,0.57724357,0.5770675,0.5768913,0.5767153,0.5765393,0.5763634,0.57618743,0.5760116,0.5758358,0.5756601,0.57548445,0.57530886,0.5751333,0.5749578,0.5747823,0.5746069,0.57443154,0.57425624,0.574081,0.5739058,0.57373065,0.5735556,0.5733806,0.5732056,0.57303065,0.5728558,0.57268095,0.5725062,0.5723315,0.57215685,0.57198226,0.5718077,0.57163316,0.57145876,0.57128435,0.57111,0.5709357,0.57076156,0.5705874,0.57041323,0.5702391,0.5700651,0.56989115,0.5697172,0.56954336,0.5693696,0.5691958,0.5690221,0.5688485,0.5686749,0.56850135,0.5683279,0.5681544,0.56798106,0.56780773,0.5676344,0.56746125,0.567288,0.5671149,0.56694186,0.5667688,0.5665959,0.566423,0.56625015,0.5660773,0.5659046,0.5657319,0.5655592,0.56538665,0.5652141,0.5650416,0.56486917,0.56469685,0.5645245,0.5643522,0.56418,0.5640078,0.56383574,0.5636637,0.5634916,0.5633197,0.5631478,0.5629759,0.5628041,0.5626323,0.56246066,0.562289,0.56211746,0.5619459,0.5617744,0.561603,0.5614316,0.5612603,0.561089,0.56091774,0.56074655,0.5605754,0.5604044,0.56023335,0.56006247,0.5598915,0.5597207,0.55954987,0.5593791,0.55920845,0.55903774,0.55886716,0.55869657,0.5585261,0.5583556,0.5581853,0.55801487,0.55784464,0.5576744,0.55750424,0.5573341,0.557164,0.5569939,0.55682397,0.5566541,0.55648416,0.55631435,0.5561446,0.55597484,0.55580527,0.55563563,0.55546606,0.55529654,0.5551271,0.5549577,0.55478835,0.5546191,0.5544498,0.5542806,0.5541114,0.55394226,0.5537733,0.5536043,0.5534354,0.55326647,0.5530976,0.55292886,0.55276006,0.55259144,0.55242276,0.55225414,0.55208564,0.55191725,0.55174875,0.5515804,0.55141205,0.5512438,0.5510756,0.5509074,0.5507393,0.5505712,0.5504032,0.5502353,0.55006725,0.54989946,0.5497317,0.5495639,0.54939616,0.5492285,0.5490609,0.5488934,0.54872584,0.5485584,0.54839104,0.5482236,0.54805636,0.5478891,0.54772186,0.5475548,0.54738766,0.54722065,0.5470536,0.5468867,0.5467198,0.54655296,0.5463862,0.5462194,0.5460527,0.5458861,0.54571956,0.54555297,0.5453865,0.5452201,0.5450537,0.54488736,0.54472107,0.5445548,0.54438865,0.54422253,0.5440565,0.5438904,0.5437244,0.5435584,0.54339266,0.5432268,0.543061,0.5428953,0.5427296,0.54256403,0.54239845,0.54223293,0.54206747,0.541902,0.54173666,0.5415714,0.54140604,0.5412409,0.5410757,0.54091054,0.5407455,0.5405805,0.5404155,0.5402506,0.5400858,0.53992087,0.5397562,0.53959143,0.53942674,0.5392621,0.53909767,0.5389331,0.5387686,0.5386042,0.53843987,0.5382755,0.53811127,0.53794706,0.5377829,0.53761876,0.5374547,0.53729063,0.5371267,0.5369628,0.53679895,0.5366351,0.53647137,0.53630763,0.53614396,0.53598034,0.5358168,0.5356533,0.5354898,0.5353264,0.53516304,0.5349998,0.53483653,0.5346733,0.5345101,0.534347,0.5341839,0.5340209,0.53385794,0.533695,0.53353214,0.53336936,0.5332066,0.5330439,0.5328812,0.53271854,0.532556,0.53239346,0.53223103,0.53206855,0.53190625,0.53174394,0.53158164,0.5314195,0.5312573,0.53109515,0.5309331,0.530771,0.530609,0.5304471,0.5302853,0.5301235,0.52996165,0.52979994,0.52963823,0.52947664,0.529315,0.5291535,0.52899206,0.5288306,0.52866924,0.52850795,0.5283466,0.52818537,0.52802426,0.5278631,0.527702,0.527541,0.52738,0.52721906,0.5270581,0.52689725,0.52673644,0.5265758,0.52641505,0.5262545,0.52609384,0.52593327,0.5257728,0.52561235,0.52545196,0.5252916,0.5251313,0.524971,0.52481085,0.52465063,0.5244906,0.52433056,0.52417046,0.52401054,0.5238506,0.52369076,0.5235309,0.52337116,0.5232115,0.5230518,0.5228922,0.5227326,0.5225731,0.5224136,0.52225417,0.52209485,0.5219355,0.52177626,0.521617,0.5214578,0.52129865,0.5211396,0.5209806,0.5208216,0.52066267,0.52050376,0.5203449,0.5201861,0.5200274,0.5198687,0.51971006,0.5195515,0.5193929,0.5192344,0.51907593,0.51891756,0.5187592,0.5186009,0.5184426,0.51828444,0.51812625,0.5179682,0.51781005,0.5176521,0.5174941,0.51733613,0.51717824,0.51702046,0.5168627,0.516705,0.51654726,0.51638967,0.516232,0.51607454,0.515917,0.5157596,0.51560223,0.5154449,0.5152875,0.5151303,0.5149731,0.5148159,0.51465887,0.5145018,0.51434475,0.5141878,0.5140309,0.513874,0.51371723,0.5135605,0.5134037,0.513247,0.51309043,0.51293385,0.5127773,0.51262087,0.5124644,0.512308,0.51215166,0.5119954,0.51183915,0.5116829,0.5115268,0.5113707,0.5112146,0.5110586,0.5109027,0.5107467,0.5105909,0.5104351,0.5102793,0.5101236,0.5099679,0.50981224,0.5096567,0.50950116,0.5093457,0.50919026,0.5090349,0.50887954,0.5087243,0.508569,0.50841385,0.50825864,0.50810355,0.5079485,0.5077935,0.5076385,0.5074836,0.5073287,0.5071739,0.50701916,0.5068644,0.5067098,0.50655514,0.5064005,0.506246,0.5060915,0.50593704,0.50578266,0.50562835,0.50547403,0.5053198,0.5051655,0.5050114,0.5048573,0.5047032,0.5045492,0.50439525,0.5042413,0.50408745,0.5039336,0.5037798,0.50362605,0.5034724,0.5033187,0.5031652,0.50301164,0.5028581,0.5027046,0.50255126,0.5023979,0.5022446,0.5020913,0.50193805,0.50178486,0.50163174,0.5014787,0.50132567,0.5011726,0.5010197,0.5008668,0.50071394,0.5005612,0.5004084,0.50025576,0.50010306,0.4999504,0.49979785,0.49964532,0.49949288,0.49934044,0.49918807,0.49903572,0.49888343,0.4987312,0.49857897,0.49842685,0.49827477,0.49812266,0.49797067,0.49781874,0.49766678,0.49751496,0.4973631,0.49721134,0.49705958,0.49690795,0.49675623,0.49660468,0.49645314,0.49630162,0.4961502,0.49599874,0.4958474,0.49569607,0.4955448,0.4953936,0.49524236,0.49509126,0.4949402,0.4947892,0.49463817,0.4944872,0.49433628,0.49418545,0.49403462,0.49388388,0.49373317,0.49358255,0.4934319,0.4932813,0.49313077,0.4929803,0.49282983,0.49267948,0.4925291,0.4923788,0.49222854,0.49207827,0.4919282,0.49177805,0.49162796,0.49147797,0.4913279,0.491178,0.4910281,0.4908783,0.4907285,0.4905787,0.49042898,0.49027938,0.49012974,0.48998022,0.48983064,0.48968115,0.48953176,0.48938236,0.489233,0.4890837,0.48893446,0.48878524,0.48863608,0.48848698,0.48833787,0.48818886,0.4880399,0.48789096,0.48774207,0.4875932,0.48744443,0.48729566,0.487147,0.48699832,0.4868497,0.4867011,0.48655263,0.4864041,0.48625574,0.4861073,0.48595893,0.48581067,0.4856624,0.4855142,0.48536605,0.4852179,0.48506984,0.48492178,0.4847738,0.48462588,0.484478,0.48433015,0.48418233,0.4840346,0.4838869,0.4837392,0.4835916,0.48344404,0.48329645,0.483149,0.4830016,0.48285413,0.48270682,0.4825595,0.48241228,0.48226503,0.48211786,0.48197076,0.48182365,0.48167664,0.48152962,0.4813827,0.48123577,0.48108894,0.48094213,0.48079532,0.4806486,0.48050198,0.48035532,0.48020872,0.4800622,0.47991568,0.47976923,0.4796228,0.47947645,0.47933015,0.47918385,0.47903764,0.47889146,0.47874534,0.47859916,0.47845313,0.4783071,0.47816122,0.47801524,0.47786942,0.47772357,0.47757775,0.47743207,0.47728634,0.4771407,0.47699505,0.47684953,0.476704,0.47655854,0.4764131,0.47626773,0.4761224,0.47597703,0.47583178,0.47568658,0.47554144,0.4753963,0.47525126,0.4751062,0.47496122,0.4748163,0.4746714,0.47452652,0.47438174,0.474237,0.47409225,0.4739476,0.47380295,0.47365832,0.47351378,0.47336927,0.47322485,0.47308043,0.47293603,0.4727917,0.47264743,0.47250322,0.472359,0.4722149,0.47207072,0.47192672,0.4717827,0.47163877,0.4714948,0.47135094,0.47120705,0.4710633,0.47091952,0.47077584,0.47063214,0.47048852,0.47034493,0.4702014,0.4700579,0.46991447,0.4697711,0.46962774,0.4694844,0.4693411,0.46919793,0.4690547,0.46891162,0.46876848,0.46862543,0.46848246,0.46833944,0.4681965,0.46805364,0.46791083,0.467768,0.46762526,0.46748257,0.46733993,0.4671973,0.46705472,0.46691224,0.4667697,0.46662727,0.46648487,0.46634254,0.46620023,0.46605793,0.46591574,0.46577352,0.46563143,0.46548933,0.4653473,0.46520525,0.46506327,0.46492136,0.46477953,0.46463764,0.46449587,0.4643541,0.46421242,0.4640707,0.46392915,0.46378756,0.463646,0.46350455,0.4633631,0.4632217,0.46308032,0.462939,0.46279773,0.4626565,0.4625153,0.46237418,0.46223307,0.46209195,0.46195102,0.46181002,0.4616691,0.46152818,0.46138737,0.46124655,0.46110582,0.46096507,0.46082443,0.46068385,0.46054322,0.46040264,0.46026215,0.46012172,0.45998132,0.45984095,0.45970055,0.4595603,0.45942006,0.4592799,0.4591397,0.45899963,0.45885953,0.4587195,0.4585795,0.45843956,0.45829964,0.45815983,0.45801997,0.45788023,0.4577405,0.45760083,0.45746115,0.45732152,0.457182,0.45704246,0.456903,0.45676357,0.45662418,0.45648482,0.45634553,0.4562063,0.4560671,0.4559279,0.45578876,0.45564964,0.45551062,0.4553716,0.45523265,0.45509368,0.45495483,0.45481598,0.4546772,0.4545385,0.45439976,0.45426106,0.45412245,0.4539838,0.4538453,0.4537068,0.4535684,0.45342997,0.45329157,0.45315322,0.45301497,0.45287672,0.4527385,0.45260036,0.45246223,0.45232418,0.45218614,0.45204818,0.45191017,0.45177227,0.45163444,0.45149657,0.45135882,0.45122108,0.45108336,0.4509457,0.4508081,0.4506705,0.450533,0.45039552,0.45025805,0.45012066,0.4499833,0.44984594,0.4497087,0.44957146,0.44943425,0.44929713,0.44915998,0.44902295,0.44888592,0.44874892,0.44861197,0.4484751,0.44833818,0.4482014,0.44806463,0.44792786,0.44779122,0.44765455,0.44751793,0.44738138,0.44724485,0.4471084,0.44697192,0.44683552,0.44669917,0.44656286,0.44642657,0.4462903,0.44615412,0.446018,0.44588184,0.4457458,0.4456098,0.4454738,0.44533786,0.44520193,0.4450661,0.44493026,0.4447945,0.44465873,0.44452307,0.44438744,0.44425178,0.44411623,0.44398066,0.44384518,0.44370976,0.44357437,0.443439,0.44330364,0.44316837,0.44303313,0.44289795,0.4427628,0.44262764,0.4424926,0.44235757,0.4422226,0.4420876,0.4419527,0.44181782,0.44168302,0.44154823,0.44141346,0.44127876,0.44114408,0.44100952,0.44087493,0.44074035,0.44060585,0.4404714,0.440337,0.4402026,0.44006827,0.439934,0.43979973,0.4396655,0.43953136,0.43939722,0.43926314,0.43912905,0.43899506,0.4388611,0.43872717,0.4385933,0.43845943,0.43832567,0.4381919,0.4380582,0.43792444,0.43779084,0.43765727,0.43752366,0.43739018,0.43725666,0.43712327,0.43698984,0.43685654,0.4367232,0.4365899,0.4364567,0.4363235,0.43619037,0.43605724,0.43592414,0.4357911,0.43565813,0.43552515,0.4353923,0.43525943,0.4351266,0.4349938,0.4348611,0.43472835,0.43459573,0.43446308,0.43433046,0.43419793,0.43406543,0.433933,0.43380055,0.4336682,0.43353584,0.43340355,0.4332713,0.43313903,0.43300688,0.4328747,0.43274263,0.4326106,0.43247855,0.43234658,0.43221462,0.43208274,0.4319509,0.43181908,0.4316873,0.43155557,0.43142387,0.4312922,0.43116063,0.43102902,0.43089744,0.430766,0.43063453,0.4305031,0.43037176,0.43024042,0.4301091,0.42997786,0.42984664,0.42971545,0.4295843,0.42945325,0.42932215,0.42919114,0.42906016,0.4289293,0.42879838,0.42866752,0.4285367,0.42840588,0.42827517,0.42814448,0.42801383,0.4278832,0.42775264,0.4276221,0.4274916,0.42736116,0.42723075,0.42710033,0.42697,0.4268397,0.42670947,0.4265793,0.42644906,0.42631894,0.42618883,0.42605874,0.42592874,0.4257988,0.42566884,0.42553893,0.42540908,0.42527926,0.42514947,0.42501974,0.42489004,0.4247604,0.42463076,0.42450118,0.42437163,0.42424214,0.42411268,0.42398322,0.42385384,0.4237245,0.4235952,0.4234659,0.4233367,0.42320755,0.42307836,0.42294925,0.42282018,0.42269114,0.42256215,0.42243317,0.4223043,0.42217544,0.42204663,0.4219178,0.42178902,0.42166027,0.42153168,0.42140302,0.42127445,0.42114586,0.42101735,0.42088887,0.4207604,0.42063197,0.42050365,0.42037532,0.42024702,0.42011878,0.4199906,0.41986245,0.4197343,0.4196062,0.41947815,0.41935012,0.41922218,0.41909426,0.41896635,0.41883847,0.41871065,0.41858292,0.41845515,0.41832745,0.41819978,0.4180722,0.4179446,0.4178171,0.4176896,0.41756207,0.41743463,0.41730726,0.41717994,0.41705263,0.41692534,0.41679808,0.41667095,0.41654378,0.41641662,0.4162896,0.41616252,0.41603556,0.4159086,0.41578168,0.4156548,0.4155279,0.4154011,0.41527438,0.41514757,0.4150209,0.41489428,0.41476765,0.4146411,0.41451457,0.41438806,0.41426164,0.4141352,0.41400883,0.4138825,0.4137562,0.41362995,0.41350365,0.41337752,0.41325134,0.41312525,0.41299918,0.4128731,0.4127471,0.41262117,0.4124953,0.41236937,0.41224352,0.41211775,0.41199198,0.41186622,0.4117406,0.41161492,0.41148928,0.41136372,0.41123816,0.41111273,0.41098726,0.41086185,0.41073644,0.4106111,0.41048577,0.41036054,0.41023532,0.41011012,0.40998495,0.40985984,0.4097348,0.4096097,0.4094847,0.40935975,0.40923488,0.40910995,0.40898514,0.4088603,0.4087355,0.40861085,0.40848616,0.4083615,0.40823683,0.40811226,0.40798774,0.4078632,0.40773872,0.40761432,0.40748993,0.40736553,0.40724128,0.40711698,0.40699276,0.40686855,0.40674436,0.40662023,0.40649617,0.40637207,0.40624812,0.40612417,0.4060002,0.40587628,0.40575245,0.40562862,0.40550485,0.4053811,0.40525734,0.40513372,0.4050101,0.40488648,0.40476292,0.40463942,0.4045159,0.40439248,0.4042691,0.40414572,0.40402234,0.40389907,0.4037758,0.4036526,0.40352944,0.4034063,0.40328318,0.4031601,0.40303707,0.40291405,0.4027911,0.4026682,0.40254533,0.4024225,0.40229967,0.40217692,0.40205416,0.40193146,0.40180883,0.40168622,0.4015636,0.40144107,0.40131858,0.40119606,0.40107366,0.40095127,0.4008289,0.40070665,0.40058434,0.4004621,0.40033987,0.40021768,0.40009555,0.39997345,0.3998514,0.39972937,0.39960742,0.39948544,0.39936355,0.39924166,0.39911982,0.39899805,0.39887628,0.39875457,0.39863288,0.39851123,0.3983896,0.39826804,0.3981465,0.39802498,0.39790356,0.39778215,0.3976607,0.39753935,0.39741802,0.39729676,0.39717552,0.39705434,0.39693314,0.39681202,0.39669093,0.39656988,0.39644885,0.39632785,0.39620692,0.396086,0.39596513,0.3958443,0.39572352,0.39560273,0.39548203,0.39536133,0.3952407,0.39512008,0.39499947,0.39487895,0.39475846,0.394638,0.3945175,0.39439717,0.3942768,0.39415646,0.3940362,0.39391592,0.39379573,0.39367557,0.39355543,0.3934353,0.39331523,0.3931952,0.39307526,0.39295527,0.3928354,0.39271548,0.39259568,0.39247584,0.3923561,0.39223632,0.39211664,0.39199698,0.39187735,0.3917578,0.39163822,0.3915187,0.39139923,0.3912798,0.3911604,0.391041,0.39092168,0.39080235,0.39068308,0.3905639,0.39044473,0.39032555,0.39020643,0.39008734,0.38996834,0.38984933,0.38973036,0.3896114,0.3894925,0.3893737,0.38925484,0.38913602,0.3890173,0.38889858,0.3887799,0.38866127,0.38854262,0.38842407,0.38830554,0.38818708,0.3880686,0.38795015,0.38783175,0.38771343,0.3875951,0.38747683,0.38735858,0.38724038,0.38712218,0.38700402,0.38688597,0.38676792,0.38664988,0.38653186,0.38641393,0.386296,0.38617814,0.38606024,0.38594246,0.3858247,0.38570693,0.38558924,0.38547155,0.38535392,0.38523632,0.38511875,0.38500124,0.38488373,0.38476628,0.3846489,0.38453153,0.3844142,0.38429683,0.38417953,0.38406232,0.3839451,0.38382795,0.38371083,0.38359374,0.38347667,0.38335967,0.38324264,0.38312575,0.38300878,0.38289192,0.38277507,0.38265827,0.38254148,0.3824247,0.38230807,0.3821914,0.38207474,0.3819582,0.38184157,0.38172504,0.38160858,0.38149214,0.3813757,0.3812593,0.38114297,0.38102663,0.38091037,0.38079414,0.38067794,0.38056177,0.38044563,0.38032955,0.38021347,0.38009745,0.37998146,0.37986547,0.37974957,0.37963367,0.37951782,0.379402,0.37928623,0.37917048,0.37905475,0.3789391,0.37882346,0.37870783,0.3785923,0.37847674,0.37836125,0.37824577,0.37813035,0.37801495,0.37789962,0.3777843,0.377669,0.37755376,0.37743852,0.37732336,0.3772082,0.3770931,0.37697804,0.37686294,0.37674797,0.37663302,0.37651807,0.37640312,0.3762883,0.37617347,0.3760587,0.37594387,0.3758292,0.37571448,0.3755998,0.3754852,0.37537062,0.3752561,0.3751416,0.37502706,0.37491265,0.37479818,0.37468383,0.37456954,0.3744552,0.37434095,0.3742267,0.3741125,0.37399834,0.37388423,0.3737701,0.37365606,0.373542,0.37342802,0.37331408,0.37320015,0.37308627,0.37297237,0.3728586,0.3727448,0.37263107,0.37251735,0.37240365,0.37229005,0.3721764,0.37206286,0.37194926,0.37183577,0.37172228,0.37160885,0.37149546,0.3713821,0.37126875,0.37115547,0.3710422,0.37092897,0.37081578,0.37070262,0.3705895,0.3704764,0.37036335,0.3702503,0.37013733,0.3700244,0.36991146,0.36979857,0.3696857,0.3695729,0.36946014,0.36934736,0.36923465,0.36912197,0.36900938,0.36889675,0.36878413,0.36867163,0.36855912,0.36844665,0.36833423,0.36822182,0.3681094,0.36799708,0.36788478,0.36777255,0.3676603,0.36754808,0.3674359,0.3673238,0.3672117,0.36709964,0.36698762,0.36687562,0.36676368,0.36665177,0.36653987,0.36642802,0.3663162,0.36620438,0.36609265,0.3659809,0.36586925,0.3657576,0.36564595,0.3655344,0.36542282,0.3653113,0.36519986,0.3650884,0.36497697,0.3648656,0.36475423,0.36464298,0.36453164,0.36442044,0.36430922,0.36419803,0.36408693,0.3639758,0.36386472,0.3637537,0.36364266,0.36353168,0.36342072,0.36330986,0.363199,0.36308813,0.36297736,0.36286658,0.36275586,0.36264515,0.3625345,0.36242387,0.36231324,0.36220267,0.36209217,0.36198166,0.36187118,0.36176077,0.36165038,0.36154002,0.36142972,0.3613194,0.36120912,0.36109886,0.36098868,0.3608785,0.3607684,0.3606583,0.36054826,0.3604382,0.3603282,0.3602183,0.36010838,0.35999846,0.35988858,0.35977873,0.35966897,0.3595592,0.35944948,0.3593398,0.35923013,0.35912046,0.35901093,0.35890135,0.35879186,0.35868233,0.35857287,0.35846344,0.35835406,0.35824466,0.35813537,0.35802612,0.35791683,0.3578076,0.3576984,0.35758924,0.35748014,0.35737106,0.35726196,0.35715294,0.35704398,0.35693505,0.3568261,0.3567172,0.35660836,0.35649952,0.35639074,0.356282,0.35617322,0.35606456,0.3559559,0.3558473,0.3557387,0.35563013,0.3555216,0.35541308,0.35530463,0.35519618,0.35508785,0.35497946,0.35487112,0.35476282,0.35465455,0.35454634,0.35443813,0.35432997,0.35422185,0.35411373,0.3540057,0.35389766,0.35378966,0.35368168,0.3535738,0.35346586,0.353358,0.35325018,0.35314238,0.3530346,0.35292685,0.35281917,0.3527115,0.35260385,0.35249627,0.35238868,0.35228115,0.35217363,0.3520662,0.35195872,0.3518513,0.351744,0.3516366,0.35152933,0.35142204,0.3513148,0.35120758,0.3511004,0.35099328,0.35088614,0.3507791,0.35067204,0.35056502,0.35045803,0.3503511,0.35024416,0.35013726,0.35003042,0.3499236,0.34981683,0.34971008,0.34960338,0.3494967,0.34939003,0.34928343,0.34917682,0.34907028,0.34896374,0.34885725,0.3487508,0.34864435,0.34853798,0.34843156,0.34832528,0.34821895,0.3481127,0.3480065,0.34790024,0.3477941,0.347688,0.34758186,0.34747583,0.34736976,0.34726375,0.34715778,0.34705186,0.34694594,0.34684008,0.3467342,0.34662837,0.3465226,0.34641686,0.34631118,0.34620547,0.34609982,0.3459942,0.34588864,0.34578308,0.34567755,0.34557205,0.3454666,0.3453612,0.3452558,0.3451504,0.34504512,0.3449398,0.34483454,0.34472933,0.3446241,0.34451893,0.3444138,0.3443087,0.34420362,0.3440986,0.34399357,0.3438886,0.34378365,0.34367874,0.34357384,0.34346902,0.3433642,0.34325945,0.34315467,0.34304994,0.34294528,0.34284058,0.342736,0.3426314,0.34252682,0.3424223,0.34231782,0.34221336,0.3421089,0.3420045,0.34190014,0.3417958,0.34169146,0.34158722,0.341483,0.34137878,0.34127462,0.34117046,0.3410664,0.34096226,0.34085822,0.34075418,0.34065023,0.34054628,0.34044233,0.3403384,0.34023458,0.34013078,0.34002694,0.3399232,0.33981946,0.33971572,0.3396121,0.33950844,0.33940482,0.33930126,0.33919773,0.3390942,0.33899075,0.3388873,0.33878386,0.33868045,0.33857712,0.33847377,0.33837053,0.33826727,0.33816403,0.3380608,0.33795768,0.3378545,0.33775145,0.33764836,0.33754534,0.3374423,0.33733934,0.3372364,0.33713347,0.3370306,0.33692777,0.33682492,0.33672217,0.33661938,0.33651665,0.33641395,0.33631128,0.33620867,0.3361061,0.3360035,0.33590093,0.33579844,0.335696,0.33559358,0.33549115,0.33538872,0.3352864,0.33518407,0.3350818,0.33497956,0.33487728,0.33477515,0.33467296,0.33457083,0.33446872,0.33436665,0.33426464,0.3341626,0.33406064,0.3339587,0.33385676,0.33375493,0.33365303,0.33355123,0.33344945,0.3333477,0.33324596,0.33314428,0.3330426,0.33294094,0.33283937,0.3327378,0.33263627,0.33253473,0.33243325,0.33233187,0.3322304,0.332129,0.33202767,0.33192635,0.33182502,0.33172378,0.33162254,0.33152136,0.33142015,0.33131903,0.33121794,0.33111683,0.33101583,0.33091483,0.3308138,0.33071285,0.33061194,0.33051103,0.33041018,0.33030936,0.33020857,0.3301078,0.33000705,0.32990634,0.32980564,0.32970503,0.32960442,0.32950383,0.32940328,0.32930273,0.32920226,0.3291018,0.32900137,0.32890096,0.3288006,0.32870027,0.32859996,0.32849967,0.32839942,0.3282992,0.32819903,0.32809886,0.32799876,0.32789862,0.32779858,0.32769853,0.32759857,0.32749856,0.32739866,0.32729873,0.32719886,0.327099,0.3269992,0.32689935,0.32679963,0.3266999,0.3266002,0.32650054,0.32640088,0.32630128,0.3262017,0.32610217,0.32600266,0.32590315,0.32580373,0.32570428,0.32560492,0.32550552,0.3254062,0.3253069,0.32520765,0.32510835,0.32500917,0.32491,0.32481086,0.3247117,0.32461262,0.32451352,0.3244145,0.32431555,0.32421657,0.3241176,0.3240187,0.3239198,0.32382095,0.32372212,0.32362336,0.3235246,0.3234259,0.32332715,0.3232285,0.3231299,0.3230313,0.3229327,0.32283413,0.32273564,0.3226371,0.32253867,0.32244027,0.32234183,0.32224345,0.32214516,0.32204682,0.32194856,0.3218503,0.3217521,0.32165387,0.32155573,0.32145762,0.3213595,0.32126147,0.32116342,0.3210654,0.32096744,0.32086948,0.32077155,0.32067364,0.3205758,0.32047796,0.32038015,0.32028243,0.32018468,0.32008696,0.31998926,0.31989163,0.31979403,0.31969643,0.31959885,0.3195013,0.31940383,0.31930637,0.31920895,0.3191115,0.31901413,0.31891677,0.31881946,0.31872216,0.3186249,0.31852767,0.31843045,0.31833327,0.3182361,0.318139,0.31804198,0.31794485,0.31784785,0.31775087,0.31765386,0.31755698,0.31746006,0.31736317,0.31726635,0.3171695,0.31707272,0.31697595,0.31687918,0.31678253,0.31668586,0.31658918,0.3164926,0.316396,0.31629947,0.3162029,0.3161064,0.31600994,0.31591353,0.31581712,0.31572077,0.31562442,0.31552806,0.3154318,0.31533557,0.3152393,0.31514314,0.31504697,0.31495076,0.31485468,0.31475863,0.31466255,0.3145665,0.31447053,0.31437457,0.31427863,0.31418273,0.31408685,0.31399098,0.31389517,0.3137994,0.31370363,0.3136079,0.3135122,0.3134165,0.31332088,0.31322524,0.31312963,0.31303412,0.31293857,0.31284308,0.31274763,0.31265217,0.31255677,0.31246138,0.31236604,0.3122707,0.3121754,0.31208014,0.31198493,0.3118897,0.31179452,0.31169936,0.31160426,0.31150916,0.31141412,0.31131908,0.31122407,0.3111291,0.31103414,0.31093922,0.31084436,0.3107495,0.31065464,0.31055987,0.31046507,0.31037033,0.3102756,0.31018093,0.31008628,0.30999163,0.30989707,0.3098025,0.30970794,0.30961344,0.30951896,0.3094245,0.30933002,0.3092357,0.3091413,0.30904695,0.30895263,0.30885836,0.3087641,0.30866987,0.3085757,0.30848148,0.30838737,0.30829325,0.30819917,0.30810514,0.3080111,0.30791712,0.30782315,0.30772918,0.3076353,0.30754143,0.30744758,0.30735376,0.30725998,0.3071662,0.30707243,0.30697873,0.30688506,0.30679142,0.3066978,0.30660418,0.30651063,0.30641705,0.30632362,0.30623013,0.30613667,0.30604324,0.30594984,0.30585647,0.30576313,0.3056698,0.30557653,0.30548328,0.3053901,0.3052969,0.30520374,0.30511057,0.30501744,0.30492437,0.30483133,0.3047383,0.3046453,0.30455235,0.3044594,0.3043665,0.3042736,0.30418074,0.30408794,0.30399513,0.3039024,0.30380964,0.30371687,0.3036242,0.30353156,0.30343893,0.30334634,0.30325377,0.30316123,0.30306873,0.30297622,0.30288377,0.30279133,0.30269894,0.30260658,0.30251423,0.30242187,0.30232963,0.30223733,0.30214512,0.30205292,0.3019607,0.3018686,0.30177647,0.30168438,0.30159232,0.30150026,0.30140826,0.3013163,0.30122435,0.3011324,0.3010405,0.30094865,0.3008568,0.300765,0.30067325,0.30058146,0.30048972,0.30039802,0.30030638,0.3002147,0.30012313,0.30003148,0.29993996,0.29984844,0.2997569,0.29966548,0.299574,0.29948255,0.2993912,0.29929984,0.2992085,0.29911715,0.2990259,0.29893464,0.2988434,0.29875225,0.29866102,0.2985699,0.29847878,0.2983877,0.29829663,0.2982056,0.29811463,0.29802364,0.2979327,0.2978418,0.29775092,0.29766002,0.2975692,0.2974784,0.2973876,0.29729685,0.29720613,0.29711542,0.2970248,0.29693413,0.29684353,0.2967529,0.29666236,0.29657182,0.29648134,0.29639086,0.29630038,0.29620996,0.29611957,0.2960292,0.29593888,0.29584858,0.2957583,0.295668,0.29557782,0.2954876,0.29539743,0.29530728,0.29521716,0.29512706,0.295037,0.29494697,0.29485697,0.294767,0.29467705,0.2945871,0.2944972,0.29440734,0.29431748,0.2942277,0.29413787,0.29404813,0.2939584,0.29386872,0.293779,0.29368937,0.29359975,0.29351014,0.29342058,0.29333106,0.2932415,0.29315203,0.29306254,0.29297316,0.2928837,0.29279435,0.29270497,0.29261568,0.29252636,0.2924371,0.29234788,0.29225865,0.29216945,0.2920803,0.29199117,0.29190207,0.291813,0.29172394,0.2916349,0.2915459,0.29145694,0.291368,0.29127908,0.2911902,0.29110134,0.2910125,0.2909237,0.2908349,0.29074615,0.29065743,0.29056874,0.29048005,0.29039142,0.29030278,0.2902142,0.29012567,0.2900371,0.2899486,0.2898601,0.28977168,0.28968322,0.28959486,0.28950647,0.2894181,0.2893298,0.2892415,0.28915325,0.28906497,0.2889768,0.28888857,0.28880045,0.2887123,0.2886242,0.28853613,0.2884481,0.28836006,0.28827205,0.28818405,0.28809613,0.2880082,0.28792033,0.28783247,0.2877446,0.2876568,0.28756905,0.28748125,0.2873935,0.28730583,0.28721815,0.2871305,0.28704292,0.2869553,0.28686774,0.28678018,0.28669268,0.28660515,0.2865177,0.2864303,0.2863429,0.2862555,0.28616813,0.2860808,0.2859935,0.28590623,0.285819,0.28573173,0.28564456,0.2855574,0.28547025,0.28538314,0.28529605,0.28520897,0.28512192,0.28503492,0.28494796,0.284861,0.28477407,0.28468716,0.2846003,0.28451344,0.28442657,0.28433982,0.28425303,0.28416628,0.28407958,0.2839929,0.2839062,0.2838196,0.28373298,0.2836464,0.28355983,0.28347328,0.28338677,0.28330028,0.28321388,0.28312743,0.28304103,0.28295466,0.2828683,0.28278196,0.28269565,0.28260943,0.28252319,0.28243694,0.28235078,0.2822646,0.28217846,0.28209236,0.28200626,0.28192022,0.2818342,0.28174815,0.2816622,0.28157625,0.28149033,0.2814044,0.28131852,0.28123268,0.28114685,0.28106108,0.2809753,0.28088957,0.28080383,0.28071815,0.28063247,0.28054684,0.2804612,0.28037566,0.28029007,0.28020453,0.28011903,0.28003353,0.27994812,0.27986267,0.27977726,0.27969187,0.27960652,0.27952117,0.2794359,0.2793506,0.27926537,0.27918014,0.27909493,0.2790098,0.2789246,0.2788395,0.2787544,0.27866933,0.2785843,0.2784993,0.27841428,0.27832937,0.27824444,0.27815953,0.27807462,0.27798975,0.27790493,0.27782014,0.27773535,0.27765056,0.2775658,0.27748114,0.27739647,0.27731183,0.2772272,0.27714258,0.277058,0.2769735,0.27688894,0.27680442,0.27672,0.27663553,0.2765511,0.27646673,0.27638236,0.27629802,0.27621368,0.2761294,0.27604514,0.2759609,0.27587667,0.27579248,0.27570835,0.2756242,0.27554008,0.275456,0.27537194,0.2752879,0.27520388,0.2751199,0.27503595,0.27495202,0.2748681,0.27478424,0.27470037,0.27461654,0.27453277,0.27444896,0.27436522,0.2742815,0.27419776,0.2741141,0.27403045,0.27394685,0.27386323,0.27377966,0.2736961,0.2736126,0.27352908,0.2734456,0.2733622,0.27327874,0.27319536,0.273112,0.27302864,0.27294534,0.27286202,0.27277875,0.2726955,0.2726123,0.27252913,0.27244595,0.2723628,0.27227968,0.2721966,0.27211353,0.2720305,0.27194744,0.27186447,0.2717815,0.27169856,0.27161565,0.27153274,0.2714499,0.27136704,0.27128425,0.2712015,0.27111873,0.27103597,0.27095327,0.2708706,0.2707879,0.27070528,0.27062267,0.2705401,0.27045754,0.27037498,0.2702925,0.27021,0.2701275,0.2700451,0.2699627,0.26988032,0.26979798,0.26971564,0.26963332,0.26955104,0.26946875,0.26938653,0.26930434,0.26922214,0.26914,0.26905784,0.26897576,0.26889366,0.2688116,0.2687296,0.26864755,0.26856557,0.26848364,0.2684017,0.2683198,0.2682379,0.26815605,0.26807418,0.2679924,0.26791063,0.26782888,0.26774713,0.26766542,0.26758376,0.26750207,0.26742047,0.26733884,0.26725727,0.2671757,0.26709417,0.26701266,0.26693118,0.26684973,0.2667683,0.2666869,0.2666055,0.26652414,0.26644278,0.2663615,0.2662802,0.26619893,0.26611772,0.2660365,0.26595533,0.26587415,0.26579303,0.2657119,0.2656308,0.26554975,0.26546872,0.2653877,0.26530674,0.26522574,0.26514482,0.26506394,0.26498303,0.26490217,0.26482132,0.2647405,0.26465973,0.26457897,0.26449817,0.2644175,0.2643368,0.26425612,0.2641755,0.26409486,0.26401427,0.26393372,0.26385316,0.26377264,0.26369214,0.2636117,0.26353127,0.26345083,0.26337045,0.26329005,0.2632097,0.26312938,0.26304907,0.2629688,0.26288855,0.26280835,0.26272812,0.26264796,0.26256782,0.2624877,0.26240757,0.2623275,0.26224744,0.26216745,0.26208743,0.26200745,0.2619275,0.26184756,0.26176766,0.2616878,0.2616079,0.26152807,0.26144823,0.26136848,0.26128873,0.26120898,0.26112923,0.26104957,0.2609699,0.26089028,0.26081064,0.26073107,0.2606515,0.26057196,0.26049244,0.26041296,0.26033348,0.26025403,0.2601746,0.2600952,0.26001585,0.2599365,0.25985718,0.25977787,0.2596986,0.25961936,0.2595401,0.2594609,0.25938174,0.25930256,0.25922346,0.25914434,0.25906527,0.2589862,0.25890717,0.25882816,0.2587492,0.2586702,0.25859126,0.25851235,0.25843346,0.2583546,0.25827578,0.25819692,0.25811815,0.25803939,0.25796065,0.2578819,0.2578032,0.25772455,0.25764593,0.25756726,0.25748867,0.2574101,0.25733152,0.25725302,0.25717452,0.25709602,0.25701758,0.25693914,0.25686073,0.25678235,0.256704,0.25662565,0.25654733,0.25646907,0.25639078,0.25631252,0.25623435,0.25615615,0.25607798,0.2559998,0.25592166,0.25584358,0.2557655,0.25568748,0.25560945,0.25553143,0.25545347,0.2553755,0.25529757,0.25521967,0.25514176,0.25506392,0.25498608,0.25490826,0.25483045,0.2547527,0.25467494,0.25459725,0.25451955,0.2544419,0.25436425,0.25428662,0.254209,0.25413144,0.25405386,0.25397635,0.25389886,0.25382137,0.25374392,0.2536665,0.25358906,0.25351167,0.2534343,0.25335696,0.25327966,0.25320238,0.2531251,0.25304785,0.2529706,0.25289342,0.25281626,0.2527391,0.25266194,0.25258487,0.2525078,0.25243077,0.25235373,0.25227672,0.25219968,0.25212273,0.2520458,0.2519689,0.251892,0.25181514,0.25173828,0.25166145,0.25158465,0.25150788,0.25143114,0.2513544,0.25127771,0.25120103,0.25112438,0.25104773,0.2509711,0.25089452,0.25081795,0.2507414,0.25066492,0.25058842,0.25051194,0.25043547,0.25035906,0.25028265,0.2502063,0.25012994,0.25005358,0.24997728,0.249901,0.24982475,0.24974848,0.2496723,0.2495961,0.24951994,0.2494438,0.24936765,0.24929155,0.24921548,0.24913943,0.24906339,0.24898739,0.24891143,0.24883547,0.24875951,0.24868362,0.24860771,0.24853186,0.24845602,0.24838018,0.2483044,0.24822862,0.24815288,0.24807715,0.24800143,0.24792576,0.2478501,0.24777448,0.24769886,0.24762328,0.24754769,0.24747215,0.24739662,0.24732114,0.24724564,0.24717022,0.24709477,0.24701938,0.246944,0.24686863,0.24679331,0.24671799,0.24664271,0.24656744,0.24649218,0.24641696,0.24634176,0.24626659,0.24619144,0.24611631,0.2460412,0.24596612,0.24589105,0.24581602,0.245741,0.245666,0.24559103,0.24551609,0.24544117,0.24536628,0.24529141,0.24521653,0.2451417,0.2450669,0.2449921,0.24491736,0.24484262,0.24476787,0.24469319,0.24461854,0.24454388,0.24446926,0.24439466,0.24432005,0.2442455,0.24417096,0.24409646,0.24402197,0.24394752,0.24387306,0.24379863,0.24372424,0.24364987,0.24357551,0.24350117,0.24342687,0.24335259,0.24327832,0.24320406,0.24312986,0.24305566,0.2429815,0.24290736,0.24283323,0.24275911,0.24268503,0.24261096,0.24253693,0.24246292,0.24238893,0.24231493,0.24224102,0.24216707,0.24209316,0.24201934,0.24194546,0.24187163,0.2417978,0.24172401,0.24165025,0.24157651,0.24150279,0.24142909,0.24135542,0.24128175,0.24120812,0.24113451,0.24106093,0.24098738,0.24091381,0.24084033,0.24076682,0.24069335,0.24061988,0.24054646,0.24047306,0.24039964,0.24032633,0.24025297,0.24017966,0.24010634,0.24003309,0.23995982,0.2398866,0.23981342,0.23974021,0.23966706,0.23959391,0.23952079,0.2394477,0.23937462,0.23930158,0.23922856,0.23915553,0.23908256,0.2390096,0.23893668,0.23886375,0.23879088,0.23871799,0.23864514,0.2385723,0.23849949,0.23842674,0.23835397,0.23828122,0.23820853,0.23813581,0.23806317,0.23799051,0.23791789,0.23784529,0.2377727,0.23770013,0.23762758,0.23755507,0.23748258,0.2374101,0.23733765,0.23726524,0.23719282,0.23712043,0.23704809,0.23697574,0.23690343,0.23683113,0.23675884,0.23668662,0.23661439,0.23654217,0.23646998,0.23639783,0.23632567,0.23625356,0.23618147,0.2361094,0.23603733,0.2359653,0.2358933,0.2358213,0.23574935,0.2356774,0.23560548,0.23553358,0.23546173,0.23538986,0.23531802,0.23524621,0.23517443,0.23510265,0.23503089,0.23495919,0.23488748,0.2348158,0.23474415,0.2346725,0.23460089,0.23452929,0.23445775,0.23438618,0.23431465,0.23424314,0.23417166,0.23410021,0.23402876,0.23395735,0.23388596,0.23381458,0.23374322,0.23367192,0.23360059,0.23352931,0.23345804,0.23338681,0.23331557,0.23324437,0.23317318,0.23310204,0.2330309,0.23295979,0.23288871,0.23281762,0.23274657,0.23267554,0.23260455,0.23253356,0.23246258,0.23239166,0.23232076,0.23224986,0.23217899,0.2321081,0.23203728,0.23196647,0.23189569,0.23182492,0.23175418,0.23168346,0.23161274,0.2315421,0.23147142,0.2314008,0.23133017,0.23125957,0.231189,0.23111844,0.23104791,0.2309774,0.23090693,0.23083647,0.23076601,0.23069559,0.23062518,0.23055482,0.23048443,0.2304141,0.2303438,0.2302735,0.23020323,0.23013298,0.23006275,0.22999255,0.22992237,0.2298522,0.22978204,0.22971193,0.22964184,0.22957176,0.2295017,0.22943164,0.22936164,0.22929163,0.22922167,0.22915174,0.22908181,0.2290119,0.228942,0.22887214,0.2288023,0.22873247,0.22866268,0.22859289,0.22852314,0.2284534,0.22838369,0.22831398,0.22824432,0.22817464,0.22810501,0.22803542,0.22796582,0.22789626,0.22782671,0.22775719,0.22768769,0.22761819,0.22754872,0.22747931,0.22740987,0.22734046,0.22727111,0.22720174,0.22713242,0.22706309,0.22699381,0.22692455,0.22685528,0.22678606,0.22671686,0.22664766,0.2265785,0.22650935,0.22644024,0.22637112,0.22630206,0.226233,0.22616395,0.22609493,0.22602595,0.22595696,0.22588801,0.22581908,0.22575016,0.22568128,0.2256124,0.22554354,0.22547472,0.22540592,0.22533713,0.22526835,0.22519962,0.22513089,0.22506222,0.22499351,0.22492483,0.22485623,0.22478761,0.224719,0.22465041,0.22458185,0.22451332,0.22444482,0.2243763,0.22430786,0.22423941,0.22417098,0.22410257,0.22403418,0.2239658,0.22389746,0.22382914,0.22376083,0.22369255,0.22362429,0.22355606,0.22348782,0.2234196,0.22335142,0.22328326,0.22321513,0.22314702,0.22307892,0.22301084,0.22294278,0.22287476,0.22280675,0.22273874,0.22267078,0.22260283,0.22253491,0.22246699,0.2223991,0.22233123,0.22226337,0.22219554,0.22212775,0.22205995,0.22199218,0.22192444,0.22185673,0.22178902,0.22172134,0.22165368,0.221586,0.22151841,0.2214508,0.22138324,0.22131568,0.22124813,0.22118062,0.2211131,0.22104563,0.2209782,0.22091076,0.22084333,0.22077595,0.22070856,0.22064121,0.22057389,0.22050656,0.22043929,0.220372,0.22030476,0.22023752,0.2201703,0.22010314,0.22003596,0.21996881,0.2199017,0.21983458,0.2197675,0.21970044,0.21963339,0.21956636,0.21949935,0.21943237,0.2193654,0.21929847,0.21923155,0.21916464,0.21909776,0.2190309,0.21896407,0.21889725,0.21883045,0.21876366,0.2186969,0.21863015,0.21856345,0.21849677,0.21843009,0.21836342,0.21829678,0.21823016,0.21816358,0.21809699,0.21803042,0.21796387,0.2178974,0.21783087,0.2177644,0.21769796,0.2176315,0.21756512,0.21749873,0.21743234,0.217366,0.21729966,0.21723334,0.21716705,0.21710077,0.21703453,0.2169683,0.21690206,0.21683589,0.21676971,0.21670358,0.21663743,0.21657132,0.21650523,0.21643916,0.2163731,0.21630709,0.21624109,0.21617508,0.21610911,0.21604316,0.21597724,0.21591134,0.21584545,0.21577956,0.21571372,0.21564789,0.21558209,0.2155163,0.21545053,0.21538478,0.21531904,0.21525335,0.21518767,0.215122,0.21505634,0.21499072,0.21492513,0.21485952,0.21479395,0.21472842,0.21466288,0.21459736,0.21453188,0.21446641,0.21440096,0.21433555,0.21427013,0.21420474,0.21413937,0.21407402,0.2140087,0.21394339,0.2138781,0.21381283,0.21374758,0.21368235,0.21361712,0.21355195,0.21348678,0.21342163,0.21335652,0.21329142,0.2132263,0.21316124,0.21309617,0.21303116,0.21296614,0.21290116,0.21283619,0.21277124,0.2127063,0.21264139,0.21257651,0.21251163,0.2124468,0.21238194,0.21231715,0.21225236,0.21218759,0.21212284,0.2120581,0.2119934,0.21192867,0.21186401,0.21179935,0.21173473,0.2116701,0.21160552,0.21154092,0.21147637,0.21141185,0.21134731,0.21128283,0.21121836,0.21115391,0.21108948,0.21102503,0.21096064,0.21089627,0.2108319,0.21076757,0.21070325,0.21063896,0.21057467,0.21051043,0.21044616,0.21038195,0.21031775,0.21025358,0.2101894,0.21012527,0.21006113,0.20999704,0.20993294,0.2098689,0.20980485,0.20974082,0.20967682,0.20961285,0.20954886,0.2094849,0.20942098,0.20935707,0.20929317,0.2092293,0.20916547,0.20910165,0.20903783,0.20897403,0.20891026,0.20884651,0.20878276,0.20871906,0.20865537,0.20859171,0.20852803,0.2084644,0.2084008,0.20833717,0.2082736,0.20821007,0.20814651,0.20808299,0.2080195,0.20795602,0.20789255,0.2078291,0.20776568,0.20770228,0.2076389,0.20757553,0.20751218,0.20744886,0.20738555,0.20732227,0.207259,0.20719574,0.20713253,0.20706931,0.20700613,0.20694295,0.2068798,0.20681667,0.20675354,0.20669048,0.20662738,0.20656432,0.20650129,0.20643829,0.20637529,0.2063123,0.20624934,0.20618641,0.20612347,0.20606056,0.2059977,0.20593484,0.205872,0.20580916,0.20574635,0.20568357,0.20562081,0.20555803,0.20549531,0.20543262,0.20536992,0.20530726,0.20524459,0.20518196,0.20511934,0.20505676,0.20499419,0.2049316,0.20486908,0.20480657,0.20474406,0.20468159,0.20461911,0.20455666,0.20449425,0.20443183,0.20436946,0.20430711,0.20424475,0.20418243,0.20412013,0.20405783,0.20399556,0.2039333,0.20387107,0.20380884,0.20374665,0.20368448,0.20362231,0.20356017,0.20349807,0.20343596,0.20337388,0.2033118,0.20324977,0.20318775,0.20312575,0.20306376,0.20300178,0.20293982,0.20287788,0.202816,0.20275411,0.20269224,0.20263039,0.20256852,0.20250672,0.20244491,0.20238315,0.20232138,0.20225963,0.20219792,0.20213622,0.20207451,0.20201285,0.20195122,0.20188959,0.20182796,0.20176639,0.20170482,0.20164326,0.20158173,0.20152019,0.20145871,0.20139723,0.20133577,0.20127432,0.20121291,0.2011515,0.20109011,0.20102876,0.20096739,0.20090607,0.20084476,0.20078346,0.20072222,0.20066094,0.2005997,0.2005385,0.20047732,0.20041612,0.20035496,0.20029382,0.2002327,0.20017159,0.20011051,0.20004945,0.19998838,0.19992737,0.19986635,0.19980535,0.19974437,0.19968343,0.1996225,0.19956158,0.19950067,0.1994398,0.19937894,0.1993181,0.19925727,0.19919644,0.19913566,0.19907491,0.19901416,0.19895342,0.19889268,0.198832,0.19877134,0.19871068,0.19865003,0.19858941,0.19852881,0.19846822,0.19840766,0.19834712,0.19828658,0.19822606,0.19816558,0.19810511,0.19804464,0.1979842,0.19792378,0.1978634,0.197803,0.19774267,0.1976823,0.19762199,0.19756168,0.19750138,0.19744112,0.19738087,0.19732063,0.19726041,0.19720022,0.19714004,0.19707988,0.19701974,0.1969596,0.1968995,0.1968394,0.19677936,0.1967193,0.19665927,0.19659925,0.19653924,0.19647929,0.19641931,0.19635935,0.19629946,0.19623956,0.19617967,0.1961198,0.19605997,0.1960001,0.1959403,0.1958805,0.19582073,0.19576098,0.19570123,0.1956415,0.19558181,0.19552213,0.19546245,0.1954028,0.19534317,0.19528356,0.19522397,0.19516441,0.19510487,0.1950453,0.19498576,0.19492628,0.19486678,0.19480734,0.19474788,0.19468844,0.19462903,0.19456963,0.19451027,0.1944509,0.19439156,0.19433224,0.19427294,0.19421364,0.1941544,0.19409513,0.1940359,0.1939767,0.1939175,0.19385834,0.19379917,0.19374001,0.1936809,0.1936218,0.1935627,0.19350363,0.1934446,0.19338556,0.19332652,0.19326754,0.19320856,0.1931496,0.19309066,0.19303173,0.19297282,0.19291395,0.19285508,0.19279622,0.19273737,0.19267857,0.19261977,0.192561,0.19250223,0.19244348,0.19238475,0.19232605,0.19226734,0.19220868,0.19215,0.1920914,0.19203275,0.19197416,0.19191557,0.191857,0.19179848,0.19173995,0.19168143,0.19162293,0.19156444,0.19150598,0.19144754,0.19138913,0.19133073,0.19127233,0.19121394,0.19115561,0.19109726,0.19103895,0.19098066,0.19092236,0.19086412,0.19080587,0.19074763,0.19068943,0.19063124,0.19057305,0.1905149,0.19045676,0.19039866,0.19034056,0.19028248,0.19022438,0.19016634,0.19010831,0.1900503,0.18999231,0.18993433,0.18987635,0.18981841,0.18976048,0.18970257,0.18964468,0.18958682,0.18952896,0.18947113,0.18941331,0.18935551,0.18929774,0.18923993,0.18918219,0.18912446,0.18906677,0.18900904,0.18895139,0.18889372,0.18883605,0.18877846,0.18872084,0.18866323,0.18860567,0.1885481,0.18849057,0.18843304,0.18837556,0.18831804,0.1882606,0.18820314,0.1881457,0.18808831,0.1880309,0.18797351,0.18791616,0.18785879,0.18780148,0.18774416,0.18768689,0.1876296,0.18757236,0.18751508,0.18745786,0.18740067,0.18734348,0.18728633,0.18722916,0.18717204,0.18711491,0.18705781,0.18700074,0.18694365,0.18688661,0.18682955,0.18677257,0.18671557,0.18665858,0.18660162,0.18654467,0.18648775,0.18643084,0.18637395,0.18631706,0.18626021,0.18620336,0.18614654,0.18608974,0.18603295,0.18597618,0.18591943,0.18586269,0.18580596,0.18574928,0.18569258,0.18563591,0.18557929,0.18552262,0.18546602,0.18540941,0.18535283,0.18529628,0.18523973,0.18518318,0.18512669,0.18507019,0.18501373,0.18495725,0.18490082,0.1848444,0.184788,0.1847316,0.18467522,0.18461886,0.18456252,0.1845062,0.1844499,0.18439361,0.18433733,0.18428108,0.18422486,0.18416862,0.18411243,0.18405622,0.18400006,0.18394391,0.1838878,0.18383166,0.18377557,0.18371949,0.18366341,0.18360737,0.18355136,0.18349533,0.18343933,0.18338336,0.18332739,0.18327145,0.18321553,0.1831596,0.18310371,0.18304783,0.18299198,0.18293613,0.1828803,0.18282449,0.18276872,0.18271293,0.18265717,0.18260144,0.1825457,0.18249,0.18243432,0.18237863,0.18232298,0.18226734,0.18221173,0.18215612,0.18210053,0.18204495,0.18198942,0.18193386,0.18187833,0.18182284,0.18176736,0.1817119,0.18165642,0.18160102,0.18154557,0.18149018,0.1814348,0.18137944,0.18132408,0.18126875,0.18121341,0.18115813,0.18110286,0.18104757,0.18099234,0.18093708,0.18088187,0.18082668,0.1807715,0.18071632,0.18066117,0.18060607,0.18055095,0.18049584,0.18044077,0.18038568,0.18033063,0.18027562,0.18022059,0.1801656,0.18011063,0.18005566,0.18000071,0.1799458,0.17989087,0.17983598,0.17978108,0.17972623,0.17967139,0.17961656,0.17956173,0.17950693,0.17945217,0.1793974,0.17934267,0.17928793,0.17923321,0.17917852,0.17912383,0.17906918,0.17901453,0.17895989,0.17890528,0.17885068,0.1787961,0.17874154,0.178687,0.17863247,0.17857796,0.17852347,0.17846897,0.17841452,0.17836007,0.17830564,0.17825122,0.17819683,0.17814246,0.1780881,0.17803377,0.17797944,0.1779251,0.17787081,0.17781654,0.17776226,0.17770801,0.17765379,0.17759956,0.17754537,0.17749122,0.17743702,0.1773829,0.17732875,0.17727463,0.17722054,0.17716646,0.1771124,0.17705834,0.17700431,0.1769503,0.17689629,0.1768423,0.17678834,0.1767344,0.17668046,0.17662655,0.17657265,0.17651878,0.17646487,0.17641105,0.17635722,0.17630339,0.1762496,0.17619582,0.17614204,0.17608829,0.17603454,0.17598082,0.1759271,0.17587344,0.17581977,0.17576613,0.17571247,0.17565885,0.17560524,0.17555167,0.1754981,0.17544453,0.17539099,0.17533746,0.17528397,0.17523046,0.175177,0.17512353,0.17507009,0.17501667,0.17496327,0.17490987,0.1748565,0.17480312,0.17474979,0.17469646,0.17464316,0.17458984,0.17453657,0.17448328,0.17443006,0.17437682,0.17432362,0.17427042,0.17421724,0.17416407,0.17411092,0.17405778,0.17400467,0.17395157,0.17389847,0.17384543,0.17379238,0.17373934,0.17368633,0.1736333,0.17358032,0.17352736,0.1734744,0.17342146,0.17336854,0.17331563,0.17326273,0.17320986,0.17315702,0.17310415,0.17305134,0.17299853,0.17294575,0.17289296,0.17284021,0.17278744,0.17273472,0.172682,0.17262931,0.17257662,0.17252398,0.17247131,0.17241868,0.17236607,0.17231347,0.1722609,0.17220832,0.17215578,0.17210323,0.17205071,0.17199822,0.17194574,0.17189324,0.1718408,0.17178833,0.17173593,0.17168352,0.17163111,0.17157875,0.17152639,0.17147404,0.17142172,0.1713694,0.17131712,0.17126483,0.17121257,0.17116031,0.17110807,0.17105587,0.17100367,0.17095149,0.17089933,0.17084716,0.17079502,0.1707429,0.1706908,0.17063871,0.17058663,0.17053457,0.17048255,0.1704305,0.1703785,0.17032652,0.17027453,0.17022258,0.17017062,0.17011869,0.17006679,0.17001487,0.169963,0.16991112,0.16985929,0.16980743,0.16975565,0.16970381,0.16965203,0.16960026,0.16954851,0.16949676,0.16944504,0.16939332,0.16934164,0.16928995,0.1692383,0.16918665,0.16913502,0.16908342,0.16903181,0.16898023,0.16892865,0.1688771,0.16882557,0.16877405,0.16872254,0.16867107,0.16861959,0.1685681,0.1685167,0.16846526,0.16841385,0.16836247,0.16831107,0.16825971,0.16820838,0.16815703,0.16810572,0.16805445,0.16800313,0.16795187,0.1679006,0.16784939,0.16779816,0.16774696,0.16769576,0.16764459,0.16759342,0.16754228,0.16749115,0.16744006,0.16738893,0.16733785,0.1672868,0.16723575,0.1671847,0.16713369,0.16708268,0.1670317,0.16698073,0.16692977,0.16687883,0.1668279,0.16677698,0.16672608,0.16667522,0.16662435,0.1665735,0.16652268,0.16647185,0.16642106,0.16637027,0.1663195,0.16626874,0.166218,0.16616727,0.16611657,0.16606589,0.1660152,0.16596454,0.16591388,0.16586325,0.16581266,0.16576205,0.16571146,0.16566089,0.16561033,0.1655598,0.16550927,0.16545878,0.16540827,0.1653578,0.16530733,0.16525687,0.16520646,0.16515605,0.16510566,0.16505526,0.16500491,0.16495453,0.1649042,0.16485387,0.16480356,0.16475329,0.16470297,0.16465273,0.16460247,0.16455226,0.16450204,0.16445184,0.16440165,0.16435148,0.16430134,0.16425118,0.16420107,0.16415094,0.16410084,0.16405076,0.16400069,0.16395065,0.16390063,0.1638506,0.16380061,0.16375063,0.16370067,0.16365069,0.16360076,0.16355082,0.16350092,0.16345102,0.16340113,0.16335128,0.16330142,0.1632516,0.16320178,0.16315196,0.1631022,0.16305242,0.16300264,0.16295291,0.16290317,0.16285348,0.16280377,0.16275407,0.16270442,0.16265476,0.16260512,0.16255552,0.16250591,0.16245632,0.16240674,0.16235717,0.16230762,0.1622581,0.16220857,0.16215909,0.1621096,0.16206013,0.16201067,0.16196124,0.1619118,0.16186239,0.161813,0.16176362,0.16171426,0.16166489,0.16161557,0.16156624,0.16151695,0.16146766,0.16141838,0.16136912,0.16131988,0.16127066,0.16122143,0.16117223,0.16112305,0.16107388,0.16102472,0.16097559,0.16092645,0.16087735,0.16082826,0.16077918,0.16073012,0.16068107,0.16063204,0.16058302,0.16053401,0.16048501,0.16043603,0.16038708,0.16033813,0.16028921,0.16024029,0.16019139,0.16014248,0.16009365,0.16004477,0.15999594,0.15994711,0.1598983,0.15984951,0.15980075,0.15975195,0.15970321,0.1596545,0.15960576,0.15955706,0.15950835,0.15945968,0.15941101,0.15936236,0.15931374,0.15926513,0.15921652,0.15916793,0.15911937,0.15907082,0.15902226,0.15897374,0.15892522,0.15887673,0.15882823,0.15877977,0.15873131,0.15868287,0.15863447,0.15858604,0.15853766,0.15848927,0.1584409,0.15839255,0.15834421,0.1582959,0.15824758,0.15819928,0.15815102,0.15810277,0.15805452,0.15800627,0.15795806,0.15790984,0.15786166,0.15781349,0.15776531,0.15771717,0.15766905,0.15762094,0.15757284,0.15752475,0.15747668,0.15742862,0.1573806,0.15733255,0.15728454,0.15723655,0.15718855,0.15714058,0.15709263,0.1570447,0.15699677,0.15694886,0.15690097,0.15685308,0.15680522,0.15675737,0.15670952,0.15666172,0.1566139,0.1565661,0.15651833,0.15647058,0.15642281,0.1563751,0.15632735,0.15627965,0.15623197,0.15618429,0.15613662,0.15608898,0.15604135,0.15599373,0.15594612,0.15589853,0.15585096,0.1558034,0.15575585,0.15570831,0.1556608,0.1556133,0.15556578,0.15551834,0.15547088,0.15542342,0.15537602,0.1553286,0.15528119,0.15523382,0.15518643,0.15513907,0.15509172,0.15504439,0.15499708,0.15494978,0.1549025,0.15485522,0.15480797,0.15476073,0.1547135,0.15466629,0.1546191,0.15457189,0.15452473,0.15447758,0.15443043,0.15438332,0.1543362,0.15428911,0.15424201,0.15419497,0.1541479,0.15410084,0.15405382,0.15400681,0.15395981,0.15391283,0.15386584,0.1538189,0.15377197,0.15372503,0.15367813,0.15363123,0.15358435,0.15353748,0.15349062,0.15344378,0.15339695,0.15335014,0.15330335,0.15325657,0.1532098,0.15316305,0.1531163,0.15306959,0.15302287,0.15297617,0.15292948,0.15288281,0.15283617,0.15278952,0.15274289,0.1526963,0.15264969,0.15260309,0.15255654,0.15250999,0.15246344,0.15241691,0.15237041,0.15232389,0.15227741,0.15223093,0.15218449,0.15213804,0.15209161,0.1520452,0.15199882,0.15195242,0.15190604,0.15185969,0.15181334,0.15176703,0.15172072,0.1516744,0.15162812,0.15158187,0.15153559,0.15148936,0.15144311,0.15139692,0.1513507,0.15130451,0.15125835,0.15121217,0.15116604,0.15111992,0.15107378,0.15102768,0.1509816,0.15093552,0.15088947,0.1508434,0.1507974,0.15075137,0.15070537,0.15065938,0.1506134,0.15056743,0.15052149,0.15047555,0.15042964,0.15038371,0.15033783,0.15029196,0.1502461,0.15020025,0.15015441,0.15010859,0.15006278,0.15001698,0.1499712,0.14992544,0.1498797,0.14983396,0.14978823,0.14974251,0.14969681,0.14965115,0.14960547,0.14955981,0.14951417,0.14946856,0.14942293,0.14937733,0.14933173,0.14928618,0.14924061,0.14919508,0.14914954,0.14910401,0.14905854,0.14901306,0.14896756,0.14892212,0.14887665,0.14883123,0.14878581,0.1487404,0.14869502,0.14864963,0.14860427,0.14855893,0.14851359,0.14846827,0.14842296,0.14837766,0.14833239,0.14828712,0.14824185,0.14819664,0.14815141,0.14810619,0.14806099,0.14801581,0.14797065,0.1479255,0.14788036,0.1478352,0.1477901,0.147745,0.14769992,0.14765485,0.1476098,0.14756474,0.14751971,0.14747469,0.14742969,0.14738469,0.14733972,0.14729477,0.1472498,0.14720486,0.14715996,0.14711504,0.14707014,0.14702526,0.14698039,0.14693554,0.14689071,0.14684588,0.14680107,0.14675628,0.1467115,0.14666672,0.14662196,0.14657721,0.14653248,0.14648777,0.14644305,0.14639838,0.14635369,0.14630903,0.14626439,0.14621975,0.14617513,0.14613053,0.14608593,0.14604135,0.14599676,0.14595222,0.14590769,0.14586316,0.14581864,0.14577414,0.14572966,0.14568518,0.14564073,0.1455963,0.14555186,0.14550743,0.14546303,0.14541866,0.14537427,0.1453299,0.14528555,0.14524123,0.14519688,0.1451526,0.14510831,0.145064,0.14501974,0.14497548,0.14493123,0.14488702,0.1448428,0.14479859,0.14475441,0.14471023,0.14466608,0.14462192,0.14457779,0.14453366,0.14448956,0.14444546,0.1444014,0.14435732,0.14431328,0.14426923,0.14422522,0.14418119,0.1441372,0.1440932,0.14404924,0.14400528,0.14396131,0.14391738,0.14387347,0.14382955,0.14378567,0.1437418,0.14369793,0.14365408,0.14361025,0.14356641,0.1435226,0.14347881,0.14343503,0.14339125,0.14334749,0.14330375,0.14326003,0.14321631,0.14317259,0.14312892,0.14308523,0.14304157,0.1429979,0.14295428,0.14291066,0.14286704,0.14282344,0.14277986,0.14273627,0.14269273,0.14264919,0.14260565,0.14256212,0.14251862,0.14247513,0.14243165,0.14238818,0.14234473,0.14230129,0.14225787,0.14221446,0.14217106,0.14212768,0.1420843,0.14204095,0.14199759,0.14195426,0.14191094,0.14186764,0.14182435,0.14178106,0.1417378,0.14169455,0.1416513,0.14160809,0.14156486,0.14152166,0.14147846,0.1414353,0.14139214,0.14134899,0.14130585,0.14126272,0.14121962,0.14117652,0.14113346,0.14109038,0.14104733,0.14100428,0.14096124,0.14091823,0.14087522,0.14083222,0.14078926,0.1407463,0.14070335,0.14066042,0.14061747,0.14057456,0.14053167,0.1404888,0.1404459,0.14040303,0.1403602,0.14031737,0.14027457,0.14023176,0.14018895,0.14014615,0.14010338,0.14006063,0.14001791,0.13997518,0.13993247,0.13988976,0.13984707,0.1398044,0.13976173,0.13971908,0.13967644,0.13963382,0.1395912,0.1395486,0.13950601,0.13946345,0.13942088,0.13937835,0.13933583,0.13929328,0.13925079,0.13920829,0.1391658,0.13912335,0.13908088,0.13903843,0.138996,0.13895358,0.13891119,0.1388688,0.13882643,0.13878405,0.1387417,0.13869937,0.13865703,0.13861473,0.13857241,0.13853014,0.13848786,0.13844559,0.13840336,0.13836111,0.13831888,0.13827667,0.13823448,0.1381923,0.13815011,0.13810797,0.13806581,0.13802369,0.13798156,0.13793947,0.13789736,0.13785529,0.13781321,0.13777116,0.13772912,0.13768709,0.13764508,0.13760306,0.13756107,0.1375191,0.13747711,0.13743517,0.13739322,0.1373513,0.13730939,0.13726749,0.1372256,0.13718373,0.13714185,0.1371,0.13705817,0.13701634,0.13697454,0.13693273,0.13689093,0.13684916,0.13680741,0.13676566,0.13672392,0.1366822,0.13664049,0.1365988,0.1365571,0.13651542,0.13647376,0.13643211,0.13639049,0.13634886,0.13630725,0.13626565,0.13622408,0.1361825,0.13614094,0.1360994,0.13605787,0.13601635,0.13597484,0.13593335,0.13589187,0.13585038,0.13580894,0.13576749,0.13572606,0.13568464,0.13564323,0.13560183,0.13556047,0.13551909,0.13547774,0.1354364,0.13539506,0.13535374,0.13531244,0.13527115,0.13522987,0.13518861,0.13514735,0.1351061,0.13506489,0.13502367,0.13498245,0.13494125,0.13490008,0.1348589,0.13481775,0.13477662,0.1347355,0.13469437,0.13465326,0.13461217,0.13457109,0.13453001,0.13448897,0.13444793,0.1344069,0.13436589,0.1343249,0.13428389,0.1342429,0.13420194,0.13416098,0.13412005,0.13407911,0.1340382,0.13399729,0.1339564,0.13391551,0.13387467,0.1338338,0.13379297,0.13375212,0.13371132,0.13367051,0.13362972,0.13358895,0.13354819,0.13350742,0.13346668,0.13342595,0.13338523,0.13334453,0.13330384,0.13326316,0.13322249,0.13318183,0.13314119,0.13310055,0.13305995,0.13301934,0.13297874,0.13293818,0.1328976,0.13285704,0.13281651,0.13277596,0.13273545,0.13269494,0.13265444,0.13261397,0.13257349,0.13253304,0.1324926,0.13245216,0.13241175,0.13237134,0.13233094,0.13229056,0.13225019,0.13220984,0.13216949,0.13212915,0.13208884,0.13204852,0.13200822,0.13196795,0.13192768,0.1318874,0.13184716,0.13180692,0.1317667,0.13172649,0.13168629,0.1316461,0.13160594,0.13156576,0.13152562,0.13148548,0.13144536,0.13140525,0.13136515,0.13132507,0.13128497,0.13124491,0.13120486,0.13116482,0.13112478,0.1310848,0.13104478,0.13100477,0.13096482,0.13092485,0.13088489,0.13084495,0.13080502,0.1307651,0.1307252,0.1306853,0.13064542,0.13060556,0.1305657,0.13052586,0.13048601,0.13044621,0.1304064,0.13036662,0.13032681,0.13028704,0.13024728,0.13020754,0.1301678,0.13012809,0.13008837,0.13004866,0.130009,0.12996931,0.12992965,0.12989001,0.12985036,0.12981074,0.12977113,0.12973152,0.12969193,0.12965235,0.12961277,0.12957323,0.1295337,0.12949416,0.12945464,0.12941514,0.12937565,0.12933618,0.12929669,0.12925725,0.12921779,0.12917836,0.12913893,0.12909953,0.12906013,0.12902075,0.12898138,0.12894201,0.12890266,0.12886333,0.12882401,0.12878469,0.12874539,0.1287061,0.12866682,0.12862755,0.12858832,0.12854907,0.12850985,0.12847061,0.12843142,0.12839222,0.12835304,0.12831388,0.12827471,0.12823558,0.12819643,0.12815732,0.12811822,0.12807912,0.12804003,0.12800094,0.12796189,0.12792285,0.12788379,0.12784478,0.12780577,0.12776677,0.12772776,0.1276888,0.12764983,0.12761088,0.12757193,0.12753299,0.12749407,0.12745516,0.12741627,0.12737739,0.12733851,0.12729967,0.1272608,0.12722199,0.12718314,0.12714434,0.12710553,0.12706675,0.12702796,0.1269892,0.12695046,0.12691171,0.12687297,0.12683427,0.12679556,0.12675688,0.1267182,0.12667951,0.12664086,0.12660222,0.12656358,0.12652496,0.12648633,0.12644774,0.12640914,0.12637058,0.12633201,0.12629347,0.12625492,0.12621638,0.12617788,0.12613937,0.12610087,0.1260624,0.12602393,0.12598547,0.12594701,0.12590858,0.12587017,0.12583175,0.12579335,0.12575497,0.12571658,0.12567821,0.12563987,0.12560153,0.12556319,0.12552488,0.12548657,0.12544829,0.12540999,0.12537174,0.12533347,0.12529522,0.12525697,0.12521876,0.12518054,0.12514235,0.12510416,0.12506598,0.12502782,0.12498966,0.12495151,0.12491339,0.12487526,0.12483716,0.124799065,0.12476098,0.1247229,0.12468484,0.12464679,0.12460875,0.124570735,0.124532714,0.12449471,0.12445672,0.12441874,0.124380775,0.12434282,0.12430487,0.124266945,0.124229014,0.12419111,0.12415319,0.12411532,0.12407745,0.124039575,0.12400172,0.12396388,0.12392606,0.12388823,0.12385043,0.12381264,0.12377485,0.123737074,0.12369932,0.12366158,0.12362383,0.1235861,0.12354839,0.12351069,0.123472996,0.12343531,0.123397656,0.12335999,0.123322345,0.12328472,0.12324709,0.123209484,0.12317187,0.12313429,0.12309672,0.123059146,0.123021595,0.12298405,0.12294652,0.12290901,0.1228715,0.12283401,0.12279652,0.122759044,0.122721575,0.122684136,0.1226467,0.122609265,0.12257185,0.12253444,0.12249705,0.12245967,0.1224223,0.12238494,0.12234759,0.12231026,0.12227292,0.12223562,0.12219831,0.122161016,0.12212375,0.12208647,0.12204921,0.122011974,0.121974744,0.12193751,0.121900305,0.121863104,0.12182591,0.12178873,0.12175158,0.12171442,0.12167728,0.12164014,0.121603034,0.1215659,0.12152883,0.12149172,0.12145465,0.1214176,0.12138053,0.1213435,0.121306464,0.12126945,0.12123245,0.121195436,0.12115846,0.121121496,0.121084526,0.12104757,0.12101063,0.120973706,0.120936796,0.12089988,0.12086298,0.1208261,0.12078923,0.12075237,0.12071553,0.12067867,0.12064186,0.120605044,0.12056824,0.12053144,0.12049466,0.12045789,0.120421134,0.12038439,0.12034764,0.12031092,0.12027421,0.12023751,0.120200805,0.12016413,0.120127454,0.12009079,0.120054156,0.12001751,0.119980894,0.11994427,0.11990768,0.11987108,0.119834505,0.11979793,0.11976136,0.119724825,0.119688295,0.11965177,0.11961524,0.119578734,0.11954225,0.119505785,0.11946931,0.11943286,0.1193964,0.11935997,0.119323544,0.119287126,0.11925072,0.11921433,0.11917795,0.11914158,0.11910523,0.11906888,0.11903255,0.118996225,0.1189599,0.1189236,0.118887305,0.118851036,0.11881476,0.118778504,0.11874225,0.11870601,0.1186698,0.11863358,0.11859737,0.118561186,0.118525006,0.11848884,0.118452676,0.11841653,0.11838038,0.11834426,0.11830814,0.11827205,0.118235946,0.11819987,0.118163794,0.11812774,0.11809169,0.11805565,0.11801963,0.1179836,0.11794761,0.117911614,0.117875636,0.11783967,0.1178037,0.117767744,0.1177318,0.117695875,0.11765996,0.11762407,0.11758816,0.11755228,0.117516406,0.11748054,0.117444694,0.11740885,0.11737303,0.117337205,0.1173014,0.11726561,0.117229804,0.11719405,0.11715828,0.11712252,0.11708679,0.11705105,0.11701533,0.11697963,0.116943926,0.11690824,0.11687256,0.1168369,0.11680125,0.116765596,0.11672996,0.116694346,0.11665873,0.11662313,0.116587535,0.116551965,0.1165164,0.116480835,0.116445296,0.11640975,0.11637424,0.11633872,0.11630322,0.11626773,0.116232246,0.116196774,0.116161324,0.116125874,0.116090424,0.11605499,0.1160196,0.11598417,0.11594879,0.11591341,0.11587803,0.11584268,0.115807325,0.11577198,0.11573665,0.115701325,0.115666024,0.115630716,0.11559543,0.11556017,0.115524895,0.11548963,0.1154544,0.115419164,0.115383945,0.11534873,0.11531353,0.11527834,0.11524316,0.115207985,0.11517284,0.1151377,0.11510255,0.11506742,0.115032315,0.1149972,0.11496212,0.11492703,0.114891954,0.114856906,0.114821844,0.11478681,0.114751786,0.11471677,0.11468175,0.114646755,0.11461177,0.1145768,0.11454183,0.11450688,0.114471935,0.114437,0.114402086,0.11436717,0.114332266,0.11429737,0.114262484,0.11422762,0.11419277,0.114157915,0.114123076,0.11408826,0.114053436,0.114018634,0.11398385,0.11394906,0.11391428,0.113879524,0.11384477,0.113810025,0.1137753,0.11374056,0.113705866,0.11367116,0.113636464,0.113601804,0.113567136,0.113532476,0.11349782,0.113463186,0.11342857,0.113393955,0.113359354,0.113324754,0.11329017,0.11325559,0.11322104,0.11318648,0.113151945,0.11311742,0.11308289,0.11304839,0.11301389,0.112979405,0.11294492,0.11291046,0.112876005,0.11284154,0.112807125,0.112772696,0.11273828,0.112703875,0.112669475,0.1126351,0.11260072,0.11256637,0.112532005,0.11249767,0.11246333,0.11242902,0.112394705,0.11236041,0.11232613,0.112291835,0.11225757,0.11222333,0.11218908,0.112154834,0.11212062,0.11208639,0.112052195,0.11201799,0.11198381,0.111949645,0.11191548,0.11188132,0.111847185,0.111813046,0.11177893,0.11174481,0.11171071,0.11167663,0.11164255,0.111608475,0.11157442,0.11154037,0.11150633,0.111472294,0.11143828,0.11140428,0.11137028,0.1113363,0.111302316,0.11126835,0.1112344,0.11120045,0.11116651,0.11113259,0.111098684,0.11106477,0.111030884,0.110997,0.11096312,0.110929266,0.11089542,0.11086158,0.11082774,0.11079391,0.110760115,0.110726304,0.110692516,0.11065873,0.11062496,0.1105912,0.11055747,0.110523716,0.11048999,0.11045627,0.110422574,0.11038887,0.110355176,0.110321514,0.11028783,0.11025419,0.11022054,0.1101869,0.11015327,0.110119656,0.11008606,0.11005247,0.11001888,0.1099853,0.10995174,0.109918185,0.109884635,0.10985111,0.10981759,0.109784074,0.10975056,0.109717086,0.109683596,0.109650135,0.10961667,0.10958322,0.109549776,0.109516345,0.109482914,0.109449506,0.10941612,0.109382726,0.10934934,0.10931596,0.10928261,0.10924926,0.10921592,0.10918259,0.10914927,0.109115966,0.10908266,0.10904939,0.109016106,0.10898283,0.10894957,0.10891633,0.10888309,0.10884985,0.108816646,0.108783446,0.10875024,0.10871706,0.10868388,0.108650714,0.10861755,0.1085844,0.10855127,0.10851814,0.10848503,0.10845192,0.10841882,0.10838574,0.10835267,0.1083196,0.108286545,0.108253494,0.10822046,0.108187445,0.10815442,0.10812141,0.10808842,0.108055435,0.10802246,0.1079895,0.10795654,0.107923605,0.10789066,0.10785774,0.107824825,0.10779192,0.10775903,0.107726134,0.10769327,0.107660405,0.10762754,0.1075947,0.10756187,0.107529044,0.107496224,0.10746343,0.10743064,0.10739784,0.10736508,0.1073323,0.10729955,0.107266806,0.10723408,0.107201345,0.107168645,0.10713594,0.107103236,0.10707056,0.10703788,0.107005216,0.10697257,0.10693992,0.10690729,0.10687465,0.10684205,0.106809445,0.10677685,0.10674425,0.10671169,0.10667913,0.10664657,0.106614016,0.10658149,0.106548965,0.10651644,0.10648395,0.10645145,0.10641896,0.10638648,0.10635402,0.10632157,0.10628912,0.10625668,0.106224254,0.10619184,0.10615944,0.10612704,0.10609464,0.10606228,0.10602991,0.10599755,0.105965205,0.10593286,0.10590054,0.10586823,0.10583591,0.105803624,0.10577133,0.10573906,0.10570679,0.105674535,0.10564228,0.10561003,0.10557781,0.10554559,0.10551339,0.10548118,0.10544898,0.10541681,0.10538464,0.10535248,0.10532035,0.10528819,0.105256066,0.105223946,0.105191834,0.10515973,0.10512764,0.10509556,0.10506348,0.10503143,0.10499938,0.10496733,0.10493531,0.10490327,0.10487126,0.10483926,0.10480727,0.10477528,0.10474332,0.10471134,0.10467938,0.10464745,0.10461551,0.10458358,0.10455167,0.10451976,0.10448787,0.104455985,0.10442412,0.10439224,0.10436038,0.10432853,0.1042967,0.10426486,0.10423305,0.104201235,0.10416944,0.10413765,0.104105875,0.104074106,0.10404234,0.1040106,0.10397886,0.10394713,0.10391541,0.10388369,0.10385199,0.103820294,0.103788614,0.10375694,0.10372528,0.10369362,0.10366198,0.10363034,0.103598714,0.10356711,0.1035355,0.103503905,0.10347232,0.10344074,0.10340918,0.10337761,0.10334608,0.103314534,0.103283,0.1032515,0.10321998,0.103188485,0.103156984,0.10312552,0.103094034,0.10306258,0.10303113,0.10299969,0.10296825,0.102936834,0.102905415,0.10287402,0.10284263,0.10281124,0.102779865,0.1027485,0.10271715,0.1026858,0.102654465,0.102623135,0.10259182,0.10256052,0.10252922,0.10249793,0.10246664,0.10243538,0.10240412,0.10237286,0.102341615,0.102310404,0.102279164,0.10224797,0.102216765,0.102185555,0.10215439,0.102123216,0.10209205,0.10206089,0.10202973,0.101998605,0.10196748,0.10193636,0.10190526,0.10187416,0.10184307,0.101812,0.10178092,0.10174986,0.101718806,0.10168777,0.101656735,0.10162572,0.10159469,0.1015637,0.10153271,0.10150172,0.10147074,0.10143978,0.101408824,0.10137788,0.10134694,0.101316,0.10128509,0.10125418,0.10122328,0.1011924,0.10116152,0.10113064,0.101099774,0.10106894,0.10103809,0.101007245,0.10097643,0.10094562,0.10091481,0.10088401,0.10085323,0.100822456,0.100791685,0.10076092,0.10073018,0.10069945,0.1006687,0.100637995,0.100607276,0.10057657,0.10054588,0.1005152,0.10048452,0.10045386,0.100423194,0.100392565,0.10036192,0.1003313,0.10030066,0.10027007,0.10023947,0.10020888,0.10017831,0.100147724,0.10011717,0.10008661,0.10005606,0.10002554,0.09999501,0.0999645,0.09993399,0.0999035,0.099873,0.099842526,0.09981206,0.0997816,0.09975115,0.0997207,0.09969028,0.09965986,0.09962945,0.09959904,0.09956864,0.09953827,0.09950788,0.09947752,0.09944716,0.09941681,0.099386476,0.099356145,0.09932582,0.09929551,0.09926522,0.099234916,0.09920464,0.09917436,0.0991441,0.099113844,0.099083595,0.09905336,0.09902313,0.098992914,0.0989627,0.098932505,0.09890231,0.09887214,0.09884196,0.0988118,0.09878163,0.09875149,0.09872136,0.09869123,0.09866112,0.09863102,0.0986009,0.09857082,0.098540746,0.09851067,0.09848061,0.09845056,0.09842051,0.098390475,0.09836045,0.09833043,0.09830042,0.09827043,0.09824045,0.09821046,0.098180495,0.09815053,0.09812058,0.098090634,0.0980607,0.09803077,0.098000854,0.097970955,0.097941056,0.097911164,0.09788129,0.09785142,0.097821556,0.09779171,0.09776187,0.09773203,0.097702205,0.09767239,0.097642586,0.09761278,0.09758299,0.09755321,0.09752344,0.09749369,0.09746393,0.09743419,0.09740445,0.09737474,0.09734502,0.09731531,0.09728561,0.09725592,0.09722625,0.09719657,0.09716691,0.097137265,0.09710761,0.09707799,0.097048365,0.09701875,0.09698913,0.096959546,0.096929945,0.09690037,0.0968708,0.09684124,0.096811675,0.09678213,0.096752614,0.09672309,0.09669357,0.09666406,0.09663456,0.09660507,0.096575595,0.096546106,0.096516654,0.0964872,0.09645776,0.09642832,0.09639888,0.096369475,0.09634006,0.09631067,0.096281275,0.09625189,0.09622252,0.09619316,0.09616381,0.09613446,0.09610511,0.09607579,0.09604647,0.09601716,0.095987864,0.095958576,0.095929295,0.095900014,0.095870756,0.09584149,0.09581225,0.095783,0.095753774,0.09572455,0.09569534,0.09566614,0.09563694,0.095607765,0.09557859,0.09554942,0.09552026,0.095491104,0.095461965,0.09543283,0.095403716,0.09537461,0.09534549,0.09531639,0.09528731,0.09525823,0.095229164,0.0952001,0.09517105,0.09514201,0.09511297,0.095083944,0.09505493,0.09502592,0.094996914,0.09496793,0.09493895,0.09490997,0.09488101,0.09485207,0.09482312,0.094794184,0.094765246,0.09473633,0.09470742,0.09467853,0.09464962,0.09462075,0.09459186,0.09456301,0.09453414,0.094505295,0.094476454,0.09444763,0.09441881,0.09438998,0.094361186,0.09433239,0.09430361,0.094274834,0.094246045,0.09421729,0.09418853,0.0941598,0.09413107,0.09410234,0.094073616,0.09404492,0.09401621,0.093987525,0.09395885,0.09393016,0.09390151,0.09387285,0.0938442,0.093815565,0.09378693,0.09375831,0.0937297,0.093701094,0.09367251,0.093643926,0.093615346,0.09358677,0.093558215,0.09352966,0.09350113,0.093472585,0.093444064,0.09341554,0.09338704,0.09335855,0.09333005,0.09330157,0.093273096,0.093244635,0.09321618,0.093187734,0.093159296,0.09313086,0.09310245,0.09307404,0.09304564,0.093017235,0.09298884,0.09296047,0.09293211,0.09290374,0.0928754,0.09284705,0.09281872,0.092790395,0.092762075,0.09273376,0.09270547,0.092677176,0.0926489,0.092620626,0.09259236,0.092564106,0.09253585,0.09250761,0.09247938,0.092451155,0.092422955,0.09239475,0.092366554,0.09233836,0.09231018,0.09228202,0.09225386,0.09222569,0.09219756,0.09216942,0.09214129,0.092113174,0.09208507,0.09205696,0.092028864,0.092000775,0.09197271,0.09194464,0.091916576,0.09188853,0.091860496,0.09183246,0.09180443,0.09177642,0.09174841,0.091720425,0.091692425,0.09166445,0.09163648,0.09160851,0.09158055,0.0915526,0.09152466,0.091496736,0.09146881,0.09144089,0.091413,0.0913851,0.09135721,0.091329336,0.09130146,0.091273606,0.09124574,0.0912179,0.09119006,0.09116223,0.09113442,0.09110661,0.0910788,0.09105101,0.09102322,0.09099544,0.09096767,0.09093991,0.09091216,0.09088442,0.090856686,0.090828955,0.09080124,0.09077353,0.09074584,0.09071814,0.09069046,0.090662785,0.09063511,0.09060745,0.09057981,0.090552166,0.090524524,0.0904969,0.090469286,0.09044168,0.090414084,0.090386495,0.090358905,0.09033134,0.090303764,0.090276204,0.09024865,0.090221114,0.090193585,0.09016606,0.09013855,0.090111025,0.09008355,0.09005605,0.09002857,0.09000109,0.08997363,0.089946166,0.08991872,0.08989127,0.08986386,0.089836426,0.089809,0.089781605,0.0897542,0.08972681,0.08969943,0.08967206,0.08964469,0.089617334,0.08958999,0.08956265,0.08953532,0.08950799,0.089480676,0.08945338,0.08942608,0.089398794,0.0893715,0.089344226,0.08931697,0.08928971,0.08926246,0.089235224,0.08920799,0.08918076,0.08915355,0.08912635,0.089099154,0.08907196,0.08904478,0.0890176,0.08899044,0.088963285,0.088936135,0.088909,0.08888186,0.08885473,0.08882762,0.08880051,0.08877341,0.088746324,0.08871924,0.088692166,0.088665105,0.08863804,0.08861099,0.08858395,0.088556916,0.0885299,0.08850288,0.08847587,0.08844886,0.08842188,0.088394895,0.08836792,0.08834096,0.088314,0.08828704,0.0882601,0.088233165,0.08820625,0.08817933,0.088152416,0.08812551,0.08809862,0.08807173,0.08804486,0.08801799,0.08799113,0.08796428,0.08793744,0.0879106,0.08788378,0.08785695,0.08783014,0.087803334,0.08777655,0.08774976,0.08772298,0.08769622,0.08766945,0.08764269,0.087615944,0.087589204,0.08756248,0.08753576,0.08750905,0.08748234,0.087455645,0.087428965,0.08740228,0.087375596,0.087348945,0.08732228,0.08729564,0.08726899,0.087242365,0.08721574,0.08718913,0.08716252,0.08713592,0.08710933,0.08708274,0.087056175,0.087029606,0.087003045,0.0869765,0.08694995,0.08692342,0.0868969,0.08687037,0.08684386,0.08681737,0.08679087,0.08676439,0.0867379,0.08671144,0.086684965,0.086658515,0.08663207,0.086605646,0.08657921,0.08655279,0.08652638,0.086499974,0.08647358,0.08644718,0.08642081,0.08639444,0.08636806,0.08634171,0.08631536,0.08628902,0.08626269,0.08623637,0.08621005,0.086183734,0.08615743,0.086131155,0.08610486,0.086078584,0.08605231,0.086026065,0.08599981,0.08597356,0.08594733,0.085921094,0.085894875,0.085868664,0.08584246,0.08581626,0.085790075,0.085763894,0.08573773,0.08571156,0.0856854,0.08565925,0.08563311,0.085606985,0.085580856,0.085554734,0.08552863,0.085502535,0.085476436,0.08545035,0.085424274,0.085398205,0.08537215,0.08534609,0.085320055,0.085294016,0.08526798,0.085241966,0.085215956,0.085189946,0.08516396,0.085137956,0.08511198,0.085086,0.08506004,0.08503408,0.08500814,0.08498219,0.08495624,0.08493033,0.08490442,0.0848785,0.0848526,0.08482671,0.084800825,0.08477495,0.084749065,0.084723204,0.08469736,0.084671505,0.084645666,0.084619835,0.08459402,0.084568195,0.08454239,0.08451659,0.084490806,0.08446502,0.08443924,0.08441348,0.08438771,0.08436196,0.084336214,0.08431049,0.08428475,0.08425903,0.08423332,0.08420761,0.08418191,0.08415622,0.08413055,0.08410487,0.0840792,0.08405354,0.08402789,0.08400225,0.08397662,0.083951004,0.083925374,0.08389975,0.08387416,0.083848566,0.08382297,0.083797395,0.08377182,0.083746254,0.0837207,0.08369515,0.08366962,0.08364408,0.08361855,0.08359303,0.08356752,0.08354203,0.08351653,0.08349105,0.08346556,0.083440095,0.08341463,0.08338918,0.08336373,0.08333829,0.083312854,0.08328743,0.08326202,0.083236605,0.083211206,0.083185814,0.08316042,0.08313505,0.08310967,0.08308432,0.08305896,0.083033614,0.083008274,0.08298294,0.082957625,0.082932316,0.08290699,0.082881704,0.0828564,0.082831115,0.08280584,0.08278058,0.082755305,0.082730055,0.08270481,0.08267957,0.082654335,0.082629114,0.082603894,0.0825787,0.08255349,0.0825283,0.08250311,0.08247794,0.082452774,0.082427606,0.08240245,0.0823773,0.08235217,0.08232704,0.082301915,0.0822768,0.08225169,0.08222659,0.082201496,0.08217642,0.08215133,0.08212626,0.0821012,0.08207615,0.0820511,0.08202606,0.08200103,0.081976004,0.08195099,0.08192597,0.081900984,0.08187599,0.081851,0.081826024,0.08180106,0.08177608,0.08175113,0.08172618,0.08170124,0.08167632,0.08165139,0.08162647,0.08160157,0.08157665,0.08155177,0.08152687,0.081502,0.08147713,0.081452265,0.0814274,0.081402555,0.081377715,0.08135288,0.08132806,0.08130323,0.08127843,0.081253625,0.08122882,0.081204034,0.081179254,0.08115448,0.081129715,0.081104964,0.081080206,0.08105546,0.08103073,0.081006005,0.08098128,0.08095657,0.08093187,0.080907166,0.080882475,0.0808578,0.08083312,0.08080845,0.08078379,0.08075913,0.08073449,0.08070985,0.08068523,0.080660604,0.08063599,0.08061138,0.08058678,0.08056219,0.0805376,0.08051302,0.08048846,0.08046389,0.08043934,0.080414794,0.080390245,0.080365725,0.08034119,0.08031668,0.08029217,0.08026766,0.08024317,0.08021868,0.080194205,0.08016973,0.08014526,0.08012081,0.080096364,0.08007191,0.08004748,0.08002305,0.07999863,0.07997422,0.07994981,0.07992542,0.07990102,0.07987665,0.07985226,0.0798279,0.079803534,0.079779185,0.07975485,0.0797305,0.07970617,0.07968184,0.07965753,0.07963322,0.07960892,0.07958461,0.07956034,0.07953605,0.07951179,0.07948753,0.07946326,0.079439014,0.07941478,0.07939054,0.07936632,0.07934209,0.07931788,0.079293676,0.07926947,0.07924529,0.07922111,0.07919692,0.07917276,0.079148605,0.07912444,0.079100296,0.079076156,0.07905203,0.079027906,0.07900378,0.07897967,0.07895558,0.07893148,0.078907385,0.07888331,0.07885925,0.07883518,0.078811124,0.07878706,0.07876302,0.078738995,0.07871496,0.07869094,0.078666925,0.07864292,0.078618914,0.07859493,0.07857094,0.07854696,0.078522995,0.078499034,0.07847508,0.078451134,0.078427196,0.07840326,0.078379326,0.07835541,0.0783315,0.0783076,0.0782837,0.07825981,0.07823593,0.07821205,0.07818819,0.07816433,0.07814047,0.07811663,0.07809278,0.07806896,0.07804513,0.07802132,0.0779975,0.07797371,0.07794991,0.07792612,0.077902354,0.07787857,0.0778548,0.077831045,0.077807285,0.07778355,0.07775981,0.07773609,0.077712364,0.07768864,0.077664934,0.077641234,0.07761753,0.077593856,0.077570185,0.0775465,0.077522844,0.07749918,0.07747554,0.077451885,0.07742825,0.077404626,0.077381,0.0773574,0.077333786,0.077310175,0.07728659,0.077263,0.077239424,0.07721586,0.07719229,0.07716873,null],"type":"scatter","name":"|S(t)|","hovertemplate":"(%{x:.4f} ms, %{y:.3f} a.u.)","x":[3.935,3.96552130317688,3.9960426063537597,4.02656390953064,4.05708521270752,4.087606515884399,4.11812781906128,4.148649122238159,4.179170425415039,4.209691728591919,4.240213031768799,4.270734334945679,4.301255638122559,4.331776941299439,4.362298244476318,4.392819547653199,4.423340850830078,4.453862154006958,4.484383457183838,4.514904760360718,4.545426063537597,4.575947366714478,4.606468669891358,4.636989973068237,4.667511276245117,4.698032579421997,4.728553882598877,4.759075185775757,4.789596488952637,4.820117792129516,4.850639095306397,4.881160398483276,4.911681701660156,4.942203004837037,4.972724308013916,5.0032456111907955,5.033766914367676,5.064288217544556,5.0948095207214354,5.125330823898316,5.155852127075195,5.186373430252075,5.216894733428955,5.247416036605835,5.277937339782715,5.308458642959595,5.338979946136474,5.3695012493133545,5.400022552490235,5.430543855667114,5.4610651588439945,5.491586462020874,5.522107765197754,5.5526290683746335,5.583150371551514,5.613671674728393,5.6441929779052735,5.674714281082153,5.705235584259033,5.7357568874359135,5.766278190612793,5.796799493789672,5.827320796966553,5.857842100143433,5.888363403320312,5.918884706497193,5.949406009674073,5.979927312850952,6.010448616027832,6.040969919204712,6.071491222381592,6.102012525558472,6.132533828735351,6.163055131912231,6.193576435089112,6.224097738265991,6.254619041442871,6.285140344619752,6.315661647796631,6.34618295097351,6.376704254150391,6.407225557327271,6.43774686050415,6.46826816368103,6.49878946685791,6.52931077003479,6.55983207321167,6.590353376388549,6.62087467956543,6.65139598274231,6.681917285919189,6.712438589096069,6.74295989227295,6.773481195449829,6.8040024986267085,6.834523801803589,6.865045104980469,6.8955664081573484,6.926087711334228,6.956609014511109,6.987130317687988,7.017651620864868,7.048172924041748,7.078694227218628,7.109215530395508,7.139736833572387,7.1702581367492675,7.200779439926148,7.231300743103027,7.261822046279907,7.292343349456787,7.322864652633667,7.3533859558105465,7.383907258987427,7.414428562164307,7.4449498653411865,7.475471168518066,7.505992471694946,7.5365137748718265,7.567035078048706,7.597556381225585,7.628077684402466,7.658598987579346,7.689120290756225,7.719641593933106,7.750162897109986,7.780684200286865,7.811205503463745,7.841726806640625,7.872248109817505,7.902769412994385,7.933290716171264,7.963812019348145,7.994333322525025,8.024854625701904,8.055375928878783,8.085897232055665,8.116418535232544,8.146939838409423,8.177461141586303,8.207982444763184,8.238503747940063,8.269025051116943,8.299546354293824,8.330067657470703,8.360588960647583,8.391110263824462,8.421631567001343,8.452152870178223,8.482674173355102,8.513195476531981,8.543716779708863,8.574238082885742,8.604759386062621,8.635280689239503,8.665801992416382,8.696323295593261,8.72684459877014,8.757365901947022,8.787887205123901,8.81840850830078,8.84892981147766,8.879451114654541,8.90997241783142,8.9404937210083,8.971015024185181,9.00153632736206,9.03205763053894,9.06257893371582,9.0931002368927,9.12362154006958,9.15414284324646,9.184664146423339,9.21518544960022,9.2457067527771,9.276228055953979,9.30674935913086,9.33727066230774,9.367791965484619,9.398313268661498,9.42883457183838,9.459355875015259,9.489877178192138,9.520398481369018,9.550919784545899,9.581441087722778,9.611962390899658,9.642483694076539,9.673004997253418,9.703526300430298,9.734047603607177,9.764568906784058,9.795090209960938,9.825611513137817,9.856132816314696,9.886654119491578,9.917175422668457,9.947696725845336,9.978218029022218,10.008739332199097,10.039260635375976,10.069781938552856,10.100303241729737,10.130824544906616,10.161345848083496,10.191867151260375,10.222388454437256,10.252909757614136,10.283431060791015,10.313952363967894,10.344473667144776,10.374994970321655,10.405516273498534,10.436037576675416,10.466558879852295,10.497080183029174,10.527601486206054,10.558122789382935,10.588644092559814,10.619165395736694,10.649686698913573,10.680208002090454,10.710729305267334,10.741250608444213,10.771771911621094,10.802293214797974,10.832814517974853,10.863335821151733,10.893857124328614,10.924378427505493,10.954899730682373,10.985421033859252,11.015942337036133,11.046463640213013,11.076984943389892,11.107506246566773,11.138027549743653,11.168548852920532,11.199070156097411,11.229591459274292,11.260112762451172,11.290634065628051,11.32115536880493,11.351676671981812,11.382197975158691,11.41271927833557,11.443240581512452,11.473761884689331,11.50428318786621,11.53480449104309,11.565325794219971,11.59584709739685,11.62636840057373,11.65688970375061,11.68741100692749,11.71793231010437,11.74845361328125,11.77897491645813,11.80949621963501,11.84001752281189,11.870538825988769,11.90106012916565,11.93158143234253,11.962102735519409,11.99262403869629,12.02314534187317,12.053666645050049,12.084187948226928,12.11470925140381,12.145230554580689,12.175751857757568,12.20627316093445,12.236794464111329,12.267315767288208,12.297837070465087,12.328358373641969,12.358879676818848,12.389400979995727,12.419922283172607,12.450443586349488,12.480964889526367,12.511486192703247,12.542007495880128,12.572528799057007,12.603050102233887,12.633571405410766,12.664092708587647,12.694614011764527,12.725135314941406,12.755656618118286,12.786177921295167,12.816699224472046,12.847220527648926,12.877741830825807,12.908263134002686,12.938784437179566,12.969305740356445,12.999827043533326,13.030348346710205,13.060869649887085,13.091390953063964,13.121912256240845,13.152433559417725,13.182954862594604,13.213476165771485,13.243997468948365,13.274518772125244,13.305040075302124,13.335561378479005,13.366082681655884,13.396603984832764,13.427125288009643,13.457646591186524,13.488167894363404,13.518689197540283,13.549210500717164,13.579731803894044,13.610253107070923,13.640774410247802,13.671295713424684,13.701817016601563,13.732338319778442,13.762859622955322,13.793380926132203,13.823902229309082,13.854423532485962,13.884944835662843,13.915466138839722,13.945987442016602,13.976508745193481,14.007030048370362,14.037551351547242,14.068072654724121,14.098593957901,14.129115261077882,14.159636564254761,14.19015786743164,14.22067917060852,14.251200473785401,14.28172177696228,14.31224308013916,14.342764383316041,14.37328568649292,14.4038069896698,14.43432829284668,14.46484959602356,14.49537089920044,14.52589220237732,14.556413505554199,14.58693480873108,14.61745611190796,14.647977415084839,14.67849871826172,14.709020021438599,14.739541324615479,14.770062627792358,14.800583930969239,14.831105234146118,14.861626537322998,14.892147840499877,14.922669143676758,14.953190446853638,14.983711750030517,15.014233053207398,15.044754356384278,15.075275659561157,15.105796962738037,15.136318265914918,15.166839569091797,15.197360872268677,15.227882175445556,15.258403478622437,15.288924781799317,15.319446084976196,15.349967388153077,15.380488691329957,15.411009994506836,15.441531297683715,15.472052600860597,15.502573904037476,15.533095207214355,15.563616510391235,15.594137813568116,15.624659116744995,15.655180419921875,15.685701723098756,15.716223026275635,15.746744329452515,15.777265632629394,15.807786935806275,15.838308238983155,15.868829542160034,15.899350845336913,15.929872148513795,15.960393451690674,15.990914754867553,16.021436058044433,16.051957361221312,16.08247866439819,16.11299996757507,16.143521270751954,16.174042573928833,16.204563877105713,16.235085180282592,16.26560648345947,16.29612778663635,16.32664908981323,16.35717039299011,16.387691696166993,16.418212999343872,16.44873430252075,16.47925560569763,16.50977690887451,16.54029821205139,16.57081951522827,16.601340818405152,16.63186212158203,16.66238342475891,16.69290472793579,16.72342603111267,16.75394733428955,16.78446863746643,16.81498994064331,16.84551124382019,16.87603254699707,16.90655385017395,16.93707515335083,16.96759645652771,16.998117759704588,17.028639062881467,17.05916036605835,17.08968166923523,17.12020297241211,17.15072427558899,17.181245578765868,17.211766881942747,17.242288185119627,17.27280948829651,17.30333079147339,17.33385209465027,17.364373397827148,17.394894701004027,17.425416004180907,17.455937307357786,17.48645861053467,17.51697991371155,17.547501216888428,17.578022520065307,17.608543823242186,17.639065126419066,17.669586429595945,17.700107732772825,17.730629035949708,17.761150339126587,17.791671642303466,17.822192945480346,17.852714248657225,17.883235551834105,17.913756855010984,17.944278158187867,17.974799461364746,18.005320764541626,18.035842067718505,18.066363370895385,18.096884674072264,18.127405977249143,18.157927280426026,18.188448583602906,18.218969886779785,18.249491189956665,18.280012493133544,18.310533796310423,18.341055099487303,18.371576402664182,18.402097705841065,18.432619009017944,18.463140312194824,18.493661615371703,18.524182918548583,18.554704221725462,18.58522552490234,18.615746828079224,18.646268131256104,18.676789434432983,18.707310737609863,18.737832040786742,18.76835334396362,18.7988746471405,18.82939595031738,18.859917253494263,18.890438556671143,18.920959859848022,18.9514811630249,18.98200246620178,19.01252376937866,19.04304507255554,19.073566375732423,19.104087678909302,19.13460898208618,19.16513028526306,19.19565158843994,19.22617289161682,19.2566941947937,19.287215497970582,19.31773680114746,19.34825810432434,19.37877940750122,19.4093007106781,19.43982201385498,19.47034331703186,19.500864620208738,19.53138592338562,19.5619072265625,19.59242852973938,19.62294983291626,19.65347113609314,19.683992439270018,19.714513742446897,19.74503504562378,19.77555634880066,19.80607765197754,19.836598955154418,19.867120258331298,19.897641561508177,19.928162864685056,19.958684167861936,19.989205471038815,20.019726774215698,20.050248077392578,20.080769380569457,20.111290683746336,20.141811986923216,20.172333290100095,20.202854593276975,20.233375896453854,20.263897199630737,20.294418502807616,20.324939805984496,20.355461109161375,20.385982412338254,20.416503715515134,20.447025018692013,20.477546321868896,20.508067625045776,20.538588928222655,20.569110231399534,20.599631534576414,20.630152837753293,20.660674140930173,20.691195444107056,20.721716747283935,20.752238050460814,20.782759353637694,20.813280656814573,20.843801959991453,20.874323263168332,20.90484456634521,20.935365869522094,20.965887172698974,20.996408475875853,21.026929779052733,21.057451082229612,21.08797238540649,21.11849368858337,21.149014991760254,21.179536294937133,21.210057598114012,21.240578901290892,21.27110020446777,21.30162150764465,21.33214281082153,21.362664113998413,21.393185417175292,21.423706720352172,21.45422802352905,21.48474932670593,21.51527062988281,21.54579193305969,21.57631323623657,21.606834539413452,21.63735584259033,21.66787714576721,21.69839844894409,21.72891975212097,21.75944105529785,21.789962358474728,21.82048366165161,21.85100496482849,21.88152626800537,21.91204757118225,21.94256887435913,21.973090177536008,22.003611480712888,22.034132783889767,22.06465408706665,22.09517539024353,22.12569669342041,22.156217996597288,22.186739299774167,22.217260602951047,22.247781906127926,22.27830320930481,22.30882451248169,22.339345815658568,22.369867118835447,22.400388422012327,22.430909725189206,22.461431028366086,22.49195233154297,22.522473634719848,22.552994937896727,22.583516241073607,22.614037544250486,22.644558847427366,22.675080150604245,22.705601453781124,22.736122756958007,22.766644060134887,22.797165363311766,22.827686666488646,22.858207969665525,22.888729272842404,22.919250576019284,22.949771879196167,22.980293182373046,23.010814485549925,23.041335788726805,23.071857091903684,23.102378395080564,23.132899698257443,23.163421001434326,23.193942304611205,23.224463607788085,23.254984910964964,23.285506214141844,23.316027517318723,23.346548820495602,23.377070123672482,23.407591426849365,23.438112730026244,23.468634033203124,23.499155336380003,23.529676639556882,23.560197942733762,23.59071924591064,23.621240549087524,23.651761852264404,23.682283155441283,23.712804458618162,23.74332576179504,23.77384706497192,23.8043683681488,23.834889671325683,23.865410974502563,23.895932277679442,23.92645358085632,23.9569748840332,23.98749618721008,24.01801749038696,24.04853879356384,24.079060096740722,24.1095813999176,24.14010270309448,24.17062400627136,24.20114530944824,24.23166661262512,24.262187915802,24.29270921897888,24.32323052215576,24.35375182533264,24.38427312850952,24.4147944316864,24.44531573486328,24.475837038040158,24.506358341217037,24.53687964439392,24.5674009475708,24.59792225074768,24.62844355392456,24.658964857101438,24.689486160278317,24.720007463455197,24.75052876663208,24.78105006980896,24.81157137298584,24.842092676162718,24.872613979339597,24.903135282516477,24.933656585693356,24.96417788887024,24.99469919204712,25.025220495223998,25.055741798400877,25.086263101577757,25.116784404754636,25.147305707931515,25.177827011108395,25.208348314285278,25.238869617462157,25.269390920639037,25.299912223815916,25.330433526992795,25.360954830169675,25.391476133346554,25.421997436523437,25.452518739700317,25.483040042877196,25.513561346054075,25.544082649230955,25.574603952407834,25.605125255584714,25.635646558761596,25.666167861938476,25.696689165115355,25.727210468292235,25.757731771469114,25.788253074645993,25.818774377822873,25.849295680999752,25.879816984176635,25.910338287353515,25.940859590530394,25.971380893707273,26.001902196884153,26.032423500061032,26.06294480323791,26.093466106414795,26.123987409591674,26.154508712768553,26.185030015945433,26.215551319122312,26.24607262229919,26.27659392547607,26.30711522865295,26.337636531829833,26.368157835006713,26.398679138183592,26.42920044136047,26.45972174453735,26.49024304771423,26.52076435089111,26.551285654067993,26.581806957244872,26.61232826042175,26.64284956359863,26.67337086677551,26.70389216995239,26.73441347312927,26.764934776306152,26.79545607948303,26.82597738265991,26.85649868583679,26.88701998901367,26.91754129219055,26.94806259536743,26.978583898544308,27.00910520172119,27.03962650489807,27.07014780807495,27.10066911125183,27.13119041442871,27.161711717605588,27.192233020782467,27.22275432395935,27.25327562713623,27.28379693031311,27.31431823348999,27.344839536666868,27.375360839843747,27.405882143020627,27.43640344619751,27.46692474937439,27.49744605255127,27.527967355728148,27.558488658905027,27.589009962081906,27.619531265258786,27.650052568435665,27.68057387161255,27.711095174789428,27.741616477966307,27.772137781143186,27.802659084320066,27.833180387496945,27.863701690673825,27.894222993850708,27.924744297027587,27.955265600204466,27.985786903381346,28.016308206558225,28.046829509735105,28.077350812911984,28.107872116088867,28.138393419265746,28.168914722442626,28.199436025619505,28.229957328796385,28.260478631973264,28.290999935150143,28.321521238327023,28.352042541503906,28.382563844680785,28.413085147857664,28.443606451034544,28.474127754211423,28.504649057388303,28.535170360565182,28.565691663742065,28.596212966918944,28.626734270095824,28.657255573272703,28.687776876449583,28.718298179626462,28.74881948280334,28.77934078598022,28.809862089157104,28.840383392333983,28.870904695510863,28.901425998687742,28.93194730186462,28.9624686050415,28.99298990821838,29.023511211395263,29.054032514572143,29.084553817749022,29.1150751209259,29.14559642410278,29.17611772727966,29.20663903045654,29.237160333633422,29.267681636810302,29.29820293998718,29.32872424316406,29.35924554634094,29.38976684951782,29.4202881526947,29.45080945587158,29.48133075904846,29.51185206222534,29.54237336540222,29.5728946685791,29.60341597175598,29.63393727493286,29.664458578109738,29.69497988128662,29.7255011844635,29.75602248764038,29.78654379081726,29.817065093994138,29.847586397171018,29.878107700347897,29.90862900352478,29.93915030670166,29.96967160987854,30.000192913055418,30.030714216232298,30.061235519409177,30.091756822586056,30.122278125762936,30.15279942893982,30.183320732116698,30.213842035293577,30.244363338470457,30.274884641647336,30.305405944824216,30.335927248001095,30.366448551177978,30.396969854354857,30.427491157531737,30.458012460708616,30.488533763885496,30.519055067062375,30.549576370239254,30.580097673416137,30.610618976593017,30.641140279769896,30.671661582946776,30.702182886123655,30.732704189300534,30.763225492477414,30.793746795654293,30.824268098831176,30.854789402008056,30.885310705184935,30.915832008361814,30.946353311538694,30.976874614715573,31.007395917892453,31.037917221069335,31.068438524246215,31.098959827423094,31.129481130599974,31.160002433776853,31.190523736953732,31.221045040130612,31.25156634330749,31.282087646484374,31.312608949661254,31.343130252838133,31.373651556015012,31.404172859191892,31.43469416236877,31.46521546554565,31.495736768722534,31.526258071899413,31.556779375076292,31.587300678253172,31.61782198143005,31.64834328460693,31.67886458778381,31.709385890960693,31.739907194137572,31.77042849731445,31.80094980049133,31.83147110366821,31.86199240684509,31.89251371002197,31.92303501319885,31.95355631637573,31.98407761955261,32.01459892272949,32.04512022590637,32.07564152908325,32.10616283226013,32.13668413543701,32.16720543861389,32.197726741790774,32.22824804496765,32.25876934814453,32.28929065132141,32.31981195449829,32.35033325767517,32.38085456085205,32.41137586402893,32.44189716720581,32.47241847038269,32.50293977355957,32.53346107673645,32.56398237991333,32.59450368309021,32.62502498626709,32.65554628944397,32.68606759262085,32.71658889579773,32.74711019897461,32.777631502151486,32.80815280532837,32.83867410850525,32.86919541168213,32.89971671485901,32.93023801803589,32.96075932121277,32.991280624389645,33.02180192756653,33.052323230743404,33.08284453392029,33.11336583709717,33.143887140274046,33.17440844345093,33.204929746627805,33.23545104980469,33.265972352981564,33.29649365615845,33.32701495933533,33.357536262512205,33.38805756568909,33.418578868865964,33.44910017204285,33.47962147521972,33.510142778396606,33.54066408157349,33.571185384750365,33.60170668792725,33.63222799110412,33.66274929428101,33.69327059745788,33.723791900634765,33.75431320381165,33.784834506988524,33.81535581016541,33.84587711334228,33.876398416519166,33.90691971969604,33.937441022872925,33.96796232604981,33.99848362922668,34.029004932403566,34.05952623558044,34.090047538757325,34.1205688419342,34.151090145111084,34.18161144828797,34.21213275146484,34.242654054641726,34.2731753578186,34.303696660995485,34.33421796417236,34.36473926734924,34.39526057052612,34.425781873703,34.456303176879885,34.48682448005676,34.517345783233644,34.54786708641052,34.5783883895874,34.60890969276428,34.63943099594116,34.669952299118044,34.70047360229492,34.7309949054718,34.76151620864868,34.79203751182556,34.82255881500244,34.85308011817932,34.883601421356204,34.91412272453308,34.94464402770996,34.97516533088684,35.00568663406372,35.0362079372406,35.06672924041748,35.09725054359436,35.12777184677124,35.15829314994812,35.188814453125,35.21933575630188,35.24985705947876,35.28037836265564,35.31089966583252,35.3414209690094,35.37194227218628,35.40246357536316,35.43298487854004,35.463506181716916,35.4940274848938,35.524548788070675,35.55507009124756,35.58559139442444,35.61611269760132,35.6466340007782,35.677155303955075,35.70767660713196,35.738197910308834,35.76871921348572,35.7992405166626,35.829761819839476,35.86028312301636,35.890804426193235,35.92132572937012,35.951847032547,35.982368335723876,36.01288963890076,36.043410942077635,36.07393224525452,36.1044535484314,36.13497485160828,36.16549615478516,36.196017457962036,36.22653876113892,36.257060064315795,36.28758136749268,36.31810267066956,36.348623973846436,36.37914527702332,36.409666580200195,36.44018788337708,36.470709186553954,36.50123048973084,36.53175179290771,36.562273096084596,36.59279439926148,36.623315702438354,36.65383700561524,36.68435830879211,36.714879611968996,36.74540091514587,36.775922218322755,36.80644352149964,36.836964824676514,36.8674861278534,36.89800743103027,36.928528734207156,36.95905003738403,36.989571340560914,37.0200926437378,37.05061394691467,37.081135250091556,37.11165655326843,37.142177856445315,37.17269915962219,37.203220462799074,37.23374176597596,37.26426306915283,37.294784372329715,37.32530567550659,37.355826978683474,37.38634828186035,37.41686958503723,37.447390888214116,37.47791219139099,37.508433494567875,37.53895479774475,37.569476100921634,37.59999740409851,37.63051870727539,37.66104001045227,37.69156131362915,37.722082616806034,37.75260391998291,37.78312522315979,37.81364652633667,37.84416782951355,37.87468913269043,37.90521043586731,37.93573173904419,37.96625304222107,37.99677434539795,38.02729564857483,38.05781695175171,38.08833825492859,38.11885955810547,38.14938086128235,38.17990216445923,38.21042346763611,38.24094477081299,38.27146607398987,38.301987377166746,38.33250868034363,38.36302998352051,38.39355128669739,38.42407258987427,38.45459389305115,38.48511519622803,38.515636499404906,38.54615780258179,38.57667910575867,38.60720040893555,38.63772171211243,38.668243015289306,38.69876431846619,38.729285621643065,38.75980692481995,38.79032822799683,38.82084953117371,38.85137083435059,38.881892137527466,38.91241344070435,38.942934743881224,38.97345604705811,39.00397735023498,39.034498653411866,39.06501995658875,39.095541259765625,39.12606256294251,39.156583866119384,39.18710516929627,39.21762647247314,39.248147775650025,39.27866907882691,39.309190382003784,39.33971168518067,39.37023298835754,39.400754291534426,39.4312755947113,39.461796897888185,39.49231820106507,39.522839504241944,39.55336080741883,39.5838821105957,39.614403413772585,39.64492471694946,39.675446020126344,39.70596732330323,39.7364886264801,39.767009929656986,39.79753123283386,39.828052536010745,39.85857383918762,39.8890951423645,39.919616445541386,39.95013774871826,39.980659051895145,40.01118035507202,40.041701658248904,40.07222296142578,40.10274426460266,40.13326556777954,40.16378687095642,40.194308174133305,40.22482947731018,40.25535078048706,40.28587208366394,40.31639338684082,40.3469146900177,40.37743599319458,40.407957296371464,40.43847859954834,40.46899990272522,40.4995212059021,40.53004250907898,40.56056381225586,40.59108511543274,40.62160641860962,40.6521277217865,40.68264902496338,40.71317032814026,40.74369163131714,40.77421293449402,40.8047342376709,40.83525554084778,40.86577684402466,40.89629814720154,40.92681945037842,40.9573407535553,40.987862056732176,41.01838335990906,41.04890466308594,41.07942596626282,41.1099472694397,41.14046857261658,41.17098987579346,41.201511178970335,41.23203248214722,41.2625537853241,41.29307508850098,41.32359639167786,41.354117694854736,41.38463899803162,41.415160301208495,41.44568160438538,41.476202907562254,41.50672421073914,41.53724551391602,41.567766817092895,41.59828812026978,41.628809423446654,41.65933072662354,41.68985202980041,41.720373332977296,41.75089463615418,41.781415939331055,41.81193724250794,41.84245854568481,41.872979848861696,41.90350115203857,41.934022455215455,41.96454375839234,41.995065061569214,42.0255863647461,42.05610766792297,42.086628971099856,42.11715027427673,42.147671577453615,42.1781928806305,42.20871418380737,42.239235486984256,42.26975679016113,42.300278093338015,42.33079939651489,42.361320699691774,42.39184200286866,42.42236330604553,42.452884609222416,42.48340591239929,42.513927215576174,42.54444851875305,42.57496982192993,42.60549112510681,42.63601242828369,42.666533731460575,42.69705503463745,42.727576337814334,42.75809764099121,42.78861894416809,42.81914024734497,42.84966155052185,42.880182853698734,42.91070415687561,42.94122546005249,42.97174676322937,43.00226806640625,43.03278936958313,43.06331067276001,43.093831975936894,43.12435327911377,43.15487458229065,43.18539588546753,43.21591718864441,43.24643849182129,43.27695979499817,43.30748109817505,43.33800240135193,43.36852370452881,43.39904500770569,43.42956631088257,43.46008761405945,43.49060891723633,43.52113022041321,43.55165152359009,43.58217282676697,43.61269412994385,43.64321543312073,43.673736736297606,43.70425803947449,43.73477934265137,43.76530064582825,43.79582194900513,43.826343252182006,43.85686455535889,43.887385858535765,43.91790716171265,43.948428464889524,43.97894976806641,44.00947107124329,44.039992374420166,44.07051367759705,44.101034980773925,44.13155628395081,44.16207758712768,44.192598890304566,44.22312019348145,44.253641496658325,44.28416279983521,44.314684103012084,44.34520540618897,44.37572670936584,44.406248012542726,44.43676931571961,44.467290618896484,44.49781192207337,44.52833322525024,44.558854528427126,44.589375831604,44.619897134780885,44.65041843795777,44.680939741134644,44.71146104431153,44.7419823474884,44.772503650665286,44.80302495384216,44.833546257019044,44.86406756019593,44.8945888633728,44.925110166549686,44.95563146972656,44.986152772903445,45.01667407608032,45.047195379257204,45.07771668243408,45.10823798561096,45.138759288787845,45.16928059196472,45.199801895141604,45.23032319831848,45.26084450149536,45.29136580467224,45.32188710784912,45.352408411026005,45.38292971420288,45.413451017379764,45.44397232055664,45.47449362373352,45.5050149269104,45.53553623008728,45.566057533264164,45.59657883644104,45.62710013961792,45.6576214427948,45.68814274597168,45.71866404914856,45.74918535232544,45.77970665550232,45.8102279586792,45.84074926185608,45.87127056503296,45.90179186820984,45.93231317138672,45.9628344745636,45.99335577774048,46.02387708091736,46.05439838409424,46.08491968727112,46.115440990448,46.145962293624876,46.17648359680176,46.20700489997864,46.23752620315552,46.2680475063324,46.29856880950928,46.32909011268616,46.359611415863036,46.39013271903992,46.420654022216794,46.45117532539368,46.48169662857056,46.512217931747436,46.54273923492432,46.573260538101195,46.60378184127808,46.634303144454954,46.66482444763184,46.69534575080872,46.725867053985596,46.75638835716248,46.786909660339354,46.81743096351624,46.84795226669311,46.878473569869996,46.90899487304688,46.939516176223755,46.97003747940064,47.000558782577514,47.0310800857544,47.06160138893127,47.092122692108155,47.12264399528504,47.153165298461914,47.1836866016388,47.21420790481567,47.244729207992556,47.27525051116943,47.305771814346315,47.3362931175232,47.366814420700074,47.39733572387696,47.42785702705383,47.458378330230715,47.48889963340759,47.519420936584474,47.54994223976135,47.58046354293823,47.610984846115116,47.64150614929199,47.672027452468875,47.70254875564575,47.73307005882263,47.76359136199951,47.79411266517639,47.824633968353275,47.85515527153015,47.885676574707034,47.91619787788391,47.94671918106079,47.97724048423767,48.00776178741455,48.038283090591435,48.06880439376831,48.09932569694519,48.12984700012207,48.16036830329895,48.19088960647583,48.22141090965271,48.251932212829594,48.28245351600647,48.31297481918335,48.34349612236023,48.37401742553711,48.40453872871399,48.43506003189087,48.46558133506775,48.49610263824463,48.52662394142151,48.55714524459839,48.58766654777527,48.61818785095215,48.64870915412903,48.679230457305906,48.70975176048279,48.74027306365967,48.77079436683655,48.80131567001343,48.831836973190306,48.86235827636719,48.892879579544065,48.92340088272095,48.95392218589783,48.98444348907471,49.01496479225159,49.045486095428465,49.07600739860535,49.106528701782224,49.13705000495911,49.16757130813599,49.198092611312866,49.22861391448975,49.259135217666625,49.28965652084351,49.320177824020384,49.35069912719727,49.38122043037415,49.411741733551025,49.44226303672791,49.472784339904784,49.50330564308167,49.53382694625854,49.564348249435426,49.59486955261231,49.625390855789185,49.65591215896607,49.68643346214294,49.71695476531983,49.7474760684967,49.777997371673585,49.80851867485047,49.839039978027344,49.86956128120423,49.9000825843811,49.930603887557986,49.96112519073486,49.991646493911745,50.02216779708862,50.0526891002655,50.083210403442386,50.11373170661926,50.144253009796145,50.17477431297302,50.205295616149904,50.23581691932678,50.26633822250366,50.296859525680546,50.32738082885742,50.357902132034305,50.38842343521118,50.41894473838806,50.44946604156494,50.47998734474182,50.510508647918705,50.54102995109558,50.571551254272464,50.60207255744934,50.63259386062622,50.6631151638031,50.69363646697998,50.724157770156864,50.75467907333374,50.78520037651062,50.8157216796875,50.84624298286438,50.87676428604126,50.90728558921814,50.937806892395024,50.9683281955719,50.99884949874878,51.02937080192566,51.05989210510254,51.09041340827942,51.1209347114563,51.151456014633176,51.18197731781006,51.21249862098694,51.24301992416382,51.2735412273407,51.30406253051758,51.33458383369446,51.365105136871335,51.39562644004822,51.4261477432251,51.45666904640198,51.48719034957886,51.517711652755736,51.54823295593262,51.578754259109495,51.60927556228638,51.63979686546326,51.67031816864014,51.70083947181702,51.731360774993895,51.76188207817078,51.792403381347654,51.82292468452454,51.85344598770142,51.883967290878296,51.91448859405518,51.945009897232055,51.97553120040894,52.00605250358581,52.036573806762696,52.06709510993958,52.097616413116455,52.12813771629334,52.158659019470214,52.1891803226471,52.21970162582397,52.250222929000856,52.28074423217774,52.311265535354615,52.3417868385315,52.37230814170837,52.402829444885256,52.43335074806213,52.463872051239015,52.49439335441589,52.524914657592774,52.55543596076966,52.58595726394653,52.616478567123416,52.64699987030029,52.677521173477174,52.70804247665405,52.73856377983093,52.769085083007816,52.79960638618469,52.830127689361575,52.86064899253845,52.891170295715334,52.92169159889221,52.95221290206909,52.982734205245976,53.01325550842285,53.043776811599734,53.07429811477661,53.10481941795349,53.13534072113037,53.16586202430725,53.196383327484135,53.22690463066101,53.257425933837894,53.28794723701477,53.31846854019165,53.34898984336853,53.37951114654541,53.410032449722294,53.44055375289917,53.47107505607605,53.50159635925293,53.53211766242981,53.56263896560669,53.59316026878357,53.62368157196045,53.65420287513733,53.68472417831421,53.71524548149109,53.74576678466797,53.77628808784485,53.80680939102173,53.837330694198606,53.86785199737549,53.89837330055237,53.92889460372925,53.95941590690613,53.989937210083006,54.02045851325989,54.050979816436765,54.08150111961365,54.11202242279053,54.14254372596741,54.17306502914429,54.203586332321166,54.23410763549805,54.264628938674925,54.29515024185181,54.32567154502869,54.356192848205566,54.38671415138245,54.417235454559325,54.44775675773621,54.478278060913084,54.50879936408997,54.53932066726685,54.569841970443726,54.60036327362061,54.630884576797484,54.66140587997437,54.69192718315124,54.722448486328126,54.75296978950501,54.783491092681885,54.81401239585877,54.844533699035644,54.87505500221253,54.9055763053894,54.936097608566286,54.96661891174316,54.997140214920044,55.02766151809693,55.0581828212738,55.088704124450686,55.11922542762756,55.149746730804445,55.18026803398132,55.210789337158204,55.24131064033509,55.27183194351196,55.302353246688845,55.33287454986572,55.363395853042604,55.39391715621948,55.42443845939636,55.454959762573246,55.48548106575012,55.516002368927005,55.54652367210388,55.577044975280764,55.60756627845764,55.63808758163452,55.668608884811405,55.69913018798828,55.729651491165164,55.76017279434204,55.79069409751892,55.8212154006958,55.85173670387268,55.882258007049565,55.91277931022644,55.94330061340332,55.9738219165802,56.00434321975708,56.03486452293396,56.06538582611084,56.09590712928772,56.1264284324646,56.15694973564148,56.18747103881836,56.21799234199524,56.24851364517212,56.279034948349,56.309556251525876,56.34007755470276,56.37059885787964,56.40112016105652,56.4316414642334,56.46216276741028,56.49268407058716,56.523205373764036,56.55372667694092,56.5842479801178,56.61476928329468,56.64529058647156,56.675811889648436,56.70633319282532,56.736854496002195,56.76737579917908,56.79789710235596,56.82841840553284,56.85893970870972,56.889461011886596,56.91998231506348,56.950503618240354,56.98102492141724,57.01154622459412,57.042067527770996,57.07258883094788,57.103110134124755,57.13363143730164,57.164152740478514,57.1946740436554,57.22519534683228,57.255716650009155,57.28623795318604,57.316759256362914,57.3472805595398,57.37780186271667,57.408323165893556,57.43884446907043,57.469365772247315,57.4998870754242,57.530408378601074,57.56092968177796,57.59145098495483,57.621972288131715,57.65249359130859,57.683014894485474,57.71353619766236,57.74405750083923,57.774578804016116,57.80510010719299,57.835621410369875,57.86614271354675,57.89666401672363,57.927185319900516,57.95770662307739,57.988227926254275,58.01874922943115,58.049270532608034,58.07979183578491,58.11031313896179,58.140834442138676,58.17135574531555,58.201877048492435,58.23239835166931,58.26291965484619,58.29344095802307,58.32396226119995,58.354483564376835,58.38500486755371,58.415526170730594,58.44604747390747,58.47656877708435,58.50709008026123,58.53761138343811,58.56813268661499,58.59865398979187,58.62917529296875,58.65969659614563,58.69021789932251,58.72073920249939,58.75126050567627,58.78178180885315,58.81230311203003,58.84282441520691,58.87334571838379,58.90386702156067,58.93438832473755,58.96490962791443,58.995430931091306,59.02595223426819,59.05647353744507,59.08699484062195,59.11751614379883,59.14803744697571,59.17855875015259,59.209080053329465,59.23960135650635,59.27012265968323,59.30064396286011,59.33116526603699,59.361686569213866,59.39220787239075,59.422729175567625,59.45325047874451,59.48377178192139,59.51429308509827,59.54481438827515,59.575335691452025,59.60585699462891,59.636378297805784,59.66689960098267,59.69742090415955,59.727942207336426,59.75846351051331,59.788984813690185,59.81950611686707,59.85002742004394,59.880548723220826,59.9110700263977,59.941591329574585,59.97211263275147,60.002633935928344,60.03315523910523,60.0636765422821,60.094197845458986,60.12471914863586,60.155240451812745,60.18576175498963,60.2162830581665,60.246804361343386,60.27732566452026,60.307846967697145,60.33836827087402,60.368889574050904,60.39941087722779,60.42993218040466,60.460453483581546,60.49097478675842,60.521496089935304,60.55201739311218,60.58253869628906,60.613059999465946,60.64358130264282,60.674102605819705,60.70462390899658,60.735145212173464,60.76566651535034,60.79618781852722,60.826709121704106,60.85723042488098,60.887751728057864,60.91827303123474,60.94879433441162,60.9793156375885,61.00983694076538,61.04035824394226,61.07087954711914,61.101400850296024,61.1319221534729,61.16244345664978,61.19296475982666,61.22348606300354,61.25400736618042,61.2845286693573,61.31504997253418,61.34557127571106,61.37609257888794,61.40661388206482,61.4371351852417,61.46765648841858,61.49817779159546,61.52869909477234,61.55922039794922,61.5897417011261,61.62026300430298,61.65078430747986,61.681305610656736,61.71182691383362,61.7423482170105,61.77286952018738,61.80339082336426,61.833912126541136,61.86443342971802,61.894954732894895,61.92547603607178,61.95599733924866,61.98651864242554,62.01703994560242,62.047561248779296,62.07808255195618,62.108603855133055,62.13912515830994,62.16964646148681,62.200167764663696,62.23068906784058,62.261210371017455,62.29173167419434,62.322252977371214,62.3527742805481,62.38329558372497,62.413816886901856,62.44433819007874,62.474859493255614,62.5053807964325,62.53590209960937,62.566423402786256,62.59694470596313,62.627466009140015,62.6579873123169,62.688508615493774,62.71902991867066,62.74955122184753,62.780072525024416,62.81059382820129,62.841115131378174,62.87163643455506,62.90215773773193,62.932679040908816,62.96320034408569,62.993721647262575,63.02424295043945,63.054764253616334,63.08528555679322,63.11580685997009,63.146328163146975,63.17684946632385,63.207370769500734,63.23789207267761,63.26841337585449,63.298934679031376,63.32945598220825,63.359977285385135,63.39049858856201,63.421019891738894,63.45154119491577,63.48206249809265,63.51258380126953,63.54310510444641,63.573626407623294,63.60414771080017,63.63466901397705,63.66519031715393,63.69571162033081,63.72623292350769,63.75675422668457,63.78727552986145,63.81779683303833,63.84831813621521,63.87883943939209,63.90936074256897,63.93988204574585,63.97040334892273,64.00092465209961,64.03144595527648,64.06196725845336,64.09248856163025,64.12300986480713,64.153531167984,64.18405247116088,64.21457377433777,64.24509507751465,64.27561638069153,64.3061376838684,64.33665898704528,64.36718029022217,64.39770159339905,64.42822289657593,64.4587441997528,64.48926550292968,64.51978680610657,64.55030810928345,64.58082941246032,64.6113507156372,64.64187201881408,64.67239332199097,64.70291462516785,64.73343592834472,64.7639572315216,64.79447853469848,64.82499983787537,64.85552114105224,64.88604244422912,64.916563747406,64.94708505058288,64.97760635375977,65.00812765693664,65.03864896011352,65.0691702632904,65.09969156646729,65.13021286964417,65.16073417282104,65.19125547599792,65.2217767791748,65.25229808235169,65.28281938552855,65.31334068870544,65.34386199188232,65.3743832950592,65.40490459823609,65.43542590141296,65.46594720458984,65.49646850776672,65.5269898109436,65.55751111412049,65.58803241729736,65.61855372047424,65.64907502365112,65.679596326828,65.71011763000487,65.74063893318176,65.77116023635864,65.80168153953552,65.8322028427124,65.86272414588927,65.89324544906616,65.92376675224304,65.95428805541992,65.98480935859679,66.01533066177367,66.04585196495056,66.07637326812744,66.10689457130432,66.13741587448119,66.16793717765808,66.19845848083496,66.22897978401184,66.25950108718872,66.29002239036559,66.32054369354248,66.35106499671936,66.38158629989624,66.41210760307311,66.44262890625,66.47315020942688,66.50367151260376,66.53419281578064,66.56471411895751,66.5952354221344,66.62575672531128,66.65627802848816,66.68679933166504,66.71732063484191,66.7478419380188,66.77836324119568,66.80888454437256,66.83940584754943,66.86992715072631,66.9004484539032,66.93096975708008,66.96149106025696,66.99201236343383,67.02253366661071,67.0530549697876,67.08357627296448,67.11409757614135,67.14461887931823,67.17514018249511,67.205661485672,67.23618278884888,67.26670409202575,67.29722539520263,67.32774669837951,67.3582680015564,67.38878930473328,67.41931060791015,67.44983191108703,67.48035321426391,67.5108745174408,67.54139582061767,67.57191712379455,67.60243842697143,67.63295973014831,67.6634810333252,67.69400233650207,67.72452363967895,67.75504494285583,67.78556624603272,67.8160875492096,67.84660885238647,67.87713015556335,67.90765145874023,67.93817276191712,67.968694065094,67.99921536827087,68.02973667144775,68.06025797462463,68.09077927780152,68.1213005809784,68.15182188415527,68.18234318733215,68.21286449050903,68.24338579368592,68.2739070968628,68.30442840003967,68.33494970321655,68.36547100639343,68.39599230957032,68.42651361274719,68.45703491592407,68.48755621910095,68.51807752227784,68.54859882545472,68.57912012863159,68.60964143180847,68.64016273498535,68.67068403816224,68.70120534133912,68.73172664451599,68.76224794769287,68.79276925086975,68.82329055404664,68.8538118572235,68.88433316040039,68.91485446357727,68.94537576675415,68.97589706993104,69.0064183731079,69.03693967628479,69.06746097946167,69.09798228263855,69.12850358581542,69.1590248889923,69.18954619216919,69.22006749534607,69.25058879852295,69.28111010169982,69.3116314048767,69.34215270805359,69.37267401123047,69.40319531440736,69.43371661758422,69.46423792076111,69.49475922393799,69.52528052711487,69.55580183029174,69.58632313346862,69.61684443664551,69.64736573982239,69.67788704299927,69.70840834617614,69.73892964935303,69.76945095252991,69.79997225570679,69.83049355888367,69.86101486206054,69.89153616523743,69.92205746841431,69.95257877159119,69.98310007476806,70.01362137794494,70.04414268112183,70.07466398429871,70.10518528747559,70.13570659065246,70.16622789382934,70.19674919700623,70.22727050018311,70.25779180335998,70.28831310653686,70.31883440971374,70.34935571289063,70.37987701606751,70.41039831924438,70.44091962242126,70.47144092559815,70.50196222877503,70.53248353195191,70.56300483512878,70.59352613830566,70.62404744148255,70.65456874465943,70.6850900478363,70.71561135101318,70.74613265419006,70.77665395736695,70.80717526054383,70.8376965637207,70.86821786689758,70.89873917007446,70.92926047325135,70.95978177642823,70.9903030796051,71.02082438278198,71.05134568595886,71.08186698913575,71.11238829231262,71.1429095954895,71.17343089866638,71.20395220184326,71.23447350502015,71.26499480819702,71.2955161113739,71.32603741455078,71.35655871772767,71.38708002090453,71.41760132408142,71.4481226272583,71.47864393043518,71.50916523361207,71.53968653678893,71.57020783996582,71.6007291431427,71.63125044631958,71.66177174949647,71.69229305267334,71.72281435585022,71.7533356590271,71.78385696220398,71.81437826538085,71.84489956855774,71.87542087173462,71.9059421749115,71.93646347808838,71.96698478126525,71.99750608444214,72.02802738761902,72.0585486907959,72.08906999397279,72.11959129714965,72.15011260032654,72.18063390350342,72.2111552066803,72.24167650985717,72.27219781303405,72.30271911621094,72.33324041938782,72.3637617225647,72.39428302574157,72.42480432891846,72.45532563209534,72.48584693527222,72.5163682384491,72.54688954162597,72.57741084480286,72.60793214797974,72.63845345115662,72.66897475433349,72.69949605751037,72.73001736068726,72.76053866386414,72.79105996704102,72.82158127021789,72.85210257339477,72.88262387657166,72.91314517974854,72.94366648292541,72.97418778610229,73.00470908927917,73.03523039245606,73.06575169563294,73.09627299880981,73.12679430198669,73.15731560516357,73.18783690834046,73.21835821151734,73.24887951469421,73.27940081787109,73.30992212104798,73.34044342422486,73.37096472740173,73.40148603057861,73.4320073337555,73.46252863693238,73.49304994010926,73.52357124328613,73.55409254646301,73.5846138496399,73.61513515281678,73.64565645599366,73.67617775917053,73.70669906234741,73.7372203655243,73.76774166870118,73.79826297187805,73.82878427505493,73.85930557823181,73.8898268814087,73.92034818458558,73.95086948776245,73.98139079093933,74.01191209411621,74.0424333972931,74.07295470046996,74.10347600364685,74.13399730682373,74.16451861000061,74.1950399131775,74.22556121635436,74.25608251953125,74.28660382270813,74.31712512588501,74.3476464290619,74.37816773223877,74.40868903541565,74.43921033859253,74.46973164176941,74.50025294494628,74.53077424812317,74.56129555130005,74.59181685447693,74.62233815765381,74.65285946083068,74.68338076400757,74.71390206718445,74.74442337036133,74.77494467353822,74.80546597671508,74.83598727989197,74.86650858306885,74.89702988624573,74.9275511894226,74.95807249259948,74.98859379577637,75.01911509895325,75.04963640213013,75.080157705307,75.11067900848388,75.14120031166077,75.17172161483765,75.20224291801452,75.2327642211914,75.26328552436829,75.29380682754517,75.32432813072205,75.35484943389892,75.3853707370758,75.41589204025269,75.44641334342957,75.47693464660645,75.50745594978332,75.5379772529602,75.56849855613709,75.59901985931397,75.62954116249084,75.66006246566772,75.6905837688446,75.72110507202149,75.75162637519837,75.78214767837524,75.81266898155212,75.843190284729,75.87371158790589,75.90423289108277,75.93475419425964,75.96527549743652,75.9957968006134,76.02631810379029,76.05683940696716,76.08736071014404,76.11788201332092,76.1484033164978,76.17892461967469,76.20944592285156,76.23996722602844,76.27048852920532,76.3010098323822,76.33153113555908,76.36205243873596,76.39257374191284,76.42309504508972,76.4536163482666,76.48413765144348,76.51465895462036,76.54518025779724,76.57570156097412,76.60622286415101,76.63674416732788,76.66726547050476,76.69778677368164,76.72830807685853,76.7588293800354,76.78935068321228,76.81987198638916,76.85039328956604,76.88091459274293,76.9114358959198,76.94195719909668,76.97247850227356,77.00299980545044,77.03352110862733,77.0640424118042,77.09456371498108,77.12508501815796,77.15560632133484,77.18612762451171,77.2166489276886,77.24717023086548,77.27769153404236,77.30821283721924,77.33873414039611,77.369255443573,77.39977674674988,77.43029804992676,77.46081935310364,77.49134065628051,77.5218619594574,77.55238326263428,77.58290456581116,77.61342586898803,77.64394717216491,77.6744684753418,77.70498977851868,77.73551108169556,77.76603238487243,77.79655368804931,77.8270749912262,77.85759629440308,77.88811759757995,77.91863890075683,77.94916020393372,77.9796815071106,78.01020281028748,78.04072411346435,78.07124541664123,78.10176671981812,78.132288022995,78.16280932617188,78.19333062934875,78.22385193252563,78.25437323570252,78.2848945388794,78.31541584205627,78.34593714523315,78.37645844841003,78.40697975158692,78.4375010547638,78.46802235794067,78.49854366111755,78.52906496429443,78.55958626747132,78.5901075706482,78.62062887382507,78.65115017700195,78.68167148017884,78.71219278335572,78.74271408653259,78.77323538970947,78.80375669288635,78.83427799606324,78.86479929924012,78.89532060241699,78.92584190559387,78.95636320877075,78.98688451194764,79.0174058151245,79.04792711830139,79.07844842147827,79.10896972465515,79.13949102783204,79.1700123310089,79.20053363418579,79.23105493736267,79.26157624053955,79.29209754371644,79.3226188468933,79.35314015007019,79.38366145324707,79.41418275642395,79.44470405960082,79.4752253627777,79.50574666595459,79.53626796913147,79.56678927230836,79.59731057548522,79.6278318786621,79.65835318183899,79.68887448501587,79.71939578819276,79.74991709136962,79.78043839454651,79.81095969772339,79.84148100090027,79.87200230407714,79.90252360725403,79.93304491043091,79.96356621360779,79.99408751678467,80.02460881996154,80.05513012313843,80.08565142631531,80.11617272949219,80.14669403266906,80.17721533584594,80.20773663902283,80.23825794219971,80.26877924537659,80.29930054855346,80.32982185173034,80.36034315490723,80.39086445808411,80.42138576126099,80.45190706443786,80.48242836761474,80.51294967079163,80.54347097396851,80.57399227714538,80.60451358032226,80.63503488349915,80.66555618667603,80.69607748985291,80.72659879302978,80.75712009620666,80.78764139938355,80.81816270256043,80.84868400573731,80.87920530891418,80.90972661209106,80.94024791526795,80.97076921844483,81.0012905216217,81.03181182479858,81.06233312797546,81.09285443115235,81.12337573432923,81.1538970375061,81.18441834068298,81.21493964385986,81.24546094703675,81.27598225021362,81.3065035533905,81.33702485656738,81.36754615974426,81.39806746292115,81.42858876609802,81.4591100692749,81.48963137245178,81.52015267562867,81.55067397880555,81.58119528198242,81.6117165851593,81.64223788833618,81.67275919151307,81.70328049468993,81.73380179786682,81.7643231010437,81.79484440422058,81.82536570739747,81.85588701057434,81.88640831375122,81.9169296169281,81.94745092010498,81.97797222328187,82.00849352645874,82.03901482963562,82.0695361328125,82.10005743598938,82.13057873916625,82.16110004234314,82.19162134552002,82.2221426486969,82.25266395187379,82.28318525505065,82.31370655822754,82.34422786140442,82.3747491645813,82.40527046775817,82.43579177093505,82.46631307411194,82.49683437728882,82.5273556804657,82.55787698364257,82.58839828681946,82.61891958999634,82.64944089317322,82.6799621963501,82.71048349952697,82.74100480270386,82.77152610588074,82.80204740905762,82.83256871223449,82.86309001541137,82.89361131858826,82.92413262176514,82.95465392494202,82.98517522811889,83.01569653129577,83.04621783447266,83.07673913764954,83.10726044082642,83.13778174400329,83.16830304718017,83.19882435035706,83.22934565353394,83.25986695671081,83.29038825988769,83.32090956306457,83.35143086624146,83.38195216941834,83.41247347259521,83.44299477577209,83.47351607894898,83.50403738212586,83.53455868530274,83.56507998847961,83.5956012916565,83.62612259483338,83.65664389801026,83.68716520118713,83.71768650436401,83.7482078075409,83.77872911071778,83.80925041389466,83.83977171707153,83.87029302024841,83.9008143234253,83.93133562660218,83.96185692977905,83.99237823295593,84.02289953613281,84.0534208393097,84.08394214248658,84.11446344566345,84.14498474884033,84.17550605201721,84.2060273551941,84.23654865837098,84.26706996154785,84.29759126472473,84.32811256790161,84.3586338710785,84.38915517425536,84.41967647743225,84.45019778060913,84.48071908378601,84.5112403869629,84.54176169013977,84.57228299331665,84.60280429649353,84.63332559967041,84.6638469028473,84.69436820602417,84.72488950920105,84.75541081237793,84.78593211555481,84.81645341873168,84.84697472190857,84.87749602508545,84.90801732826233,84.93853863143922,84.96905993461608,84.99958123779297,85.03010254096985,85.06062384414673,85.0911451473236,85.12166645050048,85.15218775367737,85.18270905685425,85.21323036003113,85.243751663208,85.27427296638488,85.30479426956177,85.33531557273865,85.36583687591553,85.3963581790924,85.42687948226929,85.45740078544617,85.48792208862305,85.51844339179992,85.5489646949768,85.57948599815369,85.61000730133057,85.64052860450745,85.67104990768432,85.7015712108612,85.73209251403809,85.76261381721497,85.79313512039185,85.82365642356872,85.8541777267456,85.88469902992249,85.91522033309937,85.94574163627624,85.97626293945312,86.00678424263,86.03730554580689,86.06782684898377,86.09834815216064,86.12886945533752,86.1593907585144,86.18991206169129,86.22043336486816,86.25095466804504,86.28147597122192,86.3119972743988,86.34251857757569,86.37303988075256,86.40356118392944,86.43408248710632,86.4646037902832,86.49512509346009,86.52564639663696,86.55616769981384,86.58668900299072,86.6172103061676,86.64773160934448,86.67825291252136,86.70877421569824,86.73929551887512,86.76981682205201,86.80033812522888,86.83085942840576,86.86138073158264,86.89190203475953,86.92242333793641,86.95294464111328,86.98346594429016,87.01398724746704,87.04450855064393,87.0750298538208,87.10555115699768,87.13607246017456,87.16659376335144,87.19711506652833,87.2276363697052,87.25815767288208,87.28867897605896,87.31920027923584,87.34972158241271,87.3802428855896,87.41076418876648,87.44128549194336,87.47180679512024,87.50232809829711,87.532849401474,87.56337070465088,87.59389200782776,87.62441331100464,87.65493461418151,87.6854559173584,87.71597722053528,87.74649852371216,87.77701982688903,87.80754113006591,87.8380624332428,87.86858373641968,87.89910503959656,87.92962634277343,87.96014764595031,87.9906689491272,88.02119025230408,88.05171155548096,88.08223285865783,88.11275416183472,88.1432754650116,88.17379676818848,88.20431807136535,88.23483937454223,88.26536067771912,88.295881980896,88.32640328407288,88.35692458724975,88.38744589042663,88.41796719360352,88.4484884967804,88.47900979995728,88.50953110313415,88.54005240631103,88.57057370948792,88.6010950126648,88.63161631584167,88.66213761901855,88.69265892219543,88.72318022537232,88.7537015285492,88.78422283172607,88.81474413490295,88.84526543807984,88.87578674125672,88.90630804443359,88.93682934761047,88.96735065078735,88.99787195396424,89.02839325714112,89.05891456031799,89.08943586349487,89.11995716667175,89.15047846984864,89.18099977302552,89.21152107620239,89.24204237937927,89.27256368255615,89.30308498573304,89.3336062889099,89.36412759208679,89.39464889526367,89.42517019844055,89.45569150161744,89.4862128047943,89.51673410797119,89.54725541114807,89.57777671432495,89.60829801750184,89.6388193206787,89.66934062385559,89.69986192703247,89.73038323020936,89.76090453338622,89.7914258365631,89.82194713973999,89.85246844291687,89.88298974609376,89.91351104927062,89.94403235244751,89.97455365562439,90.00507495880127,90.03559626197814,90.06611756515503,90.09663886833191,90.12716017150879,90.15768147468567,90.18820277786254,90.21872408103943,90.24924538421631,90.27976668739319,90.31028799057007,90.34080929374694,90.37133059692383,90.40185190010071,90.43237320327759,90.46289450645446,90.49341580963134,90.52393711280823,90.55445841598511,90.58497971916199,90.61550102233886,90.64602232551574,90.67654362869263,90.70706493186951,90.7375862350464,90.76810753822326,90.79862884140015,90.82915014457703,90.85967144775391,90.89019275093078,90.92071405410766,90.95123535728455,90.98175666046143,91.01227796363831,91.04279926681518,91.07332056999206,91.10384187316895,91.13436317634583,91.1648844795227,91.19540578269958,91.22592708587646,91.25644838905335,91.28696969223023,91.3174909954071,91.34801229858398,91.37853360176086,91.40905490493775,91.43957620811463,91.4700975112915,91.50061881446838,91.53114011764526,91.56166142082215,91.59218272399902,91.6227040271759,91.65322533035278,91.68374663352967,91.71426793670655,91.74478923988342,91.7753105430603,91.80583184623718,91.83635314941407,91.86687445259095,91.89739575576782,91.9279170589447,91.95843836212158,91.98895966529847,92.01948096847534,92.05000227165222,92.0805235748291,92.11104487800598,92.14156618118287,92.17208748435974,92.20260878753662,92.2331300907135,92.26365139389038,92.29417269706725,92.32469400024414,92.35521530342102,92.3857366065979,92.41625790977479,92.44677921295165,92.47730051612854,92.50782181930542,92.5383431224823,92.56886442565919,92.59938572883605,92.62990703201294,92.66042833518982,92.6909496383667,92.72147094154357,92.75199224472046,92.78251354789734,92.81303485107422,92.8435561542511,92.87407745742797,92.90459876060486,92.93512006378174,92.96564136695862,92.9961626701355,93.02668397331237,93.05720527648926,93.08772657966614,93.11824788284302,93.14876918601989,93.17929048919677,93.20981179237366,93.24033309555054,93.27085439872742,93.30137570190429,93.33189700508117,93.36241830825806,93.39293961143494,93.42346091461181,93.45398221778869,93.48450352096557,93.51502482414246,93.54554612731934,93.57606743049621,93.60658873367309,93.63711003684998,93.66763134002686,93.69815264320374,93.72867394638061,93.7591952495575,93.78971655273438,93.82023785591126,93.85075915908813,93.88128046226501,93.9118017654419,93.94232306861878,93.97284437179566,94.00336567497253,94.03388697814941,94.0644082813263,94.09492958450318,94.12545088768006,94.15597219085693,94.18649349403381,94.2170147972107,94.24753610038758,94.27805740356445,94.30857870674133,94.33910000991821,94.3696213130951,94.40014261627198,94.43066391944885,94.46118522262573,94.49170652580261,94.5222278289795,94.55274913215638,94.58327043533325,94.61379173851013,94.64431304168701,94.6748343448639,94.70535564804077,94.73587695121765,94.76639825439453,94.79691955757141,94.8274408607483,94.85796216392517,94.88848346710205,94.91900477027893,94.94952607345581,94.98004737663268,95.01056867980957,95.04108998298645,95.07161128616333,95.10213258934021,95.13265389251708,95.16317519569397,95.19369649887085,95.22421780204773,95.25473910522462,95.28526040840148,95.31578171157837,95.34630301475525,95.37682431793213,95.407345621109,95.43786692428588,95.46838822746277,95.49890953063965,95.52943083381653,95.5599521369934,95.59047344017029,95.62099474334717,95.65151604652405,95.68203734970093,95.7125586528778,95.74307995605469,95.77360125923157,95.80412256240845,95.83464386558532,95.8651651687622,95.89568647193909,95.92620777511597,95.95672907829285,95.98725038146972,96.0177716846466,96.04829298782349,96.07881429100037,96.10933559417724,96.13985689735412,96.170378200531,96.20089950370789,96.23142080688477,96.26194211006164,96.29246341323852,96.3229847164154,96.35350601959229,96.38402732276917,96.41454862594604,96.44506992912292,96.4755912322998,96.50611253547669,96.53663383865356,96.56715514183044,96.59767644500732,96.6281977481842,96.65871905136109,96.68924035453796,96.71976165771484,96.75028296089172,96.7808042640686,96.81132556724549,96.84184687042236,96.87236817359924,96.90288947677612,96.93341077995301,96.96393208312988,96.99445338630676,97.02497468948364,97.05549599266052,97.08601729583741,97.11653859901428,97.14705990219116,97.17758120536804,97.20810250854493,97.2386238117218,97.26914511489868,97.29966641807556,97.33018772125244,97.36070902442933,97.3912303276062,97.42175163078308,97.45227293395996,97.48279423713684,97.51331554031373,97.5438368434906,97.57435814666748,97.60487944984436,97.63540075302124,97.66592205619811,97.696443359375,97.72696466255188,97.75748596572876,97.78800726890564,97.81852857208251,97.8490498752594,97.87957117843628,97.91009248161316,97.94061378479005,97.97113508796691,98.0016563911438,98.03217769432068,98.06269899749756,98.09322030067443,98.12374160385131,98.1542629070282,98.18478421020508,98.21530551338196,98.24582681655883,98.27634811973572,98.3068694229126,98.33739072608948,98.36791202926635,98.39843333244323,98.42895463562012,98.459475938797,98.48999724197388,98.52051854515075,98.55103984832763,98.58156115150452,98.6120824546814,98.64260375785828,98.67312506103515,98.70364636421203,98.73416766738892,98.7646889705658,98.79521027374267,98.82573157691955,98.85625288009643,98.88677418327332,98.9172954864502,98.94781678962707,98.97833809280395,99.00885939598083,99.03938069915772,99.0699020023346,99.10042330551147,99.13094460868835,99.16146591186524,99.19198721504212,99.22250851821899,99.25302982139587,99.28355112457275,99.31407242774964,99.34459373092652,99.37511503410339,99.40563633728027,99.43615764045715,99.46667894363404,99.49720024681092,99.52772154998779,99.55824285316467,99.58876415634155,99.61928545951844,99.6498067626953,99.68032806587219,99.71084936904907,99.74137067222595,99.77189197540284,99.8024132785797,99.83293458175659,99.86345588493347,99.89397718811036,99.92449849128722,99.9550197944641,99.98554109764099,100.01606240081787,100.04658370399476,100.07710500717162,100.10762631034851,100.13814761352539,100.16866891670227,100.19919021987916,100.22971152305603,100.26023282623291,100.29075412940979,100.32127543258667,100.35179673576354,100.38231803894043,100.41283934211731,100.44336064529419,100.47388194847107,100.50440325164794,100.53492455482483,100.56544585800171,100.59596716117859,100.62648846435548,100.65700976753234,100.68753107070923,100.71805237388611,100.74857367706299,100.77909498023986,100.80961628341674,100.84013758659363,100.87065888977051,100.9011801929474,100.93170149612426,100.96222279930114,100.99274410247803,101.02326540565491,101.05378670883178,101.08430801200866,101.11482931518555,101.14535061836243,101.17587192153931,101.20639322471618,101.23691452789306,101.26743583106995,101.29795713424683,101.32847843742371,101.35899974060058,101.38952104377746,101.42004234695435,101.45056365013123,101.4810849533081,101.51160625648498,101.54212755966186,101.57264886283875,101.60317016601563,101.6336914691925,101.66421277236938,101.69473407554626,101.72525537872315,101.75577668190003,101.7862979850769,101.81681928825378,101.84734059143067,101.87786189460755,101.90838319778442,101.9389045009613,101.96942580413818,101.99994710731507,102.03046841049195,102.06098971366882,102.0915110168457,102.12203232002258,102.15255362319947,102.18307492637634,102.21359622955322,102.2441175327301,102.27463883590698,102.30516013908387,102.33568144226074,102.36620274543762,102.3967240486145,102.42724535179138,102.45776665496827,102.48828795814514,102.51880926132202,102.5493305644989,102.57985186767579,102.61037317085265,102.64089447402954,102.67141577720642,102.7019370803833,102.73245838356019,102.76297968673705,102.79350098991394,102.82402229309082,102.8545435962677,102.88506489944459,102.91558620262145,102.94610750579834,102.97662880897522,103.0071501121521,103.03767141532897,103.06819271850586,103.09871402168274,103.12923532485962,103.1597566280365,103.19027793121337,103.22079923439026,103.25132053756714,103.28184184074402,103.31236314392089,103.34288444709777,103.37340575027466,103.40392705345154,103.43444835662842,103.46496965980529,103.49549096298217,103.52601226615906,103.55653356933594,103.58705487251282,103.61757617568969,103.64809747886657,103.67861878204346,103.70914008522034,103.73966138839721,103.77018269157409,103.80070399475098,103.83122529792786,103.86174660110474,103.89226790428161,103.9227892074585,103.95331051063538,103.98383181381226,104.01435311698914,104.04487442016601,104.0753957233429,104.10591702651978,104.13643832969666,104.16695963287353,104.19748093605041,104.2280022392273,104.25852354240418,104.28904484558106,104.31956614875793,104.35008745193481,104.3806087551117,104.41113005828858,104.44165136146545,104.47217266464233,104.50269396781921,104.5332152709961,104.56373657417298,104.59425787734985,104.62477918052673,104.65530048370361,104.6858217868805,104.71634309005738,104.74686439323425,104.77738569641113,104.80790699958801,104.8384283027649,104.86894960594176,104.89947090911865,104.92999221229553,104.96051351547241,104.9910348186493,105.02155612182617,105.05207742500305,105.08259872817993,105.11312003135681,105.1436413345337,105.17416263771057,105.20468394088745,105.23520524406433,105.26572654724121,105.29624785041808,105.32676915359497,105.35729045677185,105.38781175994873,105.41833306312562,105.44885436630248,105.47937566947937,105.50989697265625,105.54041827583313,105.57093957901002,105.60146088218688,105.63198218536377,105.66250348854065,105.69302479171753,105.7235460948944,105.75406739807129,105.78458870124817,105.81511000442505,105.84563130760193,105.8761526107788,105.90667391395569,105.93719521713257,105.96771652030945,105.99823782348632,106.0287591266632,106.05928042984009,106.08980173301697,106.12032303619385,106.15084433937072,106.1813656425476,106.21188694572449,106.24240824890137,106.27292955207825,106.30345085525512,106.333972158432,106.36449346160889,106.39501476478577,106.42553606796264,106.45605737113952,106.4865786743164,106.51709997749329,106.54762128067017,106.57814258384704,106.60866388702392,106.6391851902008,106.66970649337769,106.70022779655457,106.73074909973144,106.76127040290832,106.7917917060852,106.82231300926209,106.85283431243896,106.88335561561584,106.91387691879272,106.9443982219696,106.97491952514649,107.00544082832336,107.03596213150024,107.06648343467712,107.09700473785401,107.12752604103088,107.15804734420776,107.18856864738464,107.21908995056152,107.24961125373841,107.28013255691528,107.31065386009216,107.34117516326904,107.37169646644593,107.40221776962281,107.43273907279968,107.46326037597656,107.49378167915344,107.52430298233033,107.5548242855072,107.58534558868408,107.61586689186096,107.64638819503784,107.67690949821473,107.7074308013916,107.73795210456848,107.76847340774536,107.79899471092224,107.82951601409913,107.860037317276,107.89055862045288,107.92107992362976,107.95160122680664,107.98212252998351,108.0126438331604,108.04316513633728,108.07368643951416,108.10420774269105,108.13472904586791,108.1652503490448,108.19577165222168,108.22629295539856,108.25681425857543,108.28733556175231,108.3178568649292,108.34837816810608,108.37889947128296,108.40942077445983,108.43994207763672,108.4704633808136,108.50098468399048,108.53150598716736,108.56202729034423,108.59254859352112,108.623069896698,108.65359119987488,108.68411250305175,108.71463380622863,108.74515510940552,108.7756764125824,108.80619771575928,108.83671901893615,108.86724032211303,108.89776162528992,108.9282829284668,108.95880423164368,108.98932553482055,109.01984683799743,109.05036814117432,109.0808894443512,109.11141074752807,109.14193205070495,109.17245335388183,109.20297465705872,109.2334959602356,109.26401726341247,109.29453856658935,109.32505986976624,109.35558117294312,109.38610247611999,109.41662377929687,109.44714508247375,109.47766638565064,109.50818768882752,109.53870899200439,109.56923029518127,109.59975159835815,109.63027290153504,109.66079420471192,109.69131550788879,109.72183681106567,109.75235811424255,109.78287941741944,109.8134007205963,109.84392202377319,109.87444332695007,109.90496463012695,109.93548593330384,109.9660072364807,109.99652853965759,110.02704984283447,110.05757114601136,110.08809244918824,110.1186137523651,110.14913505554199,110.17965635871887,110.21017766189576,110.24069896507262,110.27122026824951,110.30174157142639,110.33226287460327,110.36278417778016,110.39330548095703,110.42382678413391,110.45434808731079,110.48486939048767,110.51539069366456,110.54591199684143,110.57643330001831,110.60695460319519,110.63747590637207,110.66799720954894,110.69851851272583,110.72903981590271,110.75956111907959,110.79008242225648,110.82060372543334,110.85112502861023,110.88164633178711,110.91216763496399,110.94268893814086,110.97321024131774,111.00373154449463,111.03425284767151,111.0647741508484,111.09529545402526,111.12581675720214,111.15633806037903,111.18685936355591,111.2173806667328,111.24790196990966,111.27842327308655,111.30894457626343,111.33946587944031,111.36998718261718,111.40050848579406,111.43102978897095,111.46155109214783,111.49207239532471,111.52259369850158,111.55311500167846,111.58363630485535,111.61415760803223,111.64467891120911,111.67520021438598,111.70572151756286,111.73624282073975,111.76676412391663,111.7972854270935,111.82780673027038,111.85832803344726,111.88884933662415,111.91937063980103,111.9498919429779,111.98041324615478,112.01093454933167,112.04145585250855,112.07197715568542,112.1024984588623,112.13301976203918,112.16354106521607,112.19406236839295,112.22458367156982,112.2551049747467,112.28562627792358,112.31614758110047,112.34666888427735,112.37719018745422,112.4077114906311,112.43823279380798,112.46875409698487,112.49927540016174,112.52979670333862,112.5603180065155,112.59083930969238,112.62136061286927,112.65188191604614,112.68240321922302,112.7129245223999,112.74344582557679,112.77396712875367,112.80448843193054,112.83500973510742,112.8655310382843,112.89605234146119,112.92657364463805,112.95709494781494,112.98761625099182,113.0181375541687,113.04865885734559,113.07918016052245,113.10970146369934,113.14022276687622,113.1707440700531,113.20126537322997,113.23178667640686,113.26230797958374,113.29282928276062,113.3233505859375,113.35387188911437,113.38439319229126,113.41491449546814,113.44543579864502,113.4759571018219,113.50647840499877,113.53699970817566,113.56752101135254,113.59804231452942,113.62856361770629,113.65908492088317,113.68960622406006,113.72012752723694,113.75064883041382,113.78117013359069,113.81169143676757,113.84221273994446,113.87273404312134,113.90325534629822,113.93377664947509,113.96429795265198,113.99481925582886,114.02534055900574,114.05586186218261,114.08638316535949,114.11690446853638,114.14742577171326,114.17794707489014,114.20846837806701,114.2389896812439,114.26951098442078,114.30003228759766,114.33055359077453,114.36107489395141,114.3915961971283,114.42211750030518,114.45263880348206,114.48316010665893,114.51368140983581,114.5442027130127,114.57472401618958,114.60524531936646,114.63576662254333,114.66628792572021,114.6968092288971,114.72733053207398,114.75785183525085,114.78837313842773,114.81889444160461,114.8494157447815,114.87993704795838,114.91045835113525,114.94097965431213,114.97150095748901,115.0020222606659,115.03254356384278,115.06306486701965,115.09358617019653,115.12410747337341,115.1546287765503,115.18515007972717,115.21567138290405,115.24619268608093,115.27671398925781,115.3072352924347,115.33775659561157,115.36827789878845,115.39879920196533,115.42932050514221,115.4598418083191,115.49036311149597,115.52088441467285,115.55140571784973,115.58192702102662,115.61244832420348,115.64296962738037,115.67349093055725,115.70401223373413,115.73453353691102,115.76505484008788,115.79557614326477,115.82609744644165,115.85661874961853,115.8871400527954,115.91766135597229,115.94818265914917,115.97870396232605,116.00922526550293,116.0397465686798,116.07026787185669,116.10078917503357,116.13131047821045,116.16183178138733,116.1923530845642,116.22287438774109,116.25339569091797,116.28391699409485,116.31443829727172,116.3449596004486,116.37548090362549,116.40600220680237,116.43652350997925,116.46704481315612,116.497566116333,116.52808741950989,116.55860872268677,116.58913002586365,116.61965132904052,116.6501726322174,116.68069393539429,116.71121523857117,116.74173654174804,116.77225784492492,116.8027791481018,116.83330045127869,116.86382175445557,116.89434305763244,116.92486436080932,116.9553856639862,116.98590696716309,117.01642827033996,117.04694957351684,117.07747087669372,117.1079921798706,117.13851348304749,117.16903478622436,117.19955608940124,117.23007739257812,117.26059869575501,117.29111999893189,117.32164130210876,117.35216260528564,117.38268390846252,117.41320521163941,117.44372651481628,117.47424781799316,117.50476912117004,117.53529042434693,117.56581172752381,117.59633303070068,117.62685433387756,117.65737563705444,117.68789694023133,117.71841824340821,117.74893954658508,117.77946084976196,117.80998215293884,117.84050345611573,117.8710247592926,117.90154606246948,117.93206736564636,117.96258866882324,117.99310997200013,118.023631275177,118.05415257835388,118.08467388153076,118.11519518470764,118.14571648788451,118.1762377910614,118.20675909423828,118.23728039741516,118.26780170059205,118.29832300376891,118.3288443069458,118.35936561012268,118.38988691329956,118.42040821647645,118.45092951965331,118.4814508228302,118.51197212600708,118.54249342918396,118.57301473236083,118.60353603553772,118.6340573387146,118.66457864189148,118.69509994506836,118.72562124824523,118.75614255142212,118.786663854599,118.81718515777588,118.84770646095276,118.87822776412963,118.90874906730652,118.9392703704834,118.96979167366028,119.00031297683715,119.03083428001403,119.06135558319092,119.0918768863678,119.12239818954468,119.15291949272155,119.18344079589843,119.21396209907532,119.2444834022522,119.27500470542907,119.30552600860595,119.33604731178283,119.36656861495972,119.3970899181366,119.42761122131347,119.45813252449035,119.48865382766724,119.51917513084412,119.549696434021,119.58021773719787,119.61073904037475,119.64126034355164,119.67178164672852,119.70230294990539,119.73282425308227,119.76334555625915,119.79386685943604,119.82438816261292,119.85490946578979,119.88543076896667,119.91595207214355,119.94647337532044,119.97699467849732,120.00751598167419,120.03803728485107,120.06855858802795,120.09907989120484,120.1296011943817,120.16012249755859,120.19064380073547,120.22116510391236,120.25168640708924,120.2822077102661,120.31272901344299,120.34325031661987,120.37377161979676,120.40429292297362,120.43481422615051,120.46533552932739,120.49585683250427,120.52637813568116,120.55689943885803,120.58742074203491,120.61794204521179,120.64846334838867,120.67898465156556,120.70950595474243,120.74002725791931,120.77054856109619,120.80106986427307,120.83159116744994,120.86211247062683,120.89263377380371,120.92315507698059,120.95367638015748,120.98419768333434,121.01471898651123,121.04524028968811,121.07576159286499,121.10628289604188,121.13680419921874,121.16732550239563,121.19784680557251,121.2283681087494,121.25888941192626,121.28941071510314,121.31993201828003,121.35045332145691,121.3809746246338,121.41149592781066,121.44201723098755,121.47253853416443,121.50305983734131,121.5335811405182,121.56410244369506,121.59462374687195,121.62514505004883,121.65566635322571,121.68618765640258,121.71670895957946,121.74723026275635,121.77775156593323,121.80827286911011,121.83879417228698,121.86931547546386,121.89983677864075,121.93035808181763,121.9608793849945,121.99140068817138,122.02192199134826,122.05244329452515,122.08296459770203,122.1134859008789,122.14400720405578,122.17452850723267,122.20504981040955,122.23557111358643,122.2660924167633,122.29661371994018,122.32713502311707,122.35765632629395,122.38817762947082,122.4186989326477,122.44922023582458,122.47974153900147,122.51026284217835,122.54078414535522,122.5713054485321,122.60182675170898,122.63234805488587,122.66286935806275,122.69339066123962,122.7239119644165,122.75443326759338,122.78495457077027,122.81547587394714,122.84599717712402,122.8765184803009,122.90703978347779,122.93756108665467,122.96808238983154,122.99860369300842,123.0291249961853,123.05964629936219,123.09016760253905,123.12068890571594,123.15121020889282,123.1817315120697,123.21225281524659,123.24277411842345,123.27329542160034,123.30381672477722,123.3343380279541,123.36485933113099,123.39538063430786,123.42590193748474,123.45642324066162,123.4869445438385,123.51746584701537,123.54798715019226,123.57850845336914,123.60902975654602,123.6395510597229,123.67007236289977,123.70059366607666,123.73111496925354,123.76163627243042,123.7921575756073,123.82267887878417,123.85320018196106,123.88372148513794,123.91424278831482,123.94476409149169,123.97528539466857,124.00580669784546,124.03632800102234,124.06684930419922,124.09737060737609,124.12789191055298,124.15841321372986,124.18893451690674,124.21945582008361,124.24997712326049,124.28049842643738,124.31101972961426,124.34154103279114,124.37206233596801,124.4025836391449,124.43310494232178,124.46362624549866,124.49414754867554,124.52466885185241,124.5551901550293,124.58571145820618,124.61623276138306,124.64675406455993,124.67727536773681,124.7077966709137,124.73831797409058,124.76883927726746,124.79936058044433,124.82988188362121,124.8604031867981,124.89092448997498,124.92144579315186,124.95196709632873,124.98248839950561,125.0130097026825,125.04353100585938,125.07405230903625,125.10457361221313,125.13509491539001,125.1656162185669,125.19613752174378,125.22665882492065,125.25718012809753,125.28770143127441,125.3182227344513,125.34874403762817,125.37926534080505,125.40978664398193,125.44030794715881,125.4708292503357,125.50135055351257,125.53187185668945,125.56239315986633,125.59291446304321,125.6234357662201,125.65395706939697,125.68447837257385,125.71499967575073,125.74552097892762,125.77604228210448,125.80656358528137,125.83708488845825,125.86760619163513,125.89812749481202,125.92864879798888,125.95917010116577,125.98969140434265,126.02021270751953,126.05073401069642,126.08125531387329,126.11177661705017,126.14229792022705,126.17281922340393,126.2033405265808,126.23386182975769,126.26438313293457,126.29490443611145,126.32542573928833,126.3559470424652,126.38646834564209,126.41698964881897,126.44751095199585,126.47803225517274,126.5085535583496,126.53907486152649,126.56959616470337,126.60011746788025,126.63063877105712,126.661160074234,126.69168137741089,126.72220268058777,126.75272398376465,126.78324528694152,126.8137665901184,126.84428789329529,126.87480919647217,126.90533049964904,126.93585180282592,126.9663731060028,126.99689440917969,127.02741571235657,127.05793701553344,127.08845831871032,127.1189796218872,127.14950092506409,127.18002222824097,127.21054353141784,127.24106483459472,127.2715861377716,127.30210744094849,127.33262874412536,127.36315004730224,127.39367135047912,127.42419265365601,127.45471395683289,127.48523526000976,127.51575656318664,127.54627786636352,127.57679916954041,127.60732047271729,127.63784177589416,127.66836307907104,127.69888438224793,127.72940568542481,127.75992698860168,127.79044829177856,127.82096959495544,127.85149089813233,127.88201220130921,127.91253350448608,127.94305480766296,127.97357611083984,128.0040974140167,128.03461871719358,128.06514002037048,128.09566132354735,128.12618262672424,128.1567039299011,128.18722523307798,128.21774653625488,128.24826783943175,128.27878914260864,128.3093104457855,128.33983174896238,128.37035305213928,128.40087435531615,128.43139565849305,128.4619169616699,128.49243826484678,128.52295956802368,128.55348087120055,128.58400217437745,128.61452347755431,128.64504478073118,128.67556608390808,128.70608738708495,128.73660869026185,128.76712999343872,128.79765129661558,128.82817259979248,128.85869390296935,128.88921520614622,128.91973650932312,128.95025781249998,128.98077911567688,129.01130041885375,129.04182172203062,129.07234302520752,129.10286432838438,129.13338563156128,129.16390693473815,129.19442823791502,129.22494954109192,129.25547084426879,129.28599214744568,129.31651345062255,129.34703475379942,129.37755605697632,129.4080773601532,129.43859866333008,129.46911996650695,129.49964126968382,129.53016257286072,129.5606838760376,129.59120517921446,129.62172648239135,129.65224778556822,129.68276908874512,129.713290391922,129.74381169509886,129.77433299827575,129.80485430145262,129.83537560462952,129.8658969078064,129.89641821098326,129.92693951416015,129.95746081733702,129.98798212051392,130.0185034236908,130.04902472686766,130.07954603004455,130.11006733322142,130.14058863639832,130.1711099395752,130.20163124275206,130.23215254592895,130.26267384910582,130.2931951522827,130.3237164554596,130.35423775863646,130.38475906181336,130.41528036499022,130.4458016681671,130.476322971344,130.50684427452086,130.53736557769776,130.56788688087462,130.5984081840515,130.6289294872284,130.65945079040526,130.68997209358216,130.72049339675903,130.7510146999359,130.7815360031128,130.81205730628966,130.84257860946656,130.87309991264343,130.9036212158203,130.9341425189972,130.96466382217406,130.99518512535096,131.02570642852783,131.0562277317047,131.0867490348816,131.11727033805846,131.14779164123533,131.17831294441223,131.2088342475891,131.239355550766,131.26987685394286,131.30039815711973,131.33091946029663,131.3614407634735,131.3919620666504,131.42248336982726,131.45300467300413,131.48352597618103,131.5140472793579,131.5445685825348,131.57508988571166,131.60561118888853,131.63613249206543,131.6666537952423,131.6971750984192,131.72769640159606,131.75821770477293,131.78873900794983,131.8192603111267,131.84978161430357,131.88030291748046,131.91082422065733,131.94134552383423,131.9718668270111,132.002388130188,132.03290943336486,132.06343073654173,132.09395203971863,132.1244733428955,132.1549946460724,132.18551594924926,132.21603725242613,132.24655855560303,132.2770798587799,132.3076011619568,132.33812246513367,132.36864376831053,132.39916507148743,132.4296863746643,132.4602076778412,132.49072898101807,132.52125028419493,132.55177158737183,132.5822928905487,132.6128141937256,132.64333549690247,132.67385680007934,132.70437810325623,132.7348994064331,132.76542070960997,132.79594201278687,132.82646331596374,132.85698461914063,132.8875059223175,132.91802722549437,132.94854852867127,132.97906983184814,133.00959113502503,133.0401124382019,133.07063374137877,133.10115504455567,133.13167634773254,133.16219765090943,133.1927189540863,133.22324025726317,133.25376156044007,133.28428286361694,133.31480416679383,133.3453254699707,133.37584677314757,133.40636807632447,133.43688937950134,133.46741068267823,133.4979319858551,133.52845328903197,133.55897459220887,133.58949589538574,133.6200171985626,133.6505385017395,133.68105980491637,133.71158110809327,133.74210241127014,133.772623714447,133.8031450176239,133.83366632080077,133.86418762397767,133.89470892715454,133.9252302303314,133.9557515335083,133.98627283668517,134.01679413986207,134.04731544303894,134.0778367462158,134.1083580493927,134.13887935256957,134.16940065574647,134.19992195892334,134.2304432621002,134.2609645652771,134.29148586845398,134.32200717163084,134.35252847480774,134.3830497779846,134.4135710811615,134.44409238433838,134.47461368751524,134.50513499069214,134.535656293869,134.5661775970459,134.59669890022278,134.62722020339965,134.65774150657654,134.6882628097534,134.7187841129303,134.74930541610718,134.77982671928405,134.81034802246094,134.8408693256378,134.8713906288147,134.90191193199158,134.93243323516845,134.96295453834534,134.9934758415222,135.0239971446991,135.05451844787598,135.08503975105285,135.11556105422974,135.1460823574066,135.17660366058348,135.20712496376038,135.23764626693725,135.26816757011414,135.298688873291,135.32921017646788,135.35973147964478,135.39025278282165,135.42077408599854,135.4512953891754,135.48181669235228,135.51233799552918,135.54285929870605,135.57338060188295,135.60390190505981,135.63442320823668,135.66494451141358,135.69546581459045,135.72598711776735,135.75650842094421,135.78702972412108,135.81755102729798,135.84807233047485,135.87859363365172,135.90911493682862,135.93963624000548,135.97015754318238,136.00067884635925,136.03120014953612,136.06172145271302,136.09224275588988,136.12276405906678,136.15328536224365,136.18380666542052,136.21432796859742,136.24484927177429,136.27537057495118,136.30589187812805,136.33641318130492,136.36693448448182,136.39745578765869,136.42797709083558,136.45849839401245,136.48901969718932,136.51954100036622,136.5500623035431,136.58058360671996,136.61110490989685,136.64162621307372,136.67214751625062,136.7026688194275,136.73319012260436,136.76371142578125,136.79423272895812,136.82475403213502,136.8552753353119,136.88579663848876,136.91631794166565,136.94683924484252,136.97736054801942,137.0078818511963,137.03840315437316,137.06892445755005,137.09944576072692,137.12996706390382,137.1604883670807,137.19100967025756,137.22153097343445,137.25205227661132,137.28257357978822,137.3130948829651,137.34361618614196,137.37413748931885,137.40465879249572,137.4351800956726,137.4657013988495,137.49622270202636,137.52674400520326,137.55726530838012,137.587786611557,137.6183079147339,137.64882921791076,137.67935052108766,137.70987182426452,137.7403931274414,137.7709144306183,137.80143573379516,137.83195703697206,137.86247834014893,137.8929996433258,137.9235209465027,137.95404224967956,137.98456355285646,138.01508485603333,138.0456061592102,138.0761274623871,138.10664876556396,138.13717006874083,138.16769137191773,138.1982126750946,138.2287339782715,138.25925528144836,138.28977658462523,138.32029788780213,138.350819190979,138.3813404941559,138.41186179733276,138.44238310050963,138.47290440368653,138.5034257068634,138.5339470100403,138.56446831321716,138.59498961639403,138.62551091957093,138.6560322227478,138.6865535259247,138.71707482910156,138.74759613227843,138.77811743545533,138.8086387386322,138.83916004180907,138.86968134498596,138.90020264816283,138.93072395133973,138.9612452545166,138.99176655769347,139.02228786087036,139.05280916404723,139.08333046722413,139.113851770401,139.14437307357787,139.17489437675476,139.20541567993163,139.23593698310853,139.2664582862854,139.29697958946227,139.32750089263916,139.35802219581603,139.38854349899293,139.4190648021698,139.44958610534667,139.48010740852357,139.51062871170043,139.54115001487733,139.5716713180542,139.60219262123107,139.63271392440797,139.66323522758483,139.6937565307617,139.7242778339386,139.75479913711547,139.78532044029237,139.81584174346924,139.8463630466461,139.876884349823,139.90740565299987,139.93792695617677,139.96844825935364,139.9989695625305,140.0294908657074,140.06001216888427,140.09053347206117,140.12105477523804,140.1515760784149,140.1820973815918,140.21261868476867,140.24313998794557,140.27366129112244,140.3041825942993,140.3347038974762,140.36522520065307,140.39574650382994,140.42626780700684,140.4567891101837,140.4873104133606,140.51783171653747,140.54835301971434,140.57887432289124,140.6093956260681,140.639916929245,140.67043823242187,140.70095953559874,140.73148083877564,140.7620021419525,140.7925234451294,140.82304474830627,140.85356605148314,140.88408735466004,140.9146086578369,140.9451299610138,140.97565126419067,141.00617256736754,141.03669387054444,141.0672151737213,141.0977364768982,141.12825778007507,141.15877908325194,141.18930038642884,141.2198216896057,141.25034299278258,141.28086429595947,141.31138559913634,141.34190690231324,141.3724282054901,141.40294950866698,141.43347081184388,141.46399211502074,141.49451341819764,141.5250347213745,141.55555602455138,141.58607732772828,141.61659863090514,141.64711993408204,141.6776412372589,141.70816254043578,141.73868384361268,141.76920514678955,141.79972644996644,141.8302477531433,141.86076905632018,141.89129035949708,141.92181166267395,141.95233296585081,141.9828542690277,142.01337557220458,142.04389687538148,142.07441817855835,142.10493948173522,142.1354607849121,142.16598208808898,142.19650339126588,142.22702469444275,142.25754599761962,142.2880673007965,142.31858860397338,142.34910990715028,142.37963121032715,142.41015251350402,142.4406738166809,142.47119511985778,142.50171642303468,142.53223772621155,142.56275902938842,142.5932803325653,142.62380163574218,142.65432293891905,142.68484424209595,142.71536554527282,142.74588684844971,142.77640815162658,142.80692945480345,142.83745075798035,142.86797206115722,142.89849336433412,142.92901466751098,142.95953597068785,142.99005727386475,143.02057857704162,143.05109988021852,143.08162118339538,143.11214248657225,143.14266378974915,143.17318509292602,143.20370639610292,143.23422769927978,143.26474900245665,143.29527030563355,143.32579160881042,143.35631291198732,143.38683421516419,143.41735551834105,143.44787682151795,143.47839812469482,143.5089194278717,143.5394407310486,143.56996203422545,143.60048333740235,143.63100464057922,143.6615259437561,143.692047246933,143.72256855010986,143.75308985328675,143.78361115646362,143.8141324596405,143.8446537628174,143.87517506599426,143.90569636917115,143.93621767234802,143.9667389755249,143.9972602787018,144.02778158187866,144.05830288505555,144.08882418823242,144.1193454914093,144.1498667945862,144.18038809776306,144.21090940093993,144.24143070411682,144.2719520072937,144.3024733104706,144.33299461364746,144.36351591682433,144.39403722000122,144.4245585231781,144.455079826355,144.48560112953186,144.51612243270873,144.54664373588562,144.5771650390625,144.6076863422394,144.63820764541626,144.66872894859313,144.69925025177002,144.7297715549469,144.7602928581238,144.79081416130066,144.82133546447753,144.85185676765443,144.8823780708313,144.91289937400816,144.94342067718506,144.97394198036193,145.00446328353883,145.0349845867157,145.06550588989256,145.09602719306946,145.12654849624633,145.15706979942323,145.1875911026001,145.21811240577696,145.24863370895386,145.27915501213073,145.30967631530763,145.3401976184845,145.37071892166136,145.40124022483826,145.43176152801513,145.46228283119203,145.4928041343689,145.52332543754576,145.55384674072266,145.58436804389953,145.61488934707643,145.6454106502533,145.67593195343017,145.70645325660706,145.73697455978393,145.7674958629608,145.7980171661377,145.82853846931457,145.85905977249146,145.88958107566833,145.9201023788452,145.9506236820221,145.98114498519897,146.01166628837586,146.04218759155273,146.0727088947296,146.1032301979065,146.13375150108337,146.16427280426026,146.19479410743713,146.225315410614,146.2558367137909,146.28635801696777,146.31687932014466,146.34740062332153,146.3779219264984,146.4084432296753,146.43896453285217,146.46948583602904,146.50000713920593,146.5305284423828,146.5610497455597,146.59157104873657,146.62209235191344,146.65261365509033,146.6831349582672,146.7136562614441,146.74417756462097,146.77469886779784,146.80522017097474,146.8357414741516,146.8662627773285,146.89678408050537,146.92730538368224,146.95782668685914,146.988347990036,147.0188692932129,147.04939059638977,147.07991189956664,147.11043320274354,147.1409545059204,147.1714758090973,147.20199711227417,147.23251841545104,147.26303971862794,147.2935610218048,147.32408232498167,147.35460362815857,147.38512493133544,147.41564623451234,147.4461675376892,147.47668884086607,147.50721014404297,147.53773144721984,147.56825275039674,147.5987740535736,147.62929535675048,147.65981665992737,147.69033796310424,147.72085926628114,147.751380569458,147.78190187263488,147.81242317581177,147.84294447898864,147.87346578216554,147.9039870853424,147.93450838851928,147.96502969169617,147.99555099487304,148.0260722980499,148.0565936012268,148.08711490440368,148.11763620758057,148.14815751075744,148.1786788139343,148.2092001171112,148.23972142028808,148.27024272346497,148.30076402664184,148.3312853298187,148.3618066329956,148.39232793617248,148.42284923934938,148.45337054252624,148.4838918457031,148.51441314888,148.54493445205688,148.57545575523378,148.60597705841064,148.6364983615875,148.6670196647644,148.69754096794128,148.72806227111815,148.75858357429505,148.7891048774719,148.8196261806488,148.85014748382568,148.88066878700255,148.91119009017945,148.94171139335631,148.9722326965332,149.00275399971008,149.03327530288695,149.06379660606385,149.09431790924071,149.1248392124176,149.15536051559448,149.18588181877135,149.21640312194825,149.24692442512512,149.277445728302,149.30796703147888,149.33848833465575,149.36900963783265,149.39953094100952,149.4300522441864,149.46057354736328,149.49109485054015,149.52161615371705,149.55213745689392,149.58265876007079,149.61318006324768,149.64370136642455,149.67422266960145,149.70474397277832,149.7352652759552,149.76578657913208,149.79630788230895,149.82682918548585,149.85735048866272,149.8878717918396,149.91839309501648,149.94891439819335,149.97943570137025,150.00995700454712,150.040478307724,150.07099961090088,150.10152091407775,150.13204221725465,150.16256352043152,150.1930848236084,150.22360612678528,150.25412742996215,150.28464873313902,150.31517003631592,150.3456913394928,150.37621264266969,150.40673394584655,150.43725524902342,150.46777655220032,150.4982978553772,150.52881915855409,150.55934046173095,150.58986176490782,150.62038306808472,150.6509043712616,150.6814256744385,150.71194697761536,150.74246828079222,150.77298958396912,150.803510887146,150.8340321903229,150.86455349349976,150.89507479667662,150.92559609985352,150.9561174030304,150.9866387062073,151.01716000938416,151.04768131256102,151.07820261573792,151.1087239189148,151.13924522209166,151.16976652526856,151.20028782844543,151.23080913162232,151.2613304347992,151.29185173797606,151.32237304115296,151.35289434432983,151.38341564750672,151.4139369506836,151.44445825386046,151.47497955703736,151.50550086021423,151.53602216339112,151.566543466568,151.59706476974486,151.62758607292176,151.65810737609863,151.68862867927552,151.7191499824524,151.74967128562926,151.78019258880616,151.81071389198303,151.8412351951599,151.8717564983368,151.90227780151366,151.93279910469056,151.96332040786743,151.9938417110443,152.0243630142212,152.05488431739806,152.08540562057496,152.11592692375183,152.1464482269287,152.1769695301056,152.20749083328246,152.23801213645936,152.26853343963623,152.2990547428131,152.32957604599,152.36009734916686,152.39061865234376,152.42113995552063,152.4516612586975,152.4821825618744,152.51270386505126,152.54322516822813,152.57374647140503,152.6042677745819,152.6347890777588,152.66531038093567,152.69583168411253,152.72635298728943,152.7568742904663,152.7873955936432,152.81791689682007,152.84843819999693,152.87895950317383,152.9094808063507,152.9400021095276,152.97052341270447,153.00104471588133,153.03156601905823,153.0620873222351,153.092608625412,153.12312992858887,153.15365123176574,153.18417253494263,153.2146938381195,153.2452151412964,153.27573644447327,153.30625774765014,153.33677905082703,153.3673003540039,153.39782165718077,153.42834296035767,153.45886426353454,153.48938556671143,153.5199068698883,153.55042817306517,153.58094947624207,153.61147077941894,153.64199208259583,153.6725133857727,153.70303468894957,153.73355599212647,153.76407729530334,153.79459859848023,153.8251199016571,153.85564120483397,153.88616250801087,153.91668381118774,153.94720511436464,153.9777264175415,154.00824772071837,154.03876902389527,154.06929032707214,154.099811630249,154.1303329334259,154.16085423660277,154.19137553977967,154.22189684295654,154.2524181461334,154.2829394493103,154.31346075248717,154.34398205566407,154.37450335884094,154.4050246620178,154.4355459651947,154.46606726837157,154.49658857154847,154.52710987472534,154.5576311779022,154.5881524810791,154.61867378425598,154.64919508743287,154.67971639060974,154.7102376937866,154.7407589969635,154.77128030014038,154.80180160331724,154.83232290649414,154.862844209671,154.8933655128479,154.92388681602478,154.95440811920164,154.98492942237854,155.0154507255554,155.0459720287323,155.07649333190918,155.10701463508605,155.13753593826294,155.1680572414398,155.1985785446167,155.22909984779358,155.25962115097045,155.29014245414734,155.3206637573242,155.3511850605011,155.38170636367798,155.41222766685485,155.44274897003174,155.4732702732086,155.5037915763855,155.53431287956238,155.56483418273925,155.59535548591614,155.625876789093,155.65639809226988,155.68691939544678,155.71744069862365,155.74796200180054,155.7784833049774,155.80900460815428,155.83952591133118,155.87004721450805,155.90056851768495,155.9310898208618,155.96161112403868,155.99213242721558,156.02265373039245,156.05317503356935,156.08369633674621,156.11421763992308,156.14473894309998,156.17526024627685,156.20578154945375,156.23630285263062,156.26682415580748,156.29734545898438,156.32786676216125,156.35838806533812,156.38890936851502,156.41943067169188,156.44995197486878,156.48047327804565,156.51099458122252,156.54151588439942,156.57203718757629,156.60255849075318,156.63307979393005,156.66360109710692,156.69412240028382,156.72464370346069,156.75516500663758,156.78568630981445,156.81620761299132,156.84672891616822,156.8772502193451,156.90777152252198,156.93829282569885,156.96881412887572,156.99933543205262,157.0298567352295,157.06037803840638,157.09089934158325,157.12142064476012,157.15194194793702,157.1824632511139,157.21298455429076,157.24350585746765,157.27402716064452,157.30454846382142,157.3350697669983,157.36559107017516,157.39611237335205,157.42663367652892,157.45715497970582,157.4876762828827,157.51819758605956,157.54871888923645,157.57924019241332,157.60976149559022,157.6402827987671,157.67080410194396,157.70132540512085,157.73184670829772,157.76236801147462,157.7928893146515,157.82341061782836,157.85393192100526,157.88445322418212,157.914974527359,157.9454958305359,157.97601713371276,158.00653843688966,158.03705974006652,158.0675810432434,158.0981023464203,158.12862364959716,158.15914495277406,158.18966625595093,158.2201875591278,158.2507088623047,158.28123016548156,158.31175146865846,158.34227277183533,158.3727940750122,158.4033153781891,158.43383668136596,158.46435798454286,158.49487928771973,158.5254005908966,158.5559218940735,158.58644319725036,158.61696450042723,158.64748580360413,158.678007106781,158.7085284099579,158.73904971313476,158.76957101631163,158.80009231948853,158.8306136226654,158.8611349258423,158.89165622901916,158.92217753219603,158.95269883537293,158.9832201385498,159.0137414417267,159.04426274490356,159.07478404808043,159.10530535125733,159.1358266544342,159.1663479576111,159.19686926078796,159.22739056396483,159.25791186714173,159.2884331703186,159.3189544734955,159.34947577667236,159.37999707984923,159.41051838302613,159.441039686203,159.47156098937987,159.50208229255676,159.53260359573363,159.56312489891053,159.5936462020874,159.62416750526427,159.65468880844116,159.68521011161803,159.71573141479493,159.7462527179718,159.77677402114867,159.80729532432557,159.83781662750243,159.86833793067933,159.8988592338562,159.92938053703307,159.95990184020997,159.99042314338683,160.02094444656373,160.0514657497406,160.08198705291747,160.11250835609437,160.14302965927124,160.1735509624481,160.204072265625,160.23459356880187,160.26511487197877,160.29563617515564,160.3261574783325,160.3566787815094,160.38720008468627,160.41772138786317,160.44824269104004,160.4787639942169,160.5092852973938,160.53980660057067,160.57032790374757,160.60084920692444,160.6313705101013,160.6618918132782,160.69241311645507,160.72293441963197,160.75345572280884,160.7839770259857,160.8144983291626,160.84501963233947,160.87554093551634,160.90606223869324,160.9365835418701,160.967104845047,160.99762614822387,161.02814745140074,161.05866875457764,161.0891900577545,161.1197113609314,161.15023266410827,161.18075396728514,161.21127527046204,161.2417965736389,161.2723178768158,161.30283917999267,161.33336048316954,161.36388178634644,161.3944030895233,161.4249243927002,161.45544569587707,161.48596699905394,161.51648830223084,161.5470096054077,161.5775309085846,161.60805221176147,161.63857351493834,161.66909481811524,161.6996161212921,161.73013742446898,161.76065872764588,161.79118003082274,161.82170133399964,161.8522226371765,161.88274394035338,161.91326524353028,161.94378654670714,161.97430784988404,162.0048291530609,162.03535045623778,162.06587175941468,162.09639306259155,162.12691436576844,162.1574356689453,162.18795697212218,162.21847827529908,162.24899957847595,162.27952088165284,162.3100421848297,162.34056348800658,162.37108479118348,162.40160609436035,162.43212739753722,162.4626487007141,162.49317000389098,162.52369130706788,162.55421261024475,162.58473391342162,162.6152552165985,162.64577651977538,162.67629782295228,162.70681912612915,162.73734042930602,162.7678617324829,162.79838303565978,162.82890433883668,162.85942564201355,162.88994694519042,162.9204682483673,162.95098955154418,162.98151085472108,163.01203215789795,163.04255346107482,163.07307476425171,163.10359606742858,163.13411737060548,163.16463867378235,163.19515997695922,163.22568128013611,163.25620258331298,163.28672388648985,163.31724518966675,163.34776649284362,163.37828779602052,163.40880909919738,163.43933040237425,163.46985170555115,163.50037300872802,163.53089431190492,163.56141561508178,163.59193691825865,163.62245822143555,163.65297952461242,163.68350082778932,163.71402213096619,163.74454343414305,163.77506473731995,163.80558604049682,163.83610734367372,163.8666286468506,163.89714995002745,163.92767125320435,163.95819255638122,163.9887138595581,164.019235162735,164.04975646591186,164.08027776908875,164.11079907226562,164.1413203754425,164.1718416786194,164.20236298179626,164.23288428497315,164.26340558815002,164.2939268913269,164.3244481945038,164.35496949768066,164.38549080085755,164.41601210403442,164.4465334072113,164.4770547103882,164.50757601356506,164.53809731674195,164.56861861991882,164.5991399230957,164.6296612262726,164.66018252944946,164.69070383262633,164.72122513580322,164.7517464389801,164.782267742157,164.81278904533386,164.84331034851073,164.87383165168762,164.9043529548645,164.9348742580414,164.96539556121826,164.99591686439513,165.02643816757202,165.0569594707489,165.0874807739258,165.11800207710266,165.14852338027953,165.17904468345642,165.2095659866333,165.2400872898102,165.27060859298706,165.30112989616393,165.33165119934083,165.3621725025177,165.3926938056946,165.42321510887146,165.45373641204833,165.48425771522523,165.5147790184021,165.54530032157896,165.57582162475586,165.60634292793273,165.63686423110963,165.6673855342865,165.69790683746336,165.72842814064026,165.75894944381713,165.78947074699403,165.8199920501709,165.85051335334776,165.88103465652466,165.91155595970153,165.94207726287843,165.9725985660553,166.00311986923217,166.03364117240906,166.06416247558593,166.09468377876283,166.1252050819397,166.15572638511657,166.18624768829346,166.21676899147033,166.2472902946472,166.2778115978241,166.30833290100097,166.33885420417786,166.36937550735473,166.3998968105316,166.4304181137085,166.46093941688537,166.49146072006226,166.52198202323913,166.552503326416,166.5830246295929,166.61354593276977,166.64406723594666,166.67458853912353,166.7051098423004,166.7356311454773,166.76615244865417,166.79667375183107,166.82719505500793,166.8577163581848,166.8882376613617,166.91875896453857,166.94928026771544,166.97980157089233,167.0103228740692,167.0408441772461,167.07136548042297,167.10188678359984,167.13240808677673,167.1629293899536,167.1934506931305,167.22397199630737,167.25449329948424,167.28501460266114,167.315535905838,167.3460572090149,167.37657851219177,167.40709981536864,167.43762111854554,167.4681424217224,167.4986637248993,167.52918502807617,167.55970633125304,167.59022763442994,167.6207489376068,167.6512702407837,167.68179154396057,167.71231284713744,167.74283415031434,167.7733554534912,167.80387675666807,167.83439805984497,167.86491936302184,167.89544066619874,167.9259619693756,167.95648327255248,167.98700457572937,168.01752587890624,168.04804718208314,168.07856848526,168.10908978843688,168.13961109161377,168.17013239479064,168.20065369796754,168.2311750011444,168.26169630432128,168.29221760749817,168.32273891067504,168.35326021385194,168.3837815170288,168.41430282020568,168.44482412338257,168.47534542655944,168.5058667297363,168.5363880329132,168.56690933609008,168.59743063926697,168.62795194244384,168.6584732456207,168.6889945487976,168.71951585197448,168.75003715515138,168.78055845832824,168.8110797615051,168.841601064682,168.87212236785888,168.90264367103578,168.93316497421264,168.9636862773895,168.9942075805664,169.02472888374328,169.05525018692018,169.08577149009704,169.1162927932739,169.1468140964508,169.17733539962768,169.20785670280458,169.23837800598145,169.26889930915831,169.2994206123352,169.32994191551208,169.36046321868895,169.39098452186585,169.42150582504271,169.4520271282196,169.48254843139648,169.51306973457335,169.54359103775025,169.57411234092712,169.604633644104,169.63515494728088,169.66567625045775,169.69619755363465,169.72671885681152,169.7572401599884,169.78776146316528,169.81828276634215,169.84880406951905,169.87932537269592,169.9098466758728,169.94036797904968,169.97088928222655,170.00141058540345,170.03193188858032,170.06245319175719,170.09297449493408,170.12349579811095,170.15401710128785,170.18453840446472,170.2150597076416,170.24558101081848,170.27610231399535,170.30662361717225,170.33714492034912,170.367666223526,170.39818752670288,170.42870882987975,170.45923013305665,170.48975143623352,170.5202727394104,170.55079404258728,170.58131534576415,170.61183664894105,170.64235795211792,170.6728792552948,170.70340055847169,170.73392186164855,170.76444316482542,170.79496446800232,170.8254857711792,170.85600707435609,170.88652837753295,170.91704968070982,170.94757098388672,170.9780922870636,171.0086135902405,171.03913489341735,171.06965619659422,171.10017749977112,171.130698802948,171.1612201061249,171.19174140930176,171.22226271247862,171.25278401565552,171.2833053188324,171.3138266220093,171.34434792518616,171.37486922836302,171.40539053153992,171.4359118347168,171.4664331378937,171.49695444107056,171.52747574424743,171.55799704742432,171.5885183506012,171.61903965377806,171.64956095695496,171.68008226013183,171.71060356330872,171.7411248664856,171.77164616966246,171.80216747283936,171.83268877601623,171.86321007919312,171.89373138237,171.92425268554686,171.95477398872376,171.98529529190063,172.01581659507752,172.0463378982544,172.07685920143126,172.10738050460816,172.13790180778503,172.16842311096192,172.1989444141388,172.22946571731566,172.25998702049256,172.29050832366943,172.3210296268463,172.3515509300232,172.38207223320006,172.41259353637696,172.44311483955383,172.4736361427307,172.5041574459076,172.53467874908446,172.56520005226136,172.59572135543823,172.6262426586151,172.656763961792,172.68728526496886,172.71780656814576,172.74832787132263,172.7788491744995,172.8093704776764,172.83989178085326,172.87041308403016,172.90093438720703,172.9314556903839,172.9619769935608,172.99249829673766,173.02301959991456,173.05354090309143,173.0840622062683,173.1145835094452,173.14510481262207,173.17562611579893,173.20614741897583,173.2366687221527,173.2671900253296,173.29771132850647,173.32823263168333,173.35875393486023,173.3892752380371,173.419796541214,173.45031784439087,173.48083914756774,173.51136045074463,173.5418817539215,173.5724030570984,173.60292436027527,173.63344566345214,173.66396696662903,173.6944882698059,173.7250095729828,173.75553087615967,173.78605217933654,173.81657348251343,173.8470947856903,173.87761608886717,173.90813739204407,173.93865869522094,173.96917999839783,173.9997013015747,174.03022260475157,174.06074390792847,174.09126521110534,174.12178651428223,174.1523078174591,174.18282912063597,174.21335042381287,174.24387172698974,174.27439303016664,174.3049143333435,174.33543563652037,174.36595693969727,174.39647824287414,174.42699954605104,174.4575208492279,174.48804215240477,174.51856345558167,174.54908475875854,174.5796060619354,174.6101273651123,174.64064866828917,174.67116997146607,174.70169127464294,174.7322125778198,174.7627338809967,174.79325518417357,174.82377648735047,174.85429779052734,174.8848190937042,174.9153403968811,174.94586170005797,174.97638300323487,175.00690430641174,175.0374256095886,175.0679469127655,175.09846821594238,175.12898951911927,175.15951082229614,175.190032125473,175.2205534286499,175.25107473182678,175.28159603500367,175.31211733818054,175.3426386413574,175.3731599445343,175.40368124771118,175.43420255088805,175.46472385406494,175.4952451572418,175.5257664604187,175.55628776359558,175.58680906677245,175.61733036994934,175.6478516731262,175.6783729763031,175.70889427947998,175.73941558265685,175.76993688583374,175.8004581890106,175.8309794921875,175.86150079536438,175.89202209854125,175.92254340171814,175.953064704895,175.9835860080719,176.01410731124878,176.04462861442565,176.07514991760254,176.1056712207794,176.13619252395628,176.16671382713318,176.19723513031005,176.22775643348695,176.2582777366638,176.28879903984068,176.31932034301758,176.34984164619445,176.38036294937135,176.41088425254821,176.44140555572508,176.47192685890198,176.50244816207885,176.53296946525575,176.56349076843262,176.59401207160948,176.62453337478638,176.65505467796325,176.68557598114015,176.71609728431702,176.74661858749388,176.77713989067078,176.80766119384765,176.83818249702452,176.86870380020142,176.89922510337828,176.92974640655518,176.96026770973205,176.99078901290892,177.02131031608582,177.05183161926269,177.08235292243958,177.11287422561645,177.14339552879332,177.17391683197022,177.2044381351471,177.23495943832398,177.26548074150085,177.29600204467772,177.32652334785462,177.3570446510315,177.38756595420838,177.41808725738525,177.44860856056212,177.47912986373902,177.5096511669159,177.54017247009278,177.57069377326965,177.60121507644652,177.63173637962342,177.6622576828003,177.69277898597716,177.72330028915405,177.75382159233092,177.78434289550782,177.8148641986847,177.84538550186156,177.87590680503845,177.90642810821532,177.93694941139222,177.9674707145691,177.99799201774596,178.02851332092285,178.05903462409972,178.08955592727662,178.1200772304535,178.15059853363036,178.18111983680726,178.21164113998412,178.24216244316102,178.2726837463379,178.30320504951476,178.33372635269166,178.36424765586852,178.3947689590454,178.4252902622223,178.45581156539916,178.48633286857606,178.51685417175293,178.5473754749298,178.5778967781067,178.60841808128356,178.63893938446046,178.66946068763733,178.6999819908142,178.7305032939911,178.76102459716796,178.79154590034486,178.82206720352173,178.8525885066986,178.8831098098755,178.91363111305236,178.94415241622926,178.97467371940613,179.005195022583,179.0357163257599,179.06623762893676,179.09675893211366,179.12728023529053,179.1578015384674,179.1883228416443,179.21884414482116,179.24936544799803,179.27988675117493,179.3104080543518,179.3409293575287,179.37145066070556,179.40197196388243,179.43249326705933,179.4630145702362,179.4935358734131,179.52405717658996,179.55457847976683,179.58509978294373,179.6156210861206,179.6461423892975,179.67666369247436,179.70718499565123,179.73770629882813,179.768227602005,179.7987489051819,179.82927020835876,179.85979151153563,179.89031281471253,179.9208341178894,179.95135542106627,179.98187672424316,180.01239802742003,180.04291933059693,180.0734406337738,180.10396193695067,180.13448324012757,180.16500454330443,180.19552584648133,180.2260471496582,180.25656845283507,180.28708975601197,180.31761105918883,180.34813236236573,180.3786536655426,180.40917496871947,180.43969627189637,180.47021757507324,180.50073887825013,180.531260181427,180.56178148460387,180.59230278778077,180.62282409095764,180.6533453941345,180.6838666973114,180.71438800048827,180.74490930366517,180.77543060684204,180.8059519100189,180.8364732131958,180.86699451637267,180.89751581954957,180.92803712272644,180.9585584259033,180.9890797290802,181.01960103225707,181.05012233543397,181.08064363861084,181.1111649417877,181.1416862449646,181.17220754814147,181.20272885131837,181.23325015449524,181.2637714576721,181.294292760849,181.32481406402587,181.35533536720277,181.38585667037964,181.4163779735565,181.4468992767334,181.47742057991027,181.50794188308714,181.53846318626404,181.5689844894409,181.5995057926178,181.63002709579467,181.66054839897154,181.69106970214844,181.7215910053253,181.7521123085022,181.78263361167907,181.81315491485594,181.84367621803284,181.8741975212097,181.9047188243866,181.93524012756347,181.96576143074034,181.99628273391724,182.0268040370941,182.057325340271,182.08784664344788,182.11836794662474,182.14888924980164,182.1794105529785,182.20993185615538,182.24045315933228,182.27097446250914,182.30149576568604,182.3320170688629,182.36253837203978,182.39305967521668,182.42358097839355,182.45410228157044,182.4846235847473,182.51514488792418,182.54566619110108,182.57618749427795,182.60670879745484,182.6372301006317,182.66775140380858,182.69827270698548,182.72879401016235,182.75931531333924,182.7898366165161,182.82035791969298,182.85087922286988,182.88140052604675,182.91192182922362,182.9424431324005,182.97296443557738,183.00348573875428,183.03400704193115,183.06452834510802,183.0950496482849,183.12557095146178,183.15609225463868,183.18661355781555,183.21713486099242,183.2476561641693,183.27817746734618,183.30869877052308,183.33922007369995,183.36974137687682,183.40026268005371,183.43078398323058,183.46130528640748,183.49182658958435,183.52234789276122,183.55286919593811,183.58339049911498,183.61391180229188,183.64443310546875,183.67495440864562,183.70547571182252,183.73599701499938,183.76651831817625,183.79703962135315,183.82756092453002,183.85808222770692,183.88860353088378,183.91912483406065,183.94964613723755,183.98016744041442,184.01068874359132,184.04121004676819,184.07173134994505,184.10225265312195,184.13277395629882,184.16329525947572,184.1938165626526,184.22433786582945,184.25485916900635,184.28538047218322,184.31590177536012,184.346423078537,184.37694438171386,184.40746568489075,184.43798698806762,184.4685082912445,184.4990295944214,184.52955089759826,184.56007220077515,184.59059350395202,184.6211148071289,184.6516361103058,184.68215741348266,184.71267871665955,184.74320001983642,184.7737213230133,184.8042426261902,184.83476392936706,184.86528523254395,184.89580653572082,184.9263278388977,184.9568491420746,184.98737044525146,185.01789174842835,185.04841305160522,185.0789343547821,185.109455657959,185.13997696113586,185.17049826431276,185.20101956748962,185.2315408706665,185.2620621738434,185.29258347702026,185.32310478019713,185.35362608337402,185.3841473865509,185.4146686897278,185.44518999290466,185.47571129608153,185.50623259925842,185.5367539024353,185.5672752056122,185.59779650878906,185.62831781196593,185.65883911514283,185.6893604183197,185.7198817214966,185.75040302467346,185.78092432785033,185.81144563102723,185.8419669342041,185.872488237381,185.90300954055786,185.93353084373473,185.96405214691163,185.9945734500885,186.02509475326536,186.05561605644226,186.08613735961913,186.11665866279603,186.1471799659729,186.17770126914976,186.20822257232666,186.23874387550353,186.26926517868043,186.2997864818573,186.33030778503417,186.36082908821106,186.39135039138793,186.42187169456483,186.4523929977417,186.48291430091857,186.51343560409546,186.54395690727233,186.57447821044923,186.6049995136261,186.63552081680297,186.66604211997986,186.69656342315673,186.7270847263336,186.7576060295105,186.78812733268737,186.81864863586426,186.84916993904113,186.879691242218,186.9102125453949,186.94073384857177,186.97125515174866,187.00177645492553,187.0322977581024,187.0628190612793,187.09334036445617,187.12386166763307,187.15438297080993,187.1849042739868,187.2154255771637,187.24594688034057,187.27646818351747,187.30698948669433,187.3375107898712,187.3680320930481,187.39855339622497,187.42907469940187,187.45959600257873,187.4901173057556,187.5206386089325,187.55115991210937,187.58168121528624,187.61220251846314,187.64272382164,187.6732451248169,187.70376642799377,187.73428773117064,187.76480903434754,187.7953303375244,187.8258516407013,187.85637294387817,187.88689424705504,187.91741555023194,187.9479368534088,187.9784581565857,188.00897945976257,188.03950076293944,188.07002206611634,188.1005433692932,188.1310646724701,188.16158597564697,188.19210727882384,188.22262858200074,188.2531498851776,188.28367118835448,188.31419249153137,188.34471379470824,188.37523509788514,188.405756401062,188.43627770423888,188.46679900741577,188.49732031059264,188.52784161376954,188.5583629169464,188.58888422012328,188.61940552330017,188.64992682647704,188.68044812965394,188.7109694328308,188.74149073600768,188.77201203918457,188.80253334236144,188.83305464553834,188.8635759487152,188.89409725189208,188.92461855506897,188.95513985824584,188.98566116142274,189.0161824645996,189.04670376777648,189.07722507095338,189.10774637413024,189.1382676773071,189.168788980484,189.19931028366088,189.22983158683778,189.26035289001464,189.2908741931915,189.3213954963684,189.35191679954528,189.38243810272218,189.41295940589904,189.4434807090759,189.4740020122528,189.50452331542968,189.53504461860658,189.56556592178345,189.5960872249603,189.6266085281372,189.65712983131408,189.68765113449098,189.71817243766785,189.74869374084471,189.7792150440216,189.80973634719848,189.84025765037535,189.87077895355225,189.90130025672912,189.931821559906,189.96234286308288,189.99286416625975,190.02338546943665,190.05390677261352,190.0844280757904,190.11494937896728,190.14547068214415,190.17599198532105,190.20651328849792,190.2370345916748,190.26755589485168,190.29807719802855,190.32859850120545,190.35911980438232,190.3896411075592,190.42016241073608,190.45068371391295,190.48120501708985,190.51172632026672,190.5422476234436,190.57276892662048,190.60329022979735,190.63381153297425,190.66433283615112,190.694854139328,190.72537544250488,190.75589674568175,190.78641804885865,190.81693935203552,190.8474606552124,190.87798195838928,190.90850326156615,190.93902456474305,190.96954586791992,191.0000671710968,191.03058847427369,191.06110977745055,191.09163108062745,191.12215238380432,191.1526736869812,191.18319499015809,191.21371629333495,191.24423759651185,191.27475889968872,191.3052802028656,191.3358015060425,191.36632280921935,191.39684411239622,191.42736541557312,191.45788671875,191.4884080219269,191.51892932510376,191.54945062828062,191.57997193145752,191.6104932346344,191.6410145378113,191.67153584098816,191.70205714416502,191.73257844734192,191.7630997505188,191.7936210536957,191.82414235687256,191.85466366004943,191.88518496322632,191.9157062664032,191.9462275695801,191.97674887275696,192.00727017593383,192.03779147911072,192.0683127822876,192.09883408546446,192.12935538864136,192.15987669181823,192.19039799499512,192.220919298172,192.25144060134886,192.28196190452576,192.31248320770263,192.34300451087952,192.3735258140564,192.40404711723326,192.43456842041016,192.46508972358703,192.49561102676392,192.5261323299408,192.55665363311766,192.58717493629456,192.61769623947143,192.64821754264833,192.6787388458252,192.70926014900206,192.73978145217896,192.77030275535583,192.8008240585327,192.8313453617096,192.86186666488646,192.89238796806336,192.92290927124023,192.9534305744171,192.983951877594,193.01447318077086,193.04499448394776,193.07551578712463,193.1060370903015,193.1365583934784,193.16707969665526,193.19760099983216,193.22812230300903,193.2586436061859,193.2891649093628,193.31968621253966,193.35020751571656,193.38072881889343,193.4112501220703,193.4417714252472,193.47229272842407,193.50281403160096,193.53333533477783,193.5638566379547,193.5943779411316,193.62489924430847,193.65542054748533,193.68594185066223,193.7164631538391,193.746984457016,193.77750576019287,193.80802706336974,193.83854836654663,193.8690696697235,193.8995909729004,193.93011227607727,193.96063357925414,193.99115488243103,194.0216761856079,194.0521974887848,194.08271879196167,194.11324009513854,194.14376139831543,194.1742827014923,194.2048040046692,194.23532530784607,194.26584661102294,194.29636791419983,194.3268892173767,194.35741052055357,194.38793182373047,194.41845312690734,194.44897443008423,194.4794957332611,194.51001703643797,194.54053833961487,194.57105964279174,194.60158094596864,194.6321022491455,194.66262355232237,194.69314485549927,194.72366615867614,194.75418746185304,194.7847087650299,194.81523006820677,194.84575137138367,194.87627267456054,194.90679397773744,194.9373152809143,194.96783658409117,194.99835788726807,195.02887919044494,195.05940049362184,195.0899217967987,195.12044309997557,195.15096440315247,195.18148570632934,195.2120070095062,195.2425283126831,195.27304961585997,195.30357091903687,195.33409222221374,195.3646135253906,195.3951348285675,195.42565613174438,195.45617743492127,195.48669873809814,195.517220041275,195.5477413444519,195.57826264762878,195.60878395080567,195.63930525398254,195.6698265571594,195.7003478603363,195.73086916351318,195.76139046669007,195.79191176986694,195.8224330730438,195.8529543762207,195.88347567939758,195.91399698257445,195.94451828575134,195.9750395889282,196.0055608921051,196.03608219528198,196.06660349845885,196.09712480163574,196.1276461048126,196.1581674079895,196.18868871116638,196.21921001434325,196.24973131752014,196.280252620697,196.3107739238739,196.34129522705078,196.37181653022765,196.40233783340454,196.4328591365814,196.4633804397583,196.49390174293518,196.52442304611205,196.55494434928895,196.5854656524658,196.61598695564268,196.64650825881958,196.67702956199645,196.70755086517335,196.73807216835021,196.76859347152708,196.79911477470398,196.82963607788085,196.86015738105775,196.89067868423462,196.92119998741148,196.95172129058838,196.98224259376525,197.01276389694215,197.04328520011902,197.07380650329588,197.10432780647278,197.13484910964965,197.16537041282655,197.19589171600342,197.22641301918028,197.25693432235718,197.28745562553405,197.31797692871095,197.34849823188782,197.37901953506469,197.40954083824158,197.44006214141845,197.47058344459532,197.50110474777222,197.5316260509491,197.56214735412598,197.59266865730285,197.62318996047972,197.65371126365662,197.6842325668335,197.71475387001038,197.74527517318725,197.77579647636412,197.80631777954102,197.8368390827179,197.86736038589478,197.89788168907165,197.92840299224852,197.95892429542542,197.9894455986023,198.01996690177918,198.05048820495605,198.08100950813292,198.11153081130982,198.1420521144867,198.17257341766356,198.20309472084045,198.23361602401732,198.26413732719422,198.2946586303711,198.32517993354796,198.35570123672485,198.38622253990172,198.41674384307862,198.4472651462555,198.47778644943236,198.50830775260926,198.53882905578612,198.56935035896302,198.5998716621399,198.63039296531676,198.66091426849366,198.69143557167052,198.72195687484742,198.7524781780243,198.78299948120116,198.81352078437806,198.84404208755493,198.8745633907318,198.9050846939087,198.93560599708556,198.96612730026246,198.99664860343933,199.0271699066162,199.0576912097931,199.08821251296996,199.11873381614686,199.14925511932373,199.1797764225006,199.2102977256775,199.24081902885436,199.27134033203126,199.30186163520813,199.332382938385,199.3629042415619,199.39342554473876,199.42394684791566,199.45446815109253,199.4849894542694,199.5155107574463,199.54603206062316,199.57655336380006,199.60707466697693,199.6375959701538,199.6681172733307,199.69863857650756,199.72915987968443,199.75968118286133,199.7902024860382,199.8207237892151,199.85124509239196,199.88176639556883,199.91228769874573,199.9428090019226,199.9733303050995,200.00385160827636,200.03437291145323,200.06489421463013,200.095415517807,200.1259368209839,200.15645812416076,200.18697942733763,200.21750073051453,200.2480220336914,200.2785433368683,200.30906464004516,200.33958594322203,200.37010724639893,200.4006285495758,200.43114985275267,200.46167115592957,200.49219245910643,200.52271376228333,200.5532350654602,200.58375636863707,200.61427767181397,200.64479897499083,200.67532027816773,200.7058415813446,200.73636288452147,200.76688418769837,200.79740549087524,200.82792679405213,200.858448097229,200.88896940040587,200.91949070358277,200.95001200675964,200.98053330993653,201.0110546131134,201.04157591629027,201.07209721946717,201.10261852264404,201.13313982582093,201.1636611289978,201.19418243217467,201.22470373535157,201.25522503852844,201.2857463417053,201.3162676448822,201.34678894805907,201.37731025123597,201.40783155441284,201.4383528575897,201.4688741607666,201.49939546394347,201.52991676712037,201.56043807029724,201.5909593734741,201.621480676651,201.65200197982787,201.68252328300477,201.71304458618164,201.7435658893585,201.7740871925354,201.80460849571227,201.83512979888917,201.86565110206604,201.8961724052429,201.9266937084198,201.95721501159667,201.98773631477354,202.01825761795044,202.0487789211273,202.0793002243042,202.10982152748107,202.14034283065794,202.17086413383484,202.2013854370117,202.2319067401886,202.26242804336547,202.29294934654234,202.32347064971924,202.3539919528961,202.384513256073,202.41503455924988,202.44555586242674,202.47607716560364,202.5065984687805,202.5371197719574,202.56764107513428,202.59816237831114,202.62868368148804,202.6592049846649,202.68972628784178,202.72024759101868,202.75076889419555,202.78129019737244,202.8118115005493,202.84233280372618,202.87285410690308,202.90337541007995,202.93389671325684,202.9644180164337,202.99493931961058,203.02546062278748,203.05598192596435,203.08650322914124,203.1170245323181,203.14754583549498,203.17806713867188,203.20858844184875,203.23910974502564,203.2696310482025,203.30015235137938,203.33067365455628,203.36119495773315,203.39171626091004,203.4222375640869,203.45275886726378,203.48328017044068,203.51380147361755,203.54432277679442,203.5748440799713,203.60536538314818,203.63588668632508,203.66640798950195,203.69692929267882,203.72745059585571,203.75797189903258,203.78849320220948,203.81901450538635,203.84953580856322,203.88005711174011,203.91057841491698,203.94109971809388,203.97162102127075,204.00214232444762,204.03266362762452,204.06318493080138,204.09370623397828,204.12422753715515,204.15474884033202,204.18527014350892,204.21579144668578,204.24631274986265,204.27683405303955,204.30735535621642,204.33787665939332,204.36839796257019,204.39891926574705,204.42944056892395,204.45996187210082,204.49048317527772,204.52100447845459,204.55152578163145,204.58204708480835,204.61256838798522,204.64308969116212,204.673610994339,204.70413229751586,204.73465360069275,204.76517490386962,204.79569620704652,204.8262175102234,204.85673881340026,204.88726011657715,204.91778141975402,204.9483027229309,204.9788240261078,205.00934532928466,205.03986663246155,205.07038793563842,205.1009092388153,205.1314305419922,205.16195184516906,205.19247314834595,205.22299445152282,205.2535157546997,205.2840370578766,205.31455836105346,205.34507966423035,205.37560096740722,205.4061222705841,205.436643573761,205.46716487693786,205.49768618011475,205.52820748329162,205.5587287864685,205.5892500896454,205.61977139282226,205.65029269599916,205.68081399917602,205.7113353023529,205.7418566055298,205.77237790870666,205.80289921188353,205.83342051506042,205.8639418182373,205.8944631214142,205.92498442459106,205.95550572776793,205.98602703094483,206.0165483341217,206.0470696372986,206.07759094047546,206.10811224365233,206.13863354682923,206.1691548500061,206.199676153183,206.23019745635986,206.26071875953673,206.29124006271363,206.3217613658905,206.3522826690674,206.38280397224426,206.41332527542113,206.44384657859803,206.4743678817749,206.50488918495176,206.53541048812866,206.56593179130553,206.59645309448243,206.6269743976593,206.65749570083617,206.68801700401306,206.71853830718993,206.74905961036683,206.7795809135437,206.81010221672057,206.84062351989746,206.87114482307433,206.90166612625123,206.9321874294281,206.96270873260497,206.99323003578186,207.02375133895873,207.05427264213563,207.0847939453125,207.11531524848937,207.14583655166626,207.17635785484313,207.20687915802003,207.2374004611969,207.26792176437377,207.29844306755066,207.32896437072753,207.3594856739044,207.3900069770813,207.42052828025817,207.45104958343506,207.48157088661193,207.5120921897888,207.5426134929657,207.57313479614257,207.60365609931947,207.63417740249633,207.6646987056732,207.6952200088501,207.72574131202697,207.75626261520387,207.78678391838073,207.8173052215576,207.8478265247345,207.87834782791137,207.90886913108827,207.93939043426514,207.969911737442,208.0004330406189,208.03095434379577,208.06147564697264,208.09199695014954,208.1225182533264,208.1530395565033,208.18356085968017,208.21408216285704,208.24460346603394,208.2751247692108,208.3056460723877,208.33616737556457,208.36668867874144,208.39720998191834,208.4277312850952,208.4582525882721,208.48877389144897,208.51929519462584,208.54981649780274,208.5803378009796,208.6108591041565,208.64138040733337,208.67190171051024,208.70242301368714,208.732944316864,208.76346562004088,208.79398692321777,208.82450822639464,208.85502952957154,208.8855508327484,208.91607213592528,208.94659343910217,208.97711474227904,209.00763604545594,209.0381573486328,209.06867865180968,209.09919995498657,209.12972125816344,209.16024256134034,209.1907638645172,209.22128516769408,209.25180647087097,209.28232777404784,209.31284907722474,209.3433703804016,209.37389168357848,209.40441298675537,209.43493428993224,209.46545559310914,209.495976896286,209.52649819946288,209.55701950263978,209.58754080581664,209.6180621089935,209.6485834121704,209.67910471534728,209.70962601852418,209.74014732170104,209.7706686248779,209.8011899280548,209.83171123123168,209.86223253440858,209.89275383758545,209.9232751407623,209.9537964439392,209.98431774711608,210.01483905029298,210.04536035346985,210.07588165664671,210.1064029598236,210.13692426300048,210.16744556617738,210.19796686935425,210.22848817253112,210.259009475708,210.28953077888488,210.32005208206175,210.35057338523865,210.38109468841552,210.4116159915924,210.44213729476928,210.47265859794615,210.50317990112305,210.53370120429992,210.5642225074768,210.59474381065368,210.62526511383055,210.65578641700745,210.68630772018432,210.7168290233612,210.74735032653808,210.77787162971495,210.80839293289185,210.83891423606872,210.86943553924561,210.89995684242248,210.93047814559935,210.96099944877625,210.99152075195312,211.02204205513002,211.05256335830688,211.08308466148375,211.11360596466065,211.14412726783752,211.1746485710144,211.20516987419128,211.23569117736815,211.26621248054505,211.29673378372192,211.3272550868988,211.35777639007568,211.38829769325255,211.41881899642945,211.44934029960632,211.4798616027832,211.51038290596009,211.54090420913695,211.57142551231385,211.60194681549072,211.6324681186676,211.6629894218445,211.69351072502135,211.72403202819825,211.75455333137512,211.785074634552,211.8155959377289,211.84611724090576,211.87663854408262,211.90715984725952,211.9376811504364,211.9682024536133,211.99872375679016,212.02924505996702,212.05976636314392,212.0902876663208,212.1208089694977,212.15133027267456,212.18185157585143,212.21237287902832,212.2428941822052,212.2734154853821,212.30393678855896,212.33445809173583,212.36497939491272,212.3955006980896,212.4260220012665,212.45654330444336,212.48706460762023,212.51758591079712,212.548107213974,212.57862851715086,212.60914982032776,212.63967112350463,212.67019242668152,212.7007137298584,212.73123503303526,212.76175633621216,212.79227763938903,212.82279894256592,212.8533202457428,212.88384154891966,212.91436285209656,212.94488415527343,212.97540545845033,213.0059267616272,213.03644806480406,213.06696936798096,213.09749067115783,213.12801197433473,213.1585332775116,213.18905458068846,213.21957588386536,213.25009718704223,213.28061849021913,213.311139793396,213.34166109657286,213.37218239974976,213.40270370292663,213.4332250061035,213.4637463092804,213.49426761245726,213.52478891563416,213.55531021881103,213.5858315219879,213.6163528251648,213.64687412834166,213.67739543151856,213.70791673469543,213.7384380378723,213.7689593410492,213.79948064422607,213.83000194740296,213.86052325057983,213.8910445537567,213.9215658569336,213.95208716011047,213.98260846328736,214.01312976646423,214.0436510696411,214.074172372818,214.10469367599487,214.13521497917174,214.16573628234863,214.1962575855255,214.2267788887024,214.25730019187927,214.28782149505614,214.31834279823303,214.3488641014099,214.3793854045868,214.40990670776367,214.44042801094054,214.47094931411743,214.5014706172943,214.5319919204712,214.56251322364807,214.59303452682494,214.62355583000183,214.6540771331787,214.6845984363556,214.71511973953247,214.74564104270934,214.77616234588623,214.8066836490631,214.83720495223997,214.86772625541687,214.89824755859374,214.92876886177064,214.9592901649475,214.98981146812437,215.02033277130127,215.05085407447814,215.08137537765504,215.1118966808319,215.14241798400877,215.17293928718567,215.20346059036254,215.23398189353944,215.2645031967163,215.29502449989317,215.32554580307007,215.35606710624694,215.38658840942384,215.4171097126007,215.44763101577757,215.47815231895447,215.50867362213134,215.53919492530824,215.5697162284851,215.60023753166197,215.63075883483887,215.66128013801574,215.6918014411926,215.7223227443695,215.75284404754638,215.78336535072327,215.81388665390014,215.844407957077,215.8749292602539,215.90545056343078,215.93597186660767,215.96649316978454,215.9970144729614,216.0275357761383,216.05805707931518,216.08857838249207,216.11909968566894,216.1496209888458,216.1801422920227,216.21066359519958,216.24118489837647,216.27170620155334,216.3022275047302,216.3327488079071,216.36327011108398,216.39379141426085,216.42431271743774,216.4548340206146,216.4853553237915,216.51587662696838,216.54639793014525,216.57691923332214,216.607440536499,216.6379618396759,216.66848314285278,216.69900444602965,216.72952574920654,216.7600470523834,216.7905683555603,216.82108965873718,216.85161096191405,216.88213226509095,216.9126535682678,216.9431748714447,216.97369617462158,217.00421747779845,217.03473878097535,217.06526008415221,217.0957813873291,217.12630269050598,217.15682399368285,217.18734529685975,217.21786660003661,217.24838790321348,217.27890920639038,217.30943050956725,217.33995181274415,217.37047311592102,217.40099441909788,217.43151572227478,217.46203702545165,217.49255832862855,217.52307963180542,217.55360093498228,217.58412223815918,217.61464354133605,217.64516484451295,217.67568614768982,217.70620745086669,217.73672875404358,217.76725005722045,217.79777136039735,217.82829266357422,217.8588139667511,217.88933526992798,217.91985657310485,217.95037787628172,217.98089917945862,218.0114204826355,218.04194178581238,218.07246308898925,218.10298439216612,218.13350569534302,218.1640269985199,218.19454830169678,218.22506960487365,218.25559090805052,218.28611221122742,218.3166335144043,218.34715481758118,218.37767612075805,218.40819742393492,218.43871872711182,218.4692400302887,218.49976133346559,218.53028263664245,218.56080393981932,218.59132524299622,218.6218465461731,218.65236784934996,218.68288915252685,218.71341045570372,218.74393175888062,218.7744530620575,218.80497436523436,218.83549566841126,218.86601697158812,218.89653827476502,218.9270595779419,218.95758088111876,218.98810218429566,219.01862348747252,219.04914479064942,219.0796660938263,219.11018739700316,219.14070870018006,219.17123000335692,219.20175130653382,219.2322726097107,219.26279391288756,219.29331521606446,219.32383651924133,219.35435782241822,219.3848791255951,219.41540042877196,219.44592173194886,219.47644303512573,219.5069643383026,219.5374856414795,219.56800694465636,219.59852824783326,219.62904955101013,219.659570854187,219.6900921573639,219.72061346054076,219.75113476371766,219.78165606689453,219.8121773700714,219.8426986732483,219.87321997642516,219.90374127960206,219.93426258277893,219.9647838859558,219.9953051891327,220.02582649230956,220.05634779548646,220.08686909866333,220.1173904018402,220.1479117050171,220.17843300819396,220.20895431137083,220.23947561454773,220.2699969177246,220.3005182209015,220.33103952407836,220.36156082725523,220.39208213043213,220.422603433609,220.4531247367859,220.48364603996276,220.51416734313963,220.54468864631653,220.5752099494934,220.6057312526703,220.63625255584716,220.66677385902403,220.69729516220093,220.7278164653778,220.7583377685547,220.78885907173157,220.81938037490843,220.84990167808533,220.8804229812622,220.91094428443907,220.94146558761597,220.97198689079283,221.00250819396973,221.0330294971466,221.06355080032347,221.09407210350037,221.12459340667723,221.15511470985413,221.185636013031,221.21615731620787,221.24667861938477,221.27719992256164,221.30772122573853,221.3382425289154,221.36876383209227,221.39928513526917,221.42980643844604,221.46032774162293,221.4908490447998,221.52137034797667,221.55189165115357,221.58241295433044,221.61293425750733,221.6434555606842,221.67397686386107,221.70449816703797,221.73501947021484,221.7655407733917,221.7960620765686,221.82658337974547,221.85710468292237,221.88762598609924,221.9181472892761,221.948668592453,221.97918989562987,222.00971119880677,222.04023250198364,222.0707538051605,222.1012751083374,222.13179641151427,222.16231771469117,222.19283901786804,222.2233603210449,222.2538816242218,222.28440292739867,222.31492423057557,222.34544553375244,222.3759668369293,222.4064881401062,222.43700944328307,222.46753074645994,222.49805204963684,222.5285733528137,222.5590946559906,222.58961595916747,222.62013726234434,222.65065856552124,222.6811798686981,222.711701171875,222.74222247505188,222.77274377822874,222.80326508140564,222.8337863845825,222.8643076877594,222.89482899093628,222.92535029411314,222.95587159729004,222.9863929004669,223.0169142036438,223.04743550682068,223.07795680999754,223.10847811317444,223.1389994163513,223.1695207195282,223.20004202270508,223.23056332588195,223.26108462905884,223.2916059322357,223.32212723541258,223.35264853858948,223.38316984176635,223.41369114494324,223.4442124481201,223.47473375129698,223.50525505447388,223.53577635765075,223.56629766082764,223.5968189640045,223.62734026718138,223.65786157035828,223.68838287353515,223.71890417671204,223.7494254798889,223.77994678306578,223.81046808624268,223.84098938941955,223.87151069259644,223.9020319957733,223.93255329895018,223.96307460212708,223.99359590530395,224.02411720848082,224.0546385116577,224.08515981483458,224.11568111801148,224.14620242118835,224.17672372436522,224.20724502754211,224.23776633071898,224.26828763389588,224.29880893707275,224.32933024024962,224.35985154342652,224.39037284660338,224.42089414978028,224.45141545295715,224.48193675613402,224.51245805931092,224.54297936248778,224.57350066566468,224.60402196884155,224.63454327201842,224.66506457519532,224.69558587837219,224.72610718154905,224.75662848472595,224.78714978790282,224.81767109107972,224.84819239425659,224.87871369743345,224.90923500061035,224.93975630378722,224.97027760696412,225.000798910141,225.03132021331785,225.06184151649475,225.09236281967162,225.12288412284852,225.1534054260254,225.18392672920226,225.21444803237915,225.24496933555602,225.27549063873292,225.3060119419098,225.33653324508666,225.36705454826355,225.39757585144042,225.42809715461732,225.4586184577942,225.48913976097106,225.51966106414795,225.55018236732482,225.5807036705017,225.6112249736786,225.64174627685546,225.67226758003235,225.70278888320922,225.7333101863861,225.763831489563,225.79435279273986,225.82487409591675,225.85539539909362,225.8859167022705,225.9164380054474,225.94695930862426,225.97748061180116,226.00800191497802,226.0385232181549,226.0690445213318,226.09956582450866,226.13008712768556,226.16060843086242,226.1911297340393,226.2216510372162,226.25217234039306,226.28269364356993,226.31321494674683,226.3437362499237,226.3742575531006,226.40477885627746,226.43530015945433,226.46582146263123,226.4963427658081,226.526864068985,226.55738537216186,226.58790667533873,226.61842797851563,226.6489492816925,226.6794705848694,226.70999188804626,226.74051319122313,226.77103449440003,226.8015557975769,226.8320771007538,226.86259840393066,226.89311970710753,226.92364101028443,226.9541623134613,226.9846836166382,227.01520491981506,227.04572622299193,227.07624752616883,227.1067688293457,227.13729013252257,227.16781143569946,227.19833273887633,227.22885404205323,227.2593753452301,227.28989664840697,227.32041795158386,227.35093925476073,227.38146055793763,227.4119818611145,227.44250316429137,227.47302446746826,227.50354577064513,227.53406707382203,227.5645883769989,227.59510968017577,227.62563098335266,227.65615228652953,227.68667358970643,227.7171948928833,227.74771619606017,227.77823749923706,227.80875880241393,227.8392801055908,227.8698014087677,227.90032271194457,227.93084401512147,227.96136531829833,227.9918866214752,228.0224079246521,228.05292922782897,228.08345053100587,228.11397183418273,228.1444931373596,228.1750144405365,228.20553574371337,228.23605704689027,228.26657835006714,228.297099653244,228.3276209564209,228.35814225959777,228.38866356277467,228.41918486595154,228.4497061691284,228.4802274723053,228.51074877548217,228.54127007865904,228.57179138183594,228.6023126850128,228.6328339881897,228.66335529136657,228.69387659454344,228.72439789772034,228.7549192008972,228.7854405040741,228.81596180725097,228.84648311042784,228.87700441360474,228.9075257167816,228.9380470199585,228.96856832313537,228.99908962631224,229.02961092948914,229.060132232666,229.0906535358429,229.12117483901977,229.15169614219664,229.18221744537354,229.2127387485504,229.2432600517273,229.27378135490417,229.30430265808104,229.33482396125794,229.3653452644348,229.39586656761168,229.42638787078857,229.45690917396544,229.48743047714234,229.5179517803192,229.54847308349608,229.57899438667297,229.60951568984984,229.64003699302674,229.6705582962036,229.70107959938048,229.73160090255737,229.76212220573424,229.79264350891114,229.823164812088,229.85368611526488,229.88420741844178,229.91472872161864,229.94525002479554,229.9757713279724,230.00629263114928,230.03681393432618,230.06733523750304,230.0978565406799,230.1283778438568,230.15889914703368,230.18942045021058,230.21994175338745,230.2504630565643,230.2809843597412,230.31150566291808,230.34202696609498,230.37254826927185,230.40306957244871,230.4335908756256,230.46411217880248,230.49463348197938,230.52515478515625,230.55567608833312,230.58619739151,230.61671869468688,230.64723999786378,230.67776130104065,230.70828260421752,230.7388039073944,230.76932521057128,230.79984651374815,230.83036781692505,230.86088912010192,230.8914104232788,230.92193172645568,230.95245302963255,230.98297433280945,231.01349563598632,231.0440169391632,231.07453824234008,231.10505954551695,231.13558084869385,231.16610215187072,231.19662345504761,231.22714475822448,231.25766606140135,231.28818736457825,231.31870866775512,231.34922997093202,231.37975127410888,231.41027257728575,231.44079388046265,231.47131518363952,231.50183648681642,231.53235778999328,231.56287909317015,231.59340039634705,231.62392169952392,231.6544430027008,231.68496430587768,231.71548560905455,231.74600691223145,231.77652821540832,231.8070495185852,231.83757082176209,231.86809212493895,231.89861342811585,231.92913473129272,231.9596560344696,231.9901773376465,232.02069864082335,232.05121994400025,232.08174124717712,232.112262550354,232.1427838535309,232.17330515670776,232.20382645988465,232.23434776306152,232.2648690662384,232.2953903694153,232.32591167259216,232.35643297576902,232.38695427894592,232.4174755821228,232.4479968852997,232.47851818847656,232.50903949165343,232.53956079483032,232.5700820980072,232.6006034011841,232.63112470436096,232.66164600753783,232.69216731071472,232.7226886138916,232.7532099170685,232.78373122024536,232.81425252342223,232.84477382659912,232.875295129776,232.9058164329529,232.93633773612976,232.96685903930663,232.99738034248352,233.0279016456604,233.0584229488373,233.08894425201416,233.11946555519103,233.14998685836792,233.1805081615448,233.21102946472166,233.24155076789856,233.27207207107543,233.30259337425233,233.3331146774292,233.36363598060606,233.39415728378296,233.42467858695983,233.45519989013673,233.4857211933136,233.51624249649046,233.54676379966736,233.57728510284423,233.60780640602113,233.638327709198,233.66884901237486,233.69937031555176,233.72989161872863,233.76041292190553,233.7909342250824,233.82145552825926,233.85197683143616,233.88249813461303,233.9130194377899,233.9435407409668,233.97406204414366,234.00458334732056,234.03510465049743,234.0656259536743,234.0961472568512,234.12666856002807,234.15718986320496,234.18771116638183,234.2182324695587,234.2487537727356,234.27927507591247,234.30979637908936,234.34031768226623,234.3708389854431,234.40136028862,234.43188159179687,234.46240289497376,234.49292419815063,234.5234455013275,234.5539668045044,234.58448810768127,234.61500941085814,234.64553071403503,234.6760520172119,234.7065733203888,234.73709462356567,234.76761592674254,234.79813722991943,234.8286585330963,234.8591798362732,234.88970113945007,234.92022244262694,234.95074374580383,234.9812650489807,235.0117863521576,235.04230765533447,235.07282895851134,235.10335026168823,235.1338715648651,235.164392868042,235.19491417121887,235.22543547439574,235.25595677757264,235.2864780807495,235.3169993839264,235.34752068710327,235.37804199028014,235.40856329345704,235.4390845966339,235.46960589981077,235.50012720298767,235.53064850616454,235.56116980934144,235.5916911125183,235.62221241569517,235.65273371887207,235.68325502204894,235.71377632522584,235.7442976284027,235.77481893157957,235.80534023475647,235.83586153793334,235.86638284111024,235.8969041442871,235.92742544746397,235.95794675064087,235.98846805381774,236.01898935699464,236.0495106601715,236.08003196334838,236.11055326652527,236.14107456970214,236.171595872879,236.2021171760559,236.23263847923278,236.26315978240967,236.29368108558654,236.3242023887634,236.3547236919403,236.38524499511718,236.41576629829407,236.44628760147094,236.4768089046478,236.5073302078247,236.53785151100158,236.56837281417847,236.59889411735534,236.6294154205322,236.6599367237091,236.69045802688598,236.72097933006287,236.75150063323974,236.7820219364166,236.8125432395935,236.84306454277038,236.87358584594725,236.90410714912414,236.934628452301,236.9651497554779,236.99567105865478,237.02619236183165,237.05671366500854,237.0872349681854,237.1177562713623,237.14827757453918,237.17879887771605,237.20932018089295,237.2398414840698,237.2703627872467,237.30088409042358,237.33140539360045,237.36192669677735,237.39244799995421,237.4229693031311,237.45349060630798,237.48401190948485,237.51453321266175,237.54505451583861,237.5755758190155,237.60609712219238,237.63661842536925,237.66713972854615,237.69766103172302,237.72818233489988,237.75870363807678,237.78922494125365,237.81974624443055,237.85026754760742,237.88078885078428,237.91131015396118,237.94183145713805,237.97235276031495,238.00287406349182,238.03339536666869,238.06391666984558,238.09443797302245,238.12495927619935,238.15548057937622,238.1860018825531,238.21652318572998,238.24704448890685,238.27756579208375,238.30808709526062,238.3386083984375,238.36912970161438,238.39965100479125,238.43017230796812,238.46069361114502,238.4912149143219,238.52173621749878,238.55225752067565,238.58277882385252,238.61330012702942,238.6438214302063,238.67434273338318,238.70486403656005,238.73538533973692,238.76590664291382,238.7964279460907,238.82694924926759,238.85747055244445,238.88799185562132,238.91851315879822,238.9490344619751,238.97955576515199,239.01007706832885,239.04059837150572,239.07111967468262,239.1016409778595,239.1321622810364,239.16268358421326,239.19320488739012,239.22372619056702,239.2542474937439,239.28476879692076,239.31529010009766,239.34581140327452,239.37633270645142,239.4068540096283,239.43737531280516,239.46789661598206,239.49841791915892,239.52893922233582,239.5594605255127,239.58998182868956,239.62050313186646,239.65102443504333,239.68154573822022,239.7120670413971,239.74258834457396,239.77310964775086,239.80363095092773,239.83415225410462,239.8646735572815,239.89519486045836,239.92571616363526,239.95623746681213,239.986758769989,240.0172800731659,240.04780137634276,240.07832267951966,240.10884398269653,240.1393652858734,240.1698865890503,240.20040789222716,240.23092919540406,240.26145049858093,240.2919718017578,240.3224931049347,240.35301440811156,240.38353571128846,240.41405701446533,240.4445783176422,240.4750996208191,240.50562092399596,240.53614222717286,240.56666353034973,240.5971848335266,240.6277061367035,240.65822743988036,240.68874874305723,240.71927004623413,240.749791349411,240.7803126525879,240.81083395576476,240.84135525894163,240.87187656211853,240.9023978652954,240.9329191684723,240.96344047164916,240.99396177482603,241.02448307800293,241.0550043811798,241.0855256843567,241.11604698753357,241.14656829071043,241.17708959388733,241.2076108970642,241.2381322002411,241.26865350341797,241.29917480659483,241.32969610977173,241.3602174129486,241.3907387161255,241.42126001930237,241.45178132247923,241.48230262565613,241.512823928833,241.54334523200987,241.57386653518677,241.60438783836364,241.63490914154053,241.6654304447174,241.69595174789427,241.72647305107117,241.75699435424804,241.78751565742493,241.8180369606018,241.84855826377867,241.87907956695557,241.90960087013244,241.94012217330933,241.9706434764862,242.00116477966307,242.03168608283997,242.06220738601684,242.09272868919373,242.1232499923706,242.15377129554747,242.18429259872437,242.21481390190124,242.2453352050781,242.275856508255,242.30637781143187,242.33689911460877,242.36742041778564,242.3979417209625,242.4284630241394,242.45898432731627,242.48950563049317,242.52002693367004,242.5505482368469,242.5810695400238,242.61159084320067,242.64211214637757,242.67263344955444,242.7031547527313,242.7336760559082,242.76419735908507,242.79471866226197,242.82523996543884,242.8557612686157,242.8862825717926,242.91680387496947,242.94732517814634,242.97784648132324,243.0083677845001,243.038889087677,243.06941039085388,243.09993169403074,243.13045299720764,243.1609743003845,243.1914956035614,243.22201690673828,243.25253820991514,243.28305951309204,243.3135808162689,243.3441021194458,243.37462342262268,243.40514472579954,243.43566602897644,243.4661873321533,243.4967086353302,243.52722993850708,243.55775124168395,243.58827254486084,243.6187938480377,243.6493151512146,243.67983645439148,243.71035775756835,243.74087906074524,243.7714003639221,243.80192166709898,243.83244297027588,243.86296427345275,243.89348557662964,243.9240068798065,243.95452818298338,243.98504948616028,244.01557078933715,244.04609209251404,244.0766133956909,244.10713469886778,244.13765600204468,244.16817730522155,244.19869860839844,244.2292199115753,244.25974121475218,244.29026251792908,244.32078382110595,244.35130512428285,244.3818264274597,244.41234773063658,244.44286903381348,244.47339033699035,244.50391164016722,244.53443294334411,244.56495424652098,244.59547554969788,244.62599685287475,244.65651815605162,244.68703945922852,244.71756076240538,244.74808206558228,244.77860336875915,244.80912467193602,244.83964597511292,244.87016727828978,244.90068858146668,244.93120988464355,244.96173118782042,244.99225249099732,245.02277379417419,245.05329509735108,245.08381640052795,245.11433770370482,245.14485900688172,245.17538031005859,245.20590161323548,245.23642291641235,245.26694421958922,245.29746552276612,245.327986825943,245.35850812911985,245.38902943229675,245.41955073547362,245.45007203865052,245.4805933418274,245.51111464500426,245.54163594818115,245.57215725135802,245.60267855453492,245.6331998577118,245.66372116088866,245.69424246406555,245.72476376724242,245.75528507041932,245.7858063735962,245.81632767677306,245.84684897994995,245.87737028312682,245.90789158630372,245.9384128894806,245.96893419265746,245.99945549583435,246.02997679901122,246.0604981021881,246.091019405365,246.12154070854186,246.15206201171875,246.18258331489562,246.2131046180725,246.2436259212494,246.27414722442626,246.30466852760316,246.33518983078002,246.3657111339569,246.3962324371338,246.42675374031066,246.45727504348756,246.48779634666442,246.5183176498413,246.5488389530182,246.57936025619506,246.60988155937196,246.64040286254883,246.6709241657257,246.7014454689026,246.73196677207946,246.76248807525633,246.79300937843323,246.8235306816101,246.854051984787,246.88457328796386,246.91509459114073,246.94561589431763,246.9761371974945,247.0066585006714,247.03717980384826,247.06770110702513,247.09822241020203,247.1287437133789,247.1592650165558,247.18978631973266,247.22030762290953,247.25082892608643,247.2813502292633,247.3118715324402,247.34239283561706,247.37291413879393,247.40343544197083,247.4339567451477,247.4644780483246,247.49499935150146,247.52552065467833,247.55604195785523,247.5865632610321,247.61708456420897,247.64760586738586,247.67812717056273,247.70864847373963,247.7391697769165,247.76969108009337,247.80021238327026,247.83073368644713,247.86125498962403,247.8917762928009,247.92229759597777,247.95281889915466,247.98334020233153,248.01386150550843,248.0443828086853,248.07490411186217,248.10542541503906,248.13594671821593,248.16646802139283,248.1969893245697,248.22751062774657,248.25803193092347,248.28855323410033,248.3190745372772,248.3495958404541,248.38011714363097,248.41063844680787,248.44115974998473,248.4716810531616,248.5022023563385,248.53272365951537,248.56324496269227,248.59376626586914,248.624287569046,248.6548088722229,248.68533017539977,248.71585147857667,248.74637278175354,248.7768940849304,248.8074153881073,248.83793669128417,248.86845799446107,248.89897929763794,248.9295006008148,248.9600219039917,248.99054320716857,249.02106451034547,249.05158581352234,249.0821071166992,249.1126284198761,249.14314972305297,249.17367102622984,249.20419232940674,249.2347136325836,249.2652349357605,249.29575623893737,249.32627754211424,249.35679884529114,249.387320148468,249.4178414516449,249.44836275482177,249.47888405799864,249.50940536117554,249.5399266643524,249.5704479675293,249.60096927070617,249.63149057388304,249.66201187705994,249.6925331802368,249.7230544834137,249.75357578659057,249.78409708976744,249.81461839294434,249.8451396961212,249.87566099929808,249.90618230247497,249.93670360565184,249.96722490882874,249.9977462120056,250.02826751518248,250.05878881835937,250.08931012153624,250.11983142471314,250.15035272789,250.18087403106688,250.21139533424378,250.24191663742064,250.27243794059754,250.3029592437744,250.33348054695128,250.36400185012818,250.39452315330504,250.42504445648194,250.4555657596588,250.48608706283568,250.51660836601258,250.54712966918945,250.5776509723663,250.6081722755432,250.63869357872008,250.66921488189698,250.69973618507385,250.73025748825071,250.7607787914276,250.79130009460448,250.82182139778138,250.85234270095825,250.88286400413512,250.913385307312,250.94390661048888,250.97442791366578,251.00494921684265,251.03547052001952,251.0659918231964,251.09651312637328,251.12703442955018,251.15755573272705,251.18807703590392,251.2185983390808,251.24911964225768,251.27964094543458,251.31016224861145,251.34068355178832,251.3712048549652,251.40172615814208,251.43224746131895,251.46276876449585,251.49329006767272,251.52381137084961,251.55433267402648,251.58485397720335,251.61537528038025,251.64589658355712,251.67641788673401,251.70693918991088,251.73746049308775,251.76798179626465,251.79850309944152,251.82902440261842,251.85954570579528,251.89006700897215,251.92058831214905,251.95110961532592,251.98163091850282,252.01215222167968,252.04267352485655,252.07319482803345,252.10371613121032,252.1342374343872,252.16475873756409,252.19528004074095,252.22580134391785,252.25632264709472,252.2868439502716,252.3173652534485,252.34788655662535,252.37840785980225,252.40892916297912,252.439450466156,252.4699717693329,252.50049307250976,252.53101437568665,252.56153567886352,252.5920569820404,252.6225782852173,252.65309958839416,252.68362089157105,252.71414219474792,252.7446634979248,252.7751848011017,252.80570610427856,252.83622740745543,252.86674871063232,252.8972700138092,252.9277913169861,252.95831262016296,252.98883392333983,253.01935522651672,253.0498765296936,253.0803978328705,253.11091913604736,253.14144043922423,253.17196174240112,253.202483045578,253.2330043487549,253.26352565193176,253.29404695510863,253.32456825828552,253.3550895614624,253.3856108646393,253.41613216781616,253.44665347099303,253.47717477416992,253.5076960773468,253.5382173805237,253.56873868370056,253.59925998687743,253.62978129005432,253.6603025932312,253.69082389640806,253.72134519958496,253.75186650276183,253.78238780593873,253.8129091091156,253.84343041229246,253.87395171546936,253.90447301864623,253.93499432182313,253.93499432182313]},{"y":[-0.9274874,-0.9240906,-0.9203563,-0.91628575,-0.9118807,-0.907143,-0.90207475,-0.89667773,-0.89095426,-0.88490665,-0.8785374,-0.8718488,-0.86484396,-0.8575252,-0.8498955,-0.84195805,-0.8337158,-0.825172,-0.81632996,-0.80719316,-0.797765,-0.7880493,-0.7780498,-0.7677703,-0.75721455,-0.746387,-0.7352916,-0.72393245,-0.712314,-0.7004409,-0.6883173,-0.675948,-0.66333777,-0.65049124,-0.6374134,-0.62410915,-0.6105834,-0.59684145,-0.58288836,-0.56872964,-0.55437016,-0.53981566,-0.5250716,-0.5101434,-0.4950368,-0.4797573,-0.4643107,-0.44870278,-0.4329395,-0.41702652,-0.4009699,-0.38477564,-0.36844978,-0.35199845,-0.33542764,-0.3187436,-0.30195254,-0.2850607,-0.2680744,-0.2509998,-0.23384334,-0.21661134,-0.1993102,-0.18194647,-0.16452625,-0.1470562,-0.12954274,-0.11199242,-0.09441158,-0.076806635,-0.059184343,-0.041550905,-0.023913085,-0.0062770844,0.011350304,0.028962731,0.046554,0.06411719,0.08164626,0.099134505,0.11657551,0.13396332,0.15129095,0.16855258,0.18574157,0.20285168,0.219877,0.23681092,0.25364754,0.27038047,0.28700373,0.3035115,0.31989744,0.33615595,0.35228065,0.36826596,0.38410637,0.39979565,0.41532832,0.43069896,0.44590163,0.4609313,0.4757821,0.49044895,0.50492656,0.5192095,0.53329295,0.54717153,0.56084055,0.57429504,0.58753,0.60054106,0.61332303,0.62587184,0.6381829,0.6502516,0.6620739,0.6736456,0.6849624,0.69602054,0.70681584,0.71734476,0.72760326,0.73758817,0.7472957,0.75672245,0.76586527,0.7747208,0.7832859,0.791558,0.79953384,0.8072108,0.8145863,0.82165766,0.82842267,0.83487886,0.8410241,0.84685624,0.85237354,0.857574,0.8624559,0.8670176,0.87125784,0.875175,0.878768,0.8820356,0.8849769,0.88759106,0.8898771,0.8918345,0.89346284,0.89476156,0.8957305,0.89636946,0.89667845,0.89665747,0.89630675,0.89562666,0.8946176,0.89328027,0.8916152,0.8896234,0.8873055,0.88466287,0.8816964,0.87840766,0.8747979,0.87086844,0.86662126,0.86205804,0.8571806,0.85199094,0.84649104,0.84068334,0.83457005,0.8281535,0.8214363,0.814421,0.80711055,0.7995079,0.7916157,0.7834373,0.7749759,0.76623446,0.75721663,0.747926,0.7383658,0.72853994,0.71845245,0.7081066,0.69750667,0.6866567,0.6755611,0.66422355,0.6526487,0.6408412,0.6288049,0.61654484,0.60406566,0.59137183,0.57846814,0.56535965,0.55205154,0.53854823,0.52485514,0.5109777,0.49692056,0.48268917,0.46828932,0.45372576,0.4390042,0.42413053,0.40910962,0.3939474,0.37864962,0.36322224,0.3476704,0.33200017,0.31621778,0.30032837,0.28433818,0.26825356,0.25207978,0.23582315,0.21948971,0.20308593,0.18661706,0.17008963,0.15351014,0.1368839,0.1202175,0.10351744,0.0867891,0.07003906,0.053273916,0.036498934,0.019720823,0.0029456615,-0.013819903,-0.030570596,-0.047299773,-0.064000964,-0.0806689,-0.09729689,-0.11387861,-0.1304087,-0.1468808,-0.1632888,-0.17962635,-0.19588831,-0.21206823,-0.22815996,-0.24415833,-0.26005715,-0.2758503,-0.29153273,-0.3070983,-0.3225411,-0.33785626,-0.35303786,-0.36808038,-0.3829779,-0.39772594,-0.4123187,-0.4267506,-0.4410171,-0.4551127,-0.469032,-0.48277062,-0.4963234,-0.50968534,-0.52285135,-0.5358175,-0.5485786,-0.56112987,-0.57346743,-0.58558655,-0.5974827,-0.60915214,-0.6205904,-0.63179326,-0.64275724,-0.65347815,-0.6639521,-0.67417526,-0.68414474,-0.6938563,-0.7033066,-0.71249276,-0.7214113,-0.7300589,-0.73843294,-0.7465303,-0.7543483,-0.7618838,-0.76913476,-0.7760985,-0.7827723,-0.78915447,-0.7952425,-0.8010342,-0.806528,-0.8117218,-0.81661373,-0.82120264,-0.82548666,-0.8294645,-0.8331349,-0.8364967,-0.8395488,-0.84229034,-0.8447204,-0.8468384,-0.84864366,-0.85013574,-0.85131425,-0.85217917,-0.8527299,-0.8529669,-0.8528901,-0.85249966,-0.851796,-0.8507794,-0.84945065,-0.8478103,-0.8458592,-0.84359825,-0.8410284,-0.838151,-0.834967,-0.8314778,-0.8276851,-0.82359034,-0.8191953,-0.81450146,-0.8095111,-0.80422616,-0.7986486,-0.79278076,-0.78662485,-0.7801837,-0.7734594,-0.7664547,-0.7591727,-0.75161576,-0.74378693,-0.73568964,-0.72732663,-0.71870106,-0.7098168,-0.70067686,-0.69128484,-0.6816443,-0.67175907,-0.66163284,-0.6512694,-0.6406729,-0.6298472,-0.61879647,-0.607525,-0.59603703,-0.58433676,-0.5724288,-0.56031764,-0.5480078,-0.535504,-0.52281076,-0.5099332,-0.49687588,-0.48364377,-0.47024196,-0.4566754,-0.44294918,-0.42906845,-0.4150384,-0.40086427,-0.38655132,-0.37210506,-0.3575308,-0.34283388,-0.32801995,-0.31309435,-0.29806274,-0.28293067,-0.26770392,-0.25238785,-0.23698846,-0.22151124,-0.20596203,-0.19034654,-0.1746706,-0.15894005,-0.14316055,-0.12733811,-0.11147848,-0.09558755,-0.079671085,-0.06373507,-0.04778543,-0.031827867,-0.015868396,8.717179e-5,0.016032964,0.03196317,0.04787174,0.06375316,0.07960141,0.095410734,0.11117521,0.12688926,0.14254713,0.15814295,0.17367111,0.18912591,0.20450175,0.21979305,0.23499417,0.25009957,0.26510373,0.28000134,0.2947869,0.309455,0.32400036,0.33841765,0.35270178,0.36684746,0.3808496,0.3947031,0.4084031,0.4219445,0.4353225,0.4485323,0.46156895,0.47442803,0.48710477,0.4995947,0.5118933,0.52399606,0.5358987,0.54759717,0.5590871,0.57036436,0.581425,0.5922651,0.60288084,0.6132684,0.62342405,0.6333443,0.6430255,0.6524645,0.6616577,0.670602,0.6792942,0.6877313,0.6959104,0.7038287,0.7114832,0.7188715,0.72599083,0.73283887,0.7394134,0.7457118,0.75173223,0.7574726,0.76293075,0.7681052,0.7729939,0.7775955,0.7819083,0.7859309,0.7896621,0.7931006,0.79624534,0.7990954,0.8016498,0.80390793,0.805869,0.8075326,0.8088982,0.80996543,0.8107343,0.81120443,0.8113761,0.81124926,0.81082416,0.81010115,0.80908066,0.80776334,0.8061497,0.8042407,0.80203706,0.7995398,0.7967501,0.7936691,0.79029816,0.78663856,0.7826921,0.77846014,0.7739444,0.76914686,0.76406944,0.7587142,0.7530832,0.7471787,0.74100304,0.7345586,0.72784805,0.7208739,0.713639,0.706146,0.6983979,0.69039774,0.68214864,0.6736536,0.6649161,0.6559395,0.6467271,0.63728243,0.6276092,0.6177112,0.607592,0.59725547,0.58670574,0.5759466,0.5649824,0.55381703,0.5424547,0.5309,0.51915693,0.5072304,0.49512452,0.48284376,0.47039318,0.45777702,0.44500047,0.43206793,0.4189843,0.4057548,0.392384,0.37887716,0.36523926,0.35147518,0.33759046,0.3235899,0.30947903,0.29526302,0.28094685,0.26653636,0.25203642,0.23745286,0.2227909,0.20805576,0.19325331,0.1783888,0.16346756,0.14849553,0.1334778,0.11842033,0.10332823,0.08820763,0.07306346,0.05790168,0.042727828,0.027547926,0.012366772,-0.002809614,-0.01797536,-0.03312567,-0.04825452,-0.06335601,-0.07842535,-0.093456686,-0.108444095,-0.12338284,-0.1382671,-0.15309146,-0.16785006,-0.18253833,-0.19715045,-0.21168086,-0.22612491,-0.240477,-0.25473148,-0.26888403,-0.282929,-0.29686135,-0.31067574,-0.32436776,-0.3379321,-0.35136366,-0.36465806,-0.37781033,-0.39081523,-0.40366885,-0.4163661,-0.42890227,-0.44127336,-0.45347458,-0.4655016,-0.47734985,-0.48901558,-0.5004944,-0.5117818,-0.5228745,-0.5337681,-0.54445845,-0.5549424,-0.5652158,-0.5752752,-0.58511657,-0.59473705,-0.6041329,-0.6133007,-0.62223744,-0.6309401,-0.6394051,-0.64763,-0.65561175,-0.66334736,-0.6708345,-0.67807037,-0.6850525,-0.6917782,-0.69824564,-0.7044523,-0.71039605,-0.71607494,-0.7214872,-0.7266306,-0.73150384,-0.73610514,-0.7404328,-0.7444855,-0.74826205,-0.75176114,-0.7549815,-0.7579224,-0.7605828,-0.76296186,-0.7650588,-0.76687324,-0.7684045,-0.76965225,-0.7706163,-0.7712963,-0.7716923,-0.7718042,-0.7716322,-0.7711767,-0.77043766,-0.7694159,-0.7681118,-0.7665261,-0.7646593,-0.76251256,-0.7600868,-0.7573829,-0.75440204,-0.7511458,-0.74761516,-0.74381185,-0.7397373,-0.73539317,-0.7307813,-0.72590345,-0.7207618,-0.715358,-0.7096945,-0.7037736,-0.6975974,-0.6911684,-0.6844893,-0.6775625,-0.67039067,-0.66297686,-0.65532357,-0.64743406,-0.63931113,-0.63095844,-0.6223785,-0.6135749,-0.6045514,-0.59531075,-0.5858568,-0.5761935,-0.56632394,-0.55625206,-0.5459821,-0.53551733,-0.5248621,-0.5140203,-0.50299644,-0.49179387,-0.4804175,-0.4688716,-0.45715997,-0.44528744,-0.43325865,-0.42107764,-0.40874922,-0.39627796,-0.38366893,-0.37092623,-0.35805482,-0.34505993,-0.33194578,-0.3187176,-0.30538058,-0.29193902,-0.27839833,-0.26476392,-0.25104004,-0.2372323,-0.22334573,-0.20938578,-0.19535705,-0.18126503,-0.16711533,-0.15291247,-0.13866201,-0.12436959,-0.1100398,-0.09567836,-0.08129045,-0.066881746,-0.052456915,-0.038021654,-0.023581535,-0.009141177,0.005293727,0.019717485,0.034125596,0.04851234,0.06287208,0.07720035,0.09149143,0.10574019,0.119940996,0.13408938,0.1481798,0.16220681,0.17616597,0.1900518,0.20385894,0.21758303,0.23121873,0.24476106,0.25820482,0.2715457,0.28477862,0.2978984,0.31090096,0.3237813,0.33653432,0.34915614,0.36164185,0.37398666,0.38618675,0.39823732,0.41013414,0.4218725,0.43344894,0.44485885,0.45609805,0.46716264,0.4780487,0.48875234,0.4992697,0.509597,0.5197307,0.5296671,0.5394026,0.54893374,0.55825734,0.5673699,0.57626826,0.58494925,0.5934099,0.60164714,0.6096581,0.61744,0.6249901,0.63230574,0.63938445,0.64622366,0.65282106,0.65917444,0.66528153,0.6711402,0.6767485,0.68210447,0.68720645,0.6920525,0.6966412,0.7009709,0.7050402,0.7088477,0.7123922,0.7156726,0.7186879,0.721437,0.72391903,0.7261335,0.72807956,0.72975665,0.7311644,0.7323024,0.7331704,0.7337683,0.734096,0.7341535,0.73394096,0.73345876,0.73270714,0.7316865,0.7303974,0.72884053,0.72701657,0.72492635,0.72257096,0.71995115,0.71706825,0.71392345,0.710518,0.7068534,0.70293105,0.69875264,0.6943198,0.6896344,0.6846981,0.67951316,0.67408156,0.6684053,0.66248673,0.65632814,0.64993197,0.6433008,0.63643706,0.6293434,0.6220226,0.61447775,0.6067114,0.59872663,0.5905266,0.5821145,0.5734935,0.56466675,0.5556377,0.54640996,0.5369868,0.5273721,0.5175692,0.50758207,0.4974143,0.4870698,0.47655258,0.46586645,0.4550156,0.44400394,0.43283588,0.4215154,0.41004676,0.39843443,0.38668263,0.37479585,0.36277846,0.350635,0.33836997,0.325988,0.31349385,0.3008918,0.28818703,0.275384,0.26248732,0.24950224,0.23643312,0.2232852,0.21006316,0.1967718,0.18341643,0.17000145,0.15653244,0.14301404,0.12945113,0.11584902,0.10221252,0.08854693,0.074857056,0.06114784,0.047424704,0.03369248,0.019956082,0.006220877,-0.0075083375,-0.021226317,-0.034928083,-0.04860878,-0.06226316,-0.07588643,-0.08947331,-0.10301903,-0.116518706,-0.12996721,-0.14335983,-0.15669137,-0.16995722,-0.1831526,-0.19627243,-0.20931225,-0.22226696,-0.23513204,-0.24790294,-0.26057476,-0.27314317,-0.28560328,-0.29795086,-0.31018138,-0.32229027,-0.3342734,-0.3461262,-0.3578444,-0.36942407,-0.38086066,-0.39215034,-0.4032888,-0.41427216,-0.42509663,-0.435758,-0.44625267,-0.45657697,-0.46672684,-0.4766991,-0.4864899,-0.49609575,-0.5055135,-0.5147394,-0.5237706,-0.5326035,-0.5412351,-0.54966265,-0.5578828,-0.5658928,-0.5736898,-0.58127105,-0.588634,-0.5957759,-0.6026945,-0.6093871,-0.6158516,-0.6220857,-0.62808716,-0.63385415,-0.6393844,-0.6446761,-0.64972764,-0.6545371,-0.65910304,-0.66342366,-0.66749775,-0.6713239,-0.6749009,-0.67822754,-0.68130267,-0.6841254,-0.68669486,-0.68901026,-0.6910708,-0.6928761,-0.69442534,-0.6957183,-0.6967547,-0.6975343,-0.6980568,-0.6983223,-0.6983309,-0.6980827,-0.69757795,-0.69681686,-0.6958001,-0.6945281,-0.6930014,-0.69122076,-0.6891871,-0.6869012,-0.6843641,-0.6815769,-0.6785407,-0.6752569,-0.67172676,-0.6679519,-0.6639335,-0.6596734,-0.6551734,-0.6504352,-0.64546067,-0.64025193,-0.6348108,-0.62913954,-0.62324035,-0.61711574,-0.61076784,-0.6041991,-0.5974124,-0.59041,-0.5831948,-0.5757696,-0.56813717,-0.56030023,-0.5522624,-0.5440262,-0.5355949,-0.52697176,-0.5181604,-0.5091636,-0.49998507,-0.4906285,-0.48109695,-0.47139436,-0.46152455,-0.45149082,-0.44129717,-0.43094748,-0.42044583,-0.40979573,-0.3990014,-0.3880673,-0.37699676,-0.36579442,-0.3544647,-0.34301126,-0.33143863,-0.31975147,-0.3079536,-0.29604965,-0.2840441,-0.27194172,-0.25974643,-0.24746306,-0.23509651,-0.22265074,-0.21013066,-0.19754125,-0.18488662,-0.17217171,-0.15940121,-0.14658022,-0.13371286,-0.12080416,-0.107859194,-0.09488213,-0.081878155,-0.068852335,-0.055808783,-0.042752683,-0.029689193,-0.016622365,-0.0035574138,0.009500831,0.022547334,0.035577863,0.04858744,0.061570823,0.074524015,0.08744183,0.100319296,0.11315237,0.12593599,0.13866551,0.1513359,0.16394328,0.17648265,0.18894914,0.20133884,0.21364701,0.22586872,0.23800029,0.2500369,0.26197386,0.2738076,0.28553334,0.29714698,0.30864394,0.32002065,0.33127278,0.3423959,0.35338664,0.36424074,0.37495396,0.385523,0.39594385,0.40621272,0.41632572,0.42627963,0.43607077,0.44569534,0.45515037,0.46443224,0.47353742,0.48246318,0.491206,0.49976265,0.50813055,0.51630646,0.5242875,0.5320707,0.5396536,0.5470335,0.55420756,0.5611736,0.567929,0.57447135,0.5807985,0.5869082,0.5927984,0.5984669,0.60391194,0.60913163,0.61412394,0.61888754,0.6234206,0.62772155,0.63178915,0.6356219,0.6392185,0.64257795,0.645699,0.6485808,0.6512222,0.65362257,0.65578103,0.6576971,0.6593701,0.6607996,0.6619853,0.6629268,0.6636239,0.66407657,0.66428477,0.66424847,0.6639681,0.66344357,0.66267544,0.6616641,0.6604101,0.6589139,0.6571764,0.6551982,0.6529804,0.6505237,0.64782935,0.6448984,0.6417321,0.6383316,0.6346986,0.63083434,0.6267405,0.62241876,0.6178706,0.6130981,0.60810304,0.60288745,0.59745324,0.5918026,0.585938,0.5798612,0.5735751,0.567082,0.56038404,0.55348414,0.54638517,0.5390894,0.5315998,0.52391934,0.516051,0.5079976,0.49976218,0.4913482,0.4827587,0.47399688,0.46506613,0.45596984,0.44671136,0.43729436,0.42772225,0.41799864,0.4081273,0.39811194,0.3879562,0.37766403,0.3672393,0.35668588,0.3460077,0.33520877,0.3242932,0.3132651,0.30212843,0.29088748,0.27954647,0.26810956,0.25658107,0.24496517,0.23326631,0.22148882,0.20963708,0.19771549,0.18572846,0.17368044,0.1615759,0.14941937,0.13721526,0.12496814,0.11268258,0.100363076,0.088014126,0.07564044,0.06324643,0.050836712,0.03841591,0.02598852,0.013559192,0.0011324286,-0.011287123,-0.023694992,-0.03608656,-0.048457265,-0.06080264,-0.07311806,-0.08539909,-0.09764126,-0.109840006,-0.121990845,-0.13408951,-0.1461315,-0.15811238,-0.17002772,-0.18187332,-0.19364488,-0.205338,-0.21694845,-0.22847205,-0.23990458,-0.25124198,-0.26248005,-0.2736147,-0.28464192,-0.29555783,-0.30635834,-0.31703964,-0.3275978,-0.33802903,-0.34832963,-0.35849583,-0.36852401,-0.37841052,-0.3881519,-0.39774457,-0.40718514,-0.41647026,-0.42559642,-0.43456066,-0.44335955,-0.45199007,-0.4604491,-0.4687336,-0.47684067,-0.48476756,-0.4925113,-0.50006914,-0.50743854,-0.5146168,-0.5216015,-0.5283901,-0.53498024,-0.5413696,-0.54755604,-0.55353737,-0.5593115,-0.5648764,-0.5702302,-0.5753709,-0.580297,-0.5850068,-0.58949846,-0.5937707,-0.59782195,-0.60165083,-0.6052562,-0.60863674,-0.6117915,-0.6147193,-0.61741924,-0.6198905,-0.6221323,-0.624144,-0.62592494,-0.62747455,-0.62879264,-0.6298785,-0.6307322,-0.63135344,-0.63174206,-0.63189816,-0.6318218,-0.6315132,-0.6309725,-0.63020015,-0.62919647,-0.62796205,-0.6264975,-0.6248035,-0.6228807,-0.62073,-0.61835235,-0.6157489,-0.6129204,-0.6098684,-0.6065939,-0.6030984,-0.5993833,-0.5954499,-0.5913001,-0.5869353,-0.5823574,-0.5775681,-0.5725693,-0.567363,-0.5619513,-0.5563362,-0.55052006,-0.5445049,-0.53829324,-0.5318873,-0.5252899,-0.51850325,-0.51153004,-0.504373,-0.49703482,-0.48951846,-0.4818266,-0.47396225,-0.46592844,-0.4577282,-0.4493646,-0.44084087,-0.4321602,-0.42332602,-0.4143415,-0.40521002,-0.39593524,-0.3865204,-0.37696928,-0.3672853,-0.35747215,-0.34753364,-0.33747318,-0.327295,-0.31700265,-0.30659983,-0.29609078,-0.28547913,-0.27476913,-0.26396456,-0.25306943,-0.24208805,-0.23102418,-0.21988222,-0.20866624,-0.19738019,-0.18602861,-0.17461543,-0.16314511,-0.15162182,-0.1400496,-0.12843317,-0.11677641,-0.10508397,-0.09336007,-0.0816088,-0.06983486,-0.058042407,-0.04623565,-0.03441927,-0.022597283,-0.010774314,0.0010456145,0.012857705,0.024658173,0.03644231,0.048205912,0.0599443,0.07165378,0.08332971,0.09496763,0.10656382,0.11811373,0.12961286,0.14105761,0.1524435,0.16376609,0.17502184,0.18620637,0.19731559,0.2083452,0.21929172,0.2301509,0.24091858,0.25159135,0.26216513,0.27263573,0.283,0.29325378,0.30339354,0.3134153,0.3233159,0.33309153,0.34273854,0.3522538,0.36163378,0.37087476,0.37997398,0.38892788,0.3977331,0.40638688,0.414886,0.42322728,0.43140763,0.4394246,0.44727507,0.45495608,0.46246526,0.46979982,0.4769569,0.4839345,0.4907298,0.49734053,0.50376415,0.50999874,0.516042,0.52189165,0.5275459,0.53300285,0.5382602,0.54331654,0.5481701,0.5528189,0.5572617,0.5614969,0.565523,0.56933856,0.57294255,0.57633364,0.5795107,0.5824726,0.5852187,0.58774775,0.5900592,0.59215236,0.5940263,0.5956807,0.59711504,0.59832895,0.5993221,0.60009414,0.6006452,0.6009749,0.6010835,0.600971,0.60063744,0.6000833,0.59930885,0.5983144,0.5971006,0.59566796,0.5940171,0.59214884,0.5900639,0.5877633,0.58524805,0.58251905,0.57957745,0.5764245,0.5730615,0.56948996,0.56571096,0.5617264,0.5575376,0.5531464,0.5485545,0.54376364,0.5387756,0.5335927,0.52821666,0.5226496,0.5168937,0.5109514,0.5048247,0.49851605,0.49202812,0.48536304,0.47852358,0.47151244,0.46433198,0.45698527,0.44947487,0.44180405,0.43397516,0.4259915,0.41785628,0.40957215,0.40114242,0.39257056,0.3838594,0.37501234,0.366033,0.3569243,0.34768993,0.33833337,0.32885826,0.31926775,0.30956575,0.29975605,0.28984183,0.27982712,0.26971585,0.25951132,0.2492176,0.2388385,0.22837815,0.21783996,0.20722808,0.19654673,0.18579935,0.17499024,0.1641236,0.15320297,0.1422327,0.13121706,0.12015961,0.10906474,0.09793654,0.086779386,0.07559681,0.06439328,0.053173244,0.041940212,0.030698568,0.01945275,0.0082063675,-0.0030361116,-0.014270633,-0.025492817,-0.036698997,-0.04788485,-0.059046,-0.07017888,-0.08127925,-0.092342585,-0.10336554,-0.11434373,-0.1252729,-0.13614962,-0.14696963,-0.15772898,-0.1684235,-0.17904983,-0.1896038,-0.20008138,-0.21047924,-0.22079335,-0.23101974,-0.24115515,-0.25119573,-0.26113778,-0.2709775,-0.2807118,-0.2903369,-0.29984918,-0.30924556,-0.31852257,-0.3276765,-0.33670458,-0.34560332,-0.35436934,-0.36299992,-0.37149173,-0.37984174,-0.38804674,-0.39610428,-0.40401122,-0.41176462,-0.4193619,-0.4268003,-0.43407723,-0.4411901,-0.4481364,-0.45491365,-0.46151948,-0.46795154,-0.47420758,-0.48028553,-0.48618305,-0.4918982,-0.49742898,-0.5027735,-0.50792986,-0.5128963,-0.5176711,-0.5222526,-0.5266393,-0.53082967,-0.5348222,-0.53861564,-0.54220873,-0.54560024,-0.548789,-0.5517741,-0.5545544,-0.5571291,-0.5594973,-0.5616584,-0.5636116,-0.5653564,-0.56689215,-0.5682185,-0.56933516,-0.57024175,-0.57093805,-0.571424,-0.5716996,-0.5717647,-0.5716195,-0.57126427,-0.5706991,-0.5699245,-0.5689407,-0.56774837,-0.56634796,-0.56474006,-0.5629255,-0.5609051,-0.55867964,-0.5562501,-0.5536175,-0.550783,-0.54774755,-0.5445126,-0.5410794,-0.53744936,-0.5336238,-0.52960443,-0.52539265,-0.5209904,-0.51639915,-0.51162076,-0.5066573,-0.5015104,-0.4961823,-0.490675,-0.4849906,-0.47913134,-0.47309944,-0.46689725,-0.46052718,-0.45399168,-0.44729313,-0.44043422,-0.43341762,-0.4262458,-0.41892165,-0.41144794,-0.4038275,-0.3960632,-0.388158,-0.38011485,-0.37193686,-0.36362708,-0.35518873,-0.34662476,-0.33793864,-0.32913357,-0.32021278,-0.31117976,-0.30203775,-0.2927903,-0.28344077,-0.27399284,-0.2644498,-0.25481534,-0.2450931,-0.23528665,-0.22539972,-0.21543588,-0.20539887,-0.1952925,-0.18512042,-0.17488658,-0.16459452,-0.15424839,-0.14385182,-0.13340856,-0.12292278,-0.11239804,-0.101838514,-0.091247976,-0.08063021,-0.06998947,-0.059329286,-0.04865393,-0.037967235,-0.02727291,-0.016575277,-0.005877912,0.004814923,0.015499502,0.026172012,0.03682819,0.04746434,0.058076695,0.06866111,0.07921387,0.08973102,0.100208715,0.11064328,0.12103069,0.13136736,0.1416493,0.1518729,0.16203448,0.17213021,0.18215655,0.1921097,0.20198613,0.21178237,0.22149464,0.23111966,0.24065368,0.2500934,0.2594355,0.26867637,0.27781296,0.28684163,0.2957594,0.304563,0.31324914,0.3218149,0.33025706,0.3385725,0.34675857,0.35481197,0.36273006,0.37050992,0.3781487,0.3856439,0.39299262,0.40019232,0.40724057,0.41413462,0.42087233,0.42745107,0.43386862,0.44012275,0.44621116,0.45213184,0.45788258,0.4634614,0.46886653,0.47409582,0.4791476,0.48402014,0.4887117,0.4932207,0.49754554,0.50168484,0.50563705,0.5094009,0.5129752,0.5163587,0.5195502,0.52254874,0.5253532,0.52796286,0.53037673,0.5325942,0.5346143,0.5364367,0.53806067,0.5394858,0.5407117,0.541738,0.5425644,0.54319084,0.5436171,0.54384327,0.54386926,0.5436953,0.5433214,0.5427481,0.5419754,0.54100394,0.5398341,0.53846645,0.53690165,0.5351404,0.53318334,0.5310315,0.5286856,0.52614677,0.523416,0.5204944,0.5173832,0.5140836,0.510597,0.50692475,0.5030683,0.49902922,0.49480915,0.49040967,0.48583242,0.4810795,0.47615242,0.47105324,0.4657841,0.4603468,0.45474344,0.44897628,0.44304773,0.4369597,0.43071467,0.42431527,0.4177636,0.41106224,0.40421396,0.39722112,0.39008635,0.38281277,0.37540263,0.367859,0.36018464,0.35238272,0.34445578,0.33640707,0.32823968,0.31995642,0.31156054,0.3030554,0.29444382,0.2857292,0.27691483,0.26800424,0.2590003,0.24990657,0.24072674,0.23146376,0.22212136,0.21270317,0.20321225,0.19365245,0.18402748,0.17434046,0.16459526,0.15479547,0.14494497,0.13504693,0.12510529,0.11512396,0.105106115,0.09505576,0.08497681,0.07487252,0.06474684,0.054603577,0.044446617,0.034279317,0.024105579,0.0139294565,0.0037541091,-0.006416321,-0.016577959,-0.026727587,-0.036861166,-0.04697475,-0.057065174,-0.067128405,-0.07716082,-0.08715853,-0.09711829,-0.10703629,-0.116908625,-0.12673217,-0.13650313,-0.14621769,-0.15587279,-0.16546468,-0.17498986,-0.18444464,-0.19382605,-0.20313047,-0.21235427,-0.22149459,-0.2305479,-0.23951064,-0.24838011,-0.2571528,-0.2658253,-0.27439508,-0.28285867,-0.29121304,-0.29945505,-0.30758208,-0.3155911,-0.32347894,-0.33124322,-0.33888096,-0.3463892,-0.35376567,-0.36100757,-0.36811224,-0.3750771,-0.3818999,-0.38857812,-0.3951092,-0.40149117,-0.40772158,-0.41379815,-0.41971898,-0.4254818,-0.43108448,-0.43652543,-0.4418025,-0.4469139,-0.4518577,-0.45663238,-0.46123624,-0.46566764,-0.46992517,-0.47400725,-0.4779125,-0.48163962,-0.4851874,-0.4885546,-0.49174002,-0.4947427,-0.49756166,-0.50019586,-0.50264454,-0.5049069,-0.5069821,-0.5088697,-0.510569,-0.5120795,-0.5134007,-0.51453245,-0.5154742,-0.5162258,-0.5167871,-0.5171581,-0.51733863,-0.51732874,-0.5171287,-0.51673865,-0.51615876,-0.51538944,-0.514431,-0.5132841,-0.51194894,-0.5104265,-0.50871724,-0.50682193,-0.50474143,-0.5024766,-0.50002825,-0.4973976,-0.4945857,-0.49159357,-0.4884225,-0.48507375,-0.48154867,-0.47784865,-0.47397512,-0.46992978,-0.465714,-0.46132955,-0.4567782,-0.45206153,-0.44718155,-0.44214007,-0.43693918,-0.4315807,-0.42606673,-0.42039964,-0.41458118,-0.40861392,-0.40250012,-0.3962419,-0.3898418,-0.3833024,-0.37662584,-0.36981487,-0.36287212,-0.35580024,-0.34860176,-0.3412794,-0.33383614,-0.3262747,-0.31859788,-0.31080854,-0.30290973,-0.2949043,-0.28679535,-0.27858588,-0.27027893,-0.26187772,-0.2533853,-0.24480487,-0.23613968,-0.22739294,-0.21856791,-0.20966792,-0.20069617,-0.19165616,-0.1825512,-0.17338465,-0.16415992,-0.1548805,-0.14554973,-0.13617119,-0.12674825,-0.11728443,-0.1077833,-0.09824833,-0.08868304,-0.07909097,-0.069475695,-0.05984071,-0.0501896,-0.04052593,-0.030853271,-0.021175146,-0.011495158,-0.001816839,0.00785622,0.017520517,0.027172461,0.03680849,0.046425164,0.05601889,0.06558615,0.0751234,0.084627286,0.09409423,0.10352075,0.112903506,0.12223898,0.13152379,0.1407546,0.14992799,0.1590406,0.16808921,0.17707051,0.18598121,0.19481802,0.20357783,0.21225749,0.22085378,0.22936355,0.23778382,0.24611151,0.25434363,0.2624772,0.27050924,0.27843693,0.2862574,0.29396784,0.30156547,0.30904758,0.3164114,0.32365444,0.33077407,0.3377677,0.34463277,0.35136706,0.35796794,0.3644332,0.3707605,0.37694752,0.38299227,0.3888924,0.394646,0.4002509,0.40570524,0.411007,0.41615444,0.42114574,0.42597905,0.4306528,0.4351653,0.43951508,0.44370055,0.4477203,0.45157298,0.4552572,0.45877182,0.4621156,0.46528742,0.46828613,0.47111082,0.47376055,0.4762345,0.47853175,0.48065168,0.48259354,0.4843568,0.4859408,0.48734516,0.48856947,0.48961338,0.49047655,0.4911589,0.49166018,0.49198037,0.49211943,0.4920774,0.49185458,0.49145094,0.4908668,0.4901026,0.4891585,0.4880352,0.48673308,0.48525286,0.483595,0.48176032,0.47974962,0.4775638,0.47520363,0.4726702,0.46996444,0.4670875,0.46404064,0.46082497,0.45744175,0.45389244,0.45017833,0.44630098,0.4422619,0.4380626,0.4337048,0.42919016,0.4245205,0.41969755,0.41472316,0.40959936,0.404328,0.39891124,0.39335114,0.38764966,0.3818092,0.3758318,0.36972,0.36347586,0.35710192,0.3506005,0.3439741,0.33722538,0.3303567,0.3233707,0.3162701,0.30905753,0.30173567,0.29430735,0.2867753,0.27914244,0.2714116,0.2635856,0.2556675,0.24766016,0.23956673,0.23139012,0.22313333,0.21479964,0.20639189,0.19791353,0.18936756,0.18075702,0.1720854,0.1633557,0.15457135,0.14573553,0.13685139,0.12792246,0.11895183,0.10994305,0.10089931,0.091823876,0.082720384,0.07359187,0.06444198,0.05527398,0.046091095,0.03689705,0.027694881,0.018488273,0.009280503,7.481873e-5,-0.009125158,-0.018316194,-0.027494982,-0.03665793,-0.045801967,-0.054923445,-0.06401935,-0.073085964,-0.08212039,-0.09111911,-0.10007882,-0.10899606,-0.11786799,-0.12669115,-0.1354621,-0.14417812,-0.15283583,-0.1614318,-0.16996336,-0.17842723,-0.18682013,-0.19513941,-0.20338187,-0.21154445,-0.2196241,-0.22761825,-0.23552376,-0.2433377,-0.25105757,-0.25868043,-0.26620328,-0.27362388,-0.28093928,-0.2881469,-0.29524404,-0.30222842,-0.30909735,-0.31584835,-0.3224792,-0.3289874,-0.3353705,-0.34162652,-0.34775308,-0.35374787,-0.3596091,-0.36533454,-0.37092206,-0.37636966,-0.38167566,-0.38683808,-0.39185497,-0.3967248,-0.4014458,-0.4060161,-0.41043454,-0.4146993,-0.41880894,-0.42276192,-0.42655718,-0.43019322,-0.4336688,-0.4369828,-0.44013417,-0.4431216,-0.44594437,-0.44860142,-0.45109183,-0.4534149,-0.4555698,-0.45755586,-0.4593724,-0.46101892,-0.4624949,-0.46379995,-0.46493357,-0.46589562,-0.46668565,-0.46730363,-0.46774945,-0.46802288,-0.46812406,-0.46805304,-0.46780998,-0.467395,-0.46680838,-0.4660505,-0.46512172,-0.4640224,-0.46275312,-0.4613145,-0.45970702,-0.45793152,-0.4559887,-0.45387942,-0.4516045,-0.4491648,-0.44656157,-0.4437956,-0.44086814,-0.4377804,-0.43453354,-0.43112877,-0.42756754,-0.4238514,-0.41998157,-0.4159596,-0.41178724,-0.4074659,-0.4029974,-0.39838344,-0.3936258,-0.38872623,-0.38368684,-0.37850934,-0.37319577,-0.36774823,-0.36216888,-0.35645962,-0.35062277,-0.3446607,-0.33857533,-0.33236924,-0.3260448,-0.31960416,-0.31305,-0.30638465,-0.29961088,-0.29273087,-0.28574747,-0.2786634,-0.27148098,-0.26420313,-0.25683275,-0.24937224,-0.24182455,-0.23419273,-0.22647928,-0.21868724,-0.21081954,-0.20287931,-0.19486907,-0.18679215,-0.17865162,-0.17045015,-0.16219102,-0.1538775,-0.14551222,-0.13709858,-0.12863964,-0.120138764,-0.11159867,-0.1030228,-0.09441443,-0.08577639,-0.07711211,-0.068424955,-0.059717745,-0.050993875,-0.042256787,-0.033509254,-0.024754763,-0.015996516,-0.007237911,0.0015182048,0.01026842,0.019009292,0.02773802,0.03645128,0.045145616,0.05381821,0.062465742,0.07108502,0.07967271,0.088226035,0.09674172,0.1052164,0.11364743,0.122031555,0.13036545,0.13864654,0.14687158,0.15503737,0.1631414,0.17118047,0.17915171,0.187052,0.19487886,0.20262925,0.2103003,0.21788946,0.22539383,0.23281062,0.24013741,0.24737145,0.25451007,0.2615506,0.2684908,0.27532804,0.2820597,0.28868365,0.2951975,0.30159855,0.307885,0.31405437,0.32010433,0.32603303,0.33183825,0.3375179,0.34306976,0.34849226,0.3537833,0.3589409,0.3639634,0.36884895,0.37359586,0.37820256,0.3826673,0.38698867,0.39116505,0.39519504,0.39907724,0.40281034,0.406393,0.40982407,0.41310233,0.41622666,0.41919607,0.42200947,0.424666,0.42716473,0.42950484,0.43168563,0.43370628,0.43556625,0.4372649,0.4388017,0.44017622,0.441388,0.44243678,0.44332224,0.44404405,0.4446022,0.44499654,0.44522694,0.4452935,0.44519624,0.44493535,0.444511,0.44392347,0.443173,0.4422601,0.4411851,0.43994844,0.43855083,0.43699276,0.43527496,0.4333982,0.43136317,0.42917073,0.4268218,0.42431736,0.42165846,0.4188461,0.41588145,0.41276562,0.4095,0.40608573,0.40252423,0.39881682,0.3949651,0.39097047,0.3868345,0.38255882,0.37814504,0.3735949,0.36891016,0.36409268,0.35914415,0.3540666,0.348862,0.34353226,0.33807945,0.3325056,0.32681292,0.3210036,0.3150797,0.30904353,0.30289745,0.29664376,0.29028475,0.28382286,0.27726057,0.27060035,0.26384467,0.25699612,0.25005716,0.24303056,0.23591882,0.22872476,0.22145088,0.21410003,0.20667496,0.19917838,0.19161323,0.18398212,0.17628807,0.16853383,0.16072246,0.15285668,0.14493945,0.13697381,0.12896265,0.12090899,0.11281575,0.10468593,0.09652263,0.08832875,0.08010748,0.071861655,0.06359455,0.055309117,0.04700826,0.038695335,0.030373111,0.022044912,0.013713673,0.005382389,-0.0029456615,-0.011267722,-0.019580394,-0.027880803,-0.036166027,-0.044432774,-0.052678227,-0.060899183,-0.069092706,-0.07725598,-0.085385725,-0.09347911,-0.10153329,-0.10954513,-0.11751185,-0.12543046,-0.13329807,-0.14111197,-0.14886911,-0.15656689,-0.16420227,-0.17177266,-0.17927529,-0.18670738,-0.19406635,-0.20134935,-0.20855388,-0.21567743,-0.22271723,-0.22967093,-0.23653582,-0.24330953,-0.24998972,-0.25657386,-0.26305968,-0.2694447,-0.2757268,-0.2819037,-0.28797317,-0.29393303,-0.29978117,-0.30551544,-0.31113395,-0.31663457,-0.3220154,-0.32727453,-0.3324101,-0.33742034,-0.3423034,-0.34705758,-0.35168135,-0.35617286,-0.36053073,-0.3647533,-0.36883914,-0.37278697,-0.3765952,-0.3802627,-0.3837881,-0.38717017,-0.39040786,-0.39349997,-0.3964455,-0.39924347,-0.40189293,-0.40439296,-0.40674275,-0.40894157,-0.41098863,-0.4128833,-0.41462505,-0.4162132,-0.4176474,-0.41892707,-0.42005193,-0.42102164,-0.42183596,-0.42249465,-0.42299753,-0.42334458,-0.42353576,-0.42357108,-0.4234506,-0.4231745,-0.42274296,-0.42215618,-0.42141455,-0.4205184,-0.41946816,-0.41826433,-0.41690737,-0.415398,-0.41373676,-0.41192442,-0.4099616,-0.40784925,-0.4055882,-0.40317953,-0.40062392,-0.39792258,-0.39507657,-0.39208698,-0.38895503,-0.38568202,-0.38226908,-0.3787177,-0.37502927,-0.3712051,-0.36724675,-0.36315578,-0.35893387,-0.3545824,-0.3501032,-0.34549809,-0.34076864,-0.3359168,-0.33094448,-0.32585335,-0.32064548,-0.3153229,-0.3098878,-0.30434185,-0.2986874,-0.29292667,-0.28706166,-0.2810946,-0.275028,-0.2688638,-0.26260445,-0.25625256,-0.24981011,-0.24327977,-0.23666392,-0.22996525,-0.22318596,-0.21632871,-0.20939626,-0.20239085,-0.19531533,-0.18817244,-0.18096456,-0.17369452,-0.16636506,-0.15897906,-0.15153891,-0.14404759,-0.13650805,-0.1289227,-0.12129461,-0.11362674,-0.10592157,-0.09818217,-0.09041156,-0.08261226,-0.07478736,-0.0669397,-0.059072405,-0.051188007,-0.0432896,-0.035380304,-0.027462617,-0.019539624,-0.011614516,-0.0036897808,0.0042314976,0.012146369,0.020051762,0.027945101,0.03582342,0.04368353,0.051523,0.05933872,0.06712763,0.07488732,0.08261475,0.09030688,0.09796129,0.105574965,0.11314523,0.12066908,0.12814412,0.13556752,0.14293629,0.15024821,0.15750042,0.1646901,0.17181504,0.17887242,0.18585971,0.1927742,0.1996138,0.20637578,0.21305758,0.21965712,0.22617191,0.2325993,0.23893747,0.24518386,0.2513361,0.2573924,0.2633503,0.2692077,0.27496237,0.28061256,0.28615618,0.291591,0.29691538,0.3021274,0.30722493,0.3122065,0.3170703,0.32181448,0.3264373,0.33093736,0.335313,0.33956254,0.34368473,0.34767798,0.35154092,0.35527232,0.35887071,0.36233488,0.3656638,0.36885622,0.37191105,0.37482715,0.37760368,0.38023973,0.38273424,0.38508654,0.38729578,0.38936123,0.39128223,0.39305824,0.3946886,0.39617276,0.39751035,0.39870098,0.39974424,0.4006399,0.40138763,0.4019873,0.40243882,0.40274203,0.40289697,0.40290365,0.40276217,0.40247267,0.40203536,0.40145043,0.40071824,0.39983916,0.39881355,0.3976419,0.3963248,0.3948627,0.3932563,0.39150625,0.38961336,0.38757825,0.38540193,0.38308522,0.380629,0.37803435,0.37530228,0.37243378,0.3694301,0.36629245,0.36302197,0.35961998,0.35608783,0.35242695,0.34863865,0.3447244,0.3406859,0.3365245,0.33224183,0.32783976,0.32331967,0.31868348,0.3139329,0.30906987,0.30409607,0.29901347,0.29382414,0.28852975,0.28313255,0.27763465,0.27203783,0.26634443,0.26055667,0.2546765,0.24870627,0.24264821,0.23650475,0.23027796,0.22397023,0.21758413,0.21112192,0.204586,0.19797885,0.19130294,0.18456073,0.17775479,0.17088763,0.1639618,0.15697992,0.14994459,0.14285839,0.13572398,0.12854402,0.12132117,0.114058115,0.10675753,0.09942216,0.09205472,0.08465789,0.07723446,0.069787174,0.062318757,0.05483198,0.047329605,0.039814398,0.032289147,0.02475661,0.017219573,0.009680793,0.00214307,-0.0053908676,-0.012918204,-0.020436212,-0.027942091,-0.03543316,-0.042906567,-0.050359696,-0.0577897,-0.06519395,-0.07256973,-0.07991427,-0.08722499,-0.094499156,-0.10173413,-0.108927265,-0.11607599,-0.12317766,-0.13022965,-0.13722949,-0.14417458,-0.15106243,-0.15789047,-0.16465633,-0.17135745,-0.17799151,-0.1845561,-0.1910488,-0.19746721,-0.20380917,-0.21007232,-0.21625437,-0.2223531,-0.22836637,-0.234292,-0.24012786,-0.24587186,-0.2515219,-0.257076,-0.2625322,-0.26788858,-0.2731431,-0.27829403,-0.2833394,-0.2882776,-0.2931067,-0.29782513,-0.3024311,-0.3069231,-0.31129947,-0.31555867,-0.31969932,-0.3237198,-0.3276188,-0.33139494,-0.33504695,-0.3385735,-0.3419734,-0.34524542,-0.34838855,-0.35140166,-0.35428366,-0.35703364,-0.35965064,-0.3621338,-0.36448228,-0.36669528,-0.36877212,-0.37071204,-0.3725145,-0.37417886,-0.37570462,-0.3770913,-0.37833837,-0.3794456,-0.38041267,-0.38123924,-0.3819251,-0.38247013,-0.38287416,-0.38313714,-0.3832591,-0.38323998,-0.38308004,-0.38277924,-0.3823379,-0.38175625,-0.38103455,-0.38017318,-0.3791725,-0.37803307,-0.3767553,-0.37533972,-0.37378705,-0.3720978,-0.37027276,-0.36831272,-0.36621845,-0.36399072,-0.3616305,-0.3591388,-0.35651648,-0.35376474,-0.35088456,-0.34787712,-0.34474355,-0.34148514,-0.33810318,-0.3345989,-0.33097374,-0.32722905,-0.32336634,-0.31938714,-0.3152928,-0.3110851,-0.30676553,-0.30233583,-0.29779765,-0.2931527,-0.2884028,-0.28354973,-0.27859536,-0.27354163,-0.26839027,-0.26314345,-0.257803,-0.25237107,-0.24684966,-0.24124078,-0.23554668,-0.22976935,-0.22391114,-0.21797416,-0.21196057,-0.20587277,-0.199713,-0.19348349,-0.18718666,-0.1808248,-0.17440039,-0.16791576,-0.16137329,-0.15477553,-0.1481248,-0.14142375,-0.13467476,-0.1278803,-0.121043056,-0.11416535,-0.10724999,-0.10029939,-0.093316056,-0.086302765,-0.079261914,-0.072196335,-0.06510848,-0.058000952,-0.050876513,-0.043737605,-0.036587074,-0.029427454,-0.022261277,-0.015091404,-0.00792025,-0.000750646,0.0064148456,0.013573721,0.020723134,0.027860641,0.03498347,0.042089075,0.049174964,0.056238353,0.06327675,0.07028769,0.07726839,0.08421652,0.09112938,0.098004624,0.10483952,0.111631826,0.11837892,0.1250784,0.13172762,0.13832451,0.14486648,0.15135103,0.15777615,0.16413932,0.1704381,0.17667048,0.18283412,0.1889266,0.19494604,0.20089012,0.2067567,0.21254352,0.21824878,0.22387029,0.22940592,0.23485394,0.2402123,0.2454789,0.25065213,0.25573006,0.26071084,0.2655926,0.2703738,0.27505264,0.2796274,0.28409666,0.2884587,0.2927119,0.29685497,0.3008863,0.30480447,0.30860826,0.31229627,0.31586713,0.31931955,0.32265255,0.32586488,0.32895532,0.331923,0.3347668,0.3374857,0.3400789,0.34254545,0.3448845,0.34709528,0.3491771,0.35112923,0.35295102,0.3546419,0.35620144,0.35762894,0.35892406,0.36008644,0.36111563,0.36201146,0.36277366,0.3634019,0.36389613,0.36425626,0.3644822,0.36457402,0.36453164,0.3643553,0.36404505,0.3636011,0.36302376,0.3623132,0.36146992,0.3604942,0.35938647,0.3581473,0.35677713,0.35527664,0.35364646,0.35188714,0.34999952,0.34798437,0.34584248,0.34357467,0.34118193,0.33866522,0.33602542,0.3332637,0.33038118,0.32737884,0.32425794,0.3210198,0.31766552,0.3141964,0.31061393,0.30691946,0.3031143,0.29919997,0.29517812,0.29105008,0.28681755,0.2824822,0.27804554,0.27350932,0.2688754,0.26414534,0.25932103,0.25440428,0.24939708,0.24430111,0.23911843,0.2338511,0.22850086,0.22306986,0.21756026,0.21197389,0.20631298,0.20057964,0.19477622,0.18890452,0.18296696,0.17696589,0.17090327,0.16478148,0.158603,0.1523698,0.14608437,0.1397492,0.13336638,0.12693837,0.12046764,0.11395672,0.10740765,0.100823134,0.094205715,0.08755751,0.08088116,0.074179314,0.067454115,0.060708232,0.05394414,0.047164485,0.040371463,0.03356774,0.026755989,0.01993838,0.013117626,0.0062963665,-0.0005232245,-0.0073384494,-0.014146656,-0.020945683,-0.02773285,-0.034505665,-0.04126151,-0.04799822,-0.05471316,-0.06140372,-0.06806776,-0.07470274,-0.081306025,-0.087875545,-0.094408736,-0.10090321,-0.10735649,-0.113766484,-0.12013073,-0.12644675,-0.13271257,-0.13892582,-0.14508398,-0.15118518,-0.1572271,-0.16320734,-0.16912407,-0.17497496,-0.18075798,-0.18647084,-0.19211178,-0.19767861,-0.20316926,-0.20858197,-0.21391465,-0.2191653,-0.22433224,-0.2294136,-0.23440745,-0.23931193,-0.24412552,-0.24884641,-0.2534728,-0.25800326,-0.26243612,-0.26676962,-0.27100247,-0.2751331,-0.27915993,-0.28308174,-0.28689703,-0.29060453,-0.2942028,-0.29769078,-0.30106714,-0.30433068,-0.3074803,-0.31051496,-0.31343356,-0.3162351,-0.31891868,-0.3214833,-0.32392818,-0.32625243,-0.32845527,-0.33053604,-0.3324939,-0.33432838,-0.33603874,-0.33762455,-0.33908522,-0.34042025,-0.34162933,-0.34271204,-0.34366804,-0.34449714,-0.345199,-0.3457735,-0.3462205,-0.3465399,-0.3467317,-0.34679586,-0.3467324,-0.34654152,-0.34622335,-0.34577805,-0.34520587,-0.34450707,-0.34368202,-0.3427311,-0.34165472,-0.34045336,-0.33912754,-0.3376778,-0.3361048,-0.33440918,-0.33259156,-0.33065277,-0.3285936,-0.32641482,-0.32411736,-0.32170212,-0.31917,-0.3165221,-0.3137594,-0.31088305,-0.3078941,-0.30479378,-0.30158323,-0.2982638,-0.29483664,-0.29130322,-0.28766477,-0.28392285,-0.28007874,-0.276134,-0.2720901,-0.26794863,-0.26371118,-0.2593793,-0.25495473,-0.25043905,-0.24583405,-0.24114148,-0.23636308,-0.2315007,-0.22655612,-0.22153127,-0.21642804,-0.21124832,-0.20599405,-0.20066726,-0.19526997,-0.18980414,-0.18427183,-0.17867513,-0.17301616,-0.16729704,-0.16151986,-0.1556868,-0.14980006,-0.14386183,-0.13787435,-0.13183977,-0.1257604,-0.119638525,-0.113476366,-0.10727628,-0.10104048,-0.09477135,-0.08847118,-0.08214237,-0.07578718,-0.069407985,-0.06300717,-0.056587093,-0.050150163,-0.04369867,-0.03723505,-0.030761711,-0.02428095,-0.017795295,-0.011306971,-0.004818514,0.001667738,0.008149505,0.014624223,0.021089718,0.027543426,0.033983067,0.04040636,0.046810776,0.05319421,0.05955404,0.06588812,0.07219419,0.07846976,0.084712744,0.09092067,0.097091384,0.103222735,0.10931226,0.11535791,0.12135751,0.12730876,0.1332096,0.13905783,0.14485133,0.1505881,0.15626594,0.16188289,0.16743681,0.1729258,0.17834789,0.18370107,0.18898347,0.19419305,0.1993281,0.20438676,0.2093671,0.21426746,0.219086,0.22382106,0.22847092,0.23303393,0.23750848,0.24189289,0.24618573,0.2503854,0.25449046,0.25849944,0.2624109,0.26622343,0.26993582,0.2735466,0.27705464,0.28045863,0.28375742,0.28694987,0.2900348,0.29301122,0.29587814,0.29863438,0.30127922,0.30381164,0.30623075,0.3085358,0.310726,0.31280062,0.31475893,0.31660023,0.31832406,0.31992978,0.32141683,0.32278484,0.3240333,0.32516178,0.32617006,0.32705778,0.32782465,0.32847053,0.32899523,0.32939863,0.32968065,0.32984126,0.32988048,0.32979834,0.32959503,0.32927063,0.32882532,0.3282594,0.32757306,0.32676673,0.3258407,0.32479542,0.32363138,0.32234898,0.3209489,0.3194316,0.31779775,0.31604806,0.31418318,0.31220394,0.31011105,0.30790547,0.30558792,0.30315942,0.3006209,0.2979735,0.29521802,0.29235572,0.28938767,0.28631496,0.2831388,0.2798606,0.27648133,0.2730025,0.26942548,0.26575148,0.261982,0.25811845,0.25416243,0.2501153,0.24597864,0.24175414,0.23744324,0.23304763,0.22856912,0.22400919,0.21936963,0.21465227,0.20985895,0.20499128,0.20005117,0.19504066,0.18996134,0.18481527,0.1796045,0.17433074,0.16899607,0.16360265,0.15815225,0.152647,0.14708896,0.14148039,0.13582304,0.13011922,0.124371156,0.11858075,0.11275026,0.10688199,0.10097787,0.09504021,0.08907124,0.083073296,0.0770483,0.07099865,0.06492674,0.058834516,0.05272436,0.04659871,0.040459506,0.03430918,0.028150119,0.021984331,0.0158142,0.009642035,0.003470242,-0.0026992261,-0.008863911,-0.015021458,-0.021169826,-0.027306706,-0.033429623,-0.039536655,-0.04562545,-0.051693708,-0.057739146,-0.06375976,-0.0697533,-0.075717375,-0.081650116,-0.08754922,-0.09341235,-0.09923771,-0.105023034,-0.110766046,-0.11646498,-0.12211758,-0.12772185,-0.13327557,-0.13877705,-0.14422414,-0.14961474,-0.15494713,-0.16021931,-0.16542923,-0.17057526,-0.17565542,-0.18066788,-0.18561068,-0.1904824,-0.19528109,-0.20000488,-0.20465237,-0.20922181,-0.21371132,-0.2181197,-0.22244513,-0.226686,-0.23084109,-0.2349087,-0.23888744,-0.24277584,-0.24657266,-0.2502765,-0.25388595,-0.2573999,-0.2608171,-0.26413617,-0.26735616,-0.27047592,-0.27349427,-0.27641016,-0.27922267,-0.28193077,-0.2845335,-0.28703007,-0.28941956,-0.29170114,-0.29387408,-0.2959376,-0.29789102,-0.29973376,-0.3014651,-0.30308458,-0.30459154,-0.30598557,-0.3072663,-0.3084332,-0.30948597,-0.3104243,-0.31124792,-0.31195655,-0.31255007,-0.31302825,-0.31339103,-0.31363833,-0.31377017,-0.31378657,-0.31368753,-0.3134732,-0.31314373,-0.3126993,-0.31214014,-0.31146654,-0.3106788,-0.30977735,-0.30876246,-0.3076347,-0.3063945,-0.30504233,-0.30357888,-0.30200464,-0.3003203,-0.2985266,-0.29662412,-0.29461378,-0.29249632,-0.29027262,-0.28794348,-0.28550988,-0.28297284,-0.28033322,-0.27759212,-0.2747507,-0.27180988,-0.2687709,-0.265635,-0.26240328,-0.25907707,-0.25565755,-0.2521462,-0.24854422,-0.24485299,-0.24107409,-0.23720872,-0.23325855,-0.22922504,-0.2251096,-0.22091393,-0.21663958,-0.21228826,-0.20786141,-0.20336083,-0.19878833,-0.19414538,-0.18943392,-0.18465576,-0.17981248,-0.17490605,-0.1699384,-0.16491118,-0.15982638,-0.15468593,-0.14949182,-0.1442458,-0.13894993,-0.13360628,-0.12821677,-0.12278341,-0.1173082,-0.111793205,-0.10624045,-0.10065204,-0.09503001,-0.08937645,-0.0836935,-0.077983245,-0.07224776,-0.066489235,-0.060709774,-0.054911517,-0.04909659,-0.043267146,-0.03742537,-0.031573407,-0.025713384,-0.01984749,-0.01397787,-0.008106701,-0.0022361279,0.0036316812,0.009494588,0.015350416,0.021197021,0.027032264,0.032854006,0.03866011,0.044448465,0.050216936,0.055963434,0.06168583,0.06738206,0.073050015,0.078687675,0.084292926,0.0898638,0.09539822,0.10089414,0.106349654,0.11176272,0.11713137,0.12245367,0.12772772,0.13295157,0.13812329,0.14324112,0.14830312,0.15330753,0.15825245,0.16313621,0.16795695,0.17271301,0.17740268,0.18202424,0.18657598,0.1910564,0.19546384,0.19979668,0.2040534,0.2082325,0.21233247,0.2163519,0.22028925,0.2241432,0.22791241,0.2315955,0.23519118,0.23869818,0.24211524,0.2454412,0.24867488,0.25181514,0.25486088,0.257811,0.26066458,0.26342052,0.26607797,0.26863593,0.2710935,0.2734499,0.27570432,0.277856,0.27990416,0.28184816,0.28368726,0.285421,0.28704873,0.28856987,0.289984,0.29129058,0.29248926,0.2935797,0.29456148,0.29543433,0.296198,0.29685232,0.29739708,0.29783213,0.29815742,0.2983728,0.29847836,0.29847413,0.29836014,0.29813647,0.29780334,0.2973609,0.29680935,0.29614902,0.29538018,0.2945032,0.29351842,0.29242632,0.2912274,0.28992206,0.28851092,0.28699458,0.28537357,0.28364867,0.28182048,0.2798898,0.27785733,0.27572393,0.2734905,0.27115783,0.26872683,0.26619852,0.26357386,0.2608539,0.25803968,0.25513226,0.25213283,0.24904248,0.24586244,0.24259397,0.23923823,0.2357966,0.23227033,0.22866082,0.22496945,0.22119755,0.21734665,0.21341814,0.2094136,0.20533448,0.2011823,0.19695872,0.19266525,0.18830359,0.18387537,0.17938215,0.17482579,0.17020784,0.1655302,0.16079453,0.15600257,0.15115623,0.14625718,0.14130743,0.13630871,0.13126287,0.12617189,0.12103763,0.11586193,0.11064683,0.10539418,0.10010603,0.09478432,0.0894309,0.08404796,0.07863732,0.073201135,0.06774132,0.062259905,0.056758992,0.051240467,0.045706563,0.040159225,0.03460043,0.029032372,0.023456968,0.017876424,0.012292691,0.0067077875,0.0011238977,-0.0044570714,-0.0100329295,-0.015601687,-0.0211614,-0.026709832,-0.032245167,-0.037765168,-0.04326792,-0.048751496,-0.05421371,-0.059652723,-0.065066405,-0.07045286,-0.075810194,-0.0811363,-0.086429335,-0.091687426,-0.09690852,-0.102090865,-0.10723243,-0.112331554,-0.11738615,-0.122394584,-0.12735498,-0.13226551,-0.13712427,-0.14192978,-0.14668015,-0.15137355,-0.15600857,-0.16058338,-0.16509621,-0.1695457,-0.17393014,-0.17824781,-0.18249743,-0.18667734,-0.19078603,-0.19482197,-0.1987839,-0.20267029,-0.20647971,-0.21021095,-0.21386264,-0.21743335,-0.22092202,-0.2243273,-0.22764802,-0.23088291,-0.234031,-0.23709111,-0.2400621,-0.24294306,-0.24573293,-0.24843068,-0.25103545,-0.25354633,-0.25596237,-0.2582829,-0.26050702,-0.26263395,-0.264663,-0.26659352,-0.2684248,-0.27015623,-0.27178732,-0.27331743,-0.27474606,-0.27607283,-0.2772973,-0.27841902,-0.27943763,-0.2803529,-0.2811645,-0.2818722,-0.2824758,-0.28297523,-0.28337023,-0.28366077,-0.28384688,-0.28392845,-0.28390557,-0.2837783,-0.28354678,-0.2832111,-0.28277147,-0.2822281,-0.28158134,-0.2808314,-0.27997866,-0.27902347,-0.27796623,-0.27680746,-0.27554753,-0.27418712,-0.27272666,-0.27116683,-0.26950824,-0.26775151,-0.26589742,-0.2639467,-0.26190007,-0.25975838,-0.25752252,-0.2551933,-0.25277162,-0.25025845,-0.24765489,-0.24496177,-0.2421802,-0.23931134,-0.23635614,-0.23331586,-0.23019168,-0.22698471,-0.2236962,-0.22032744,-0.21687979,-0.21335444,-0.20975274,-0.2060762,-0.20232603,-0.19850379,-0.19461092,-0.1906488,-0.18661898,-0.18252307,-0.17836249,-0.17413881,-0.16985369,-0.16550882,-0.16110563,-0.15664588,-0.15213138,-0.14756355,-0.14294426,-0.13827534,-0.13355829,-0.12879501,-0.12398727,-0.119137,-0.11424574,-0.10931547,-0.10434814,-0.09934533,-0.094309025,-0.089241266,-0.08414364,-0.07901819,-0.07386693,-0.06869153,-0.06349401,-0.05827634,-0.053040534,-0.047788277,-0.042521678,-0.03724277,-0.03195326,-0.026655227,-0.021350756,-0.01604154,-0.010729678,-0.005417101,-0.00010590255,0.005202219,0.010505192,0.015800938,0.021087773,0.026363611,0.03162642,0.036874525,0.042105846,0.04731836,0.052510448,0.05768004,0.06282526,0.06794414,0.07303501,0.07809592,0.08312491,0.088120356,0.093080364,0.09800301,0.10288672,0.107729614,0.11252993,0.11728586,0.12199582,0.12665805,0.13127075,0.13583249,0.14034152,0.14479601,0.14919469,0.15353581,0.15781769,0.16203907,0.16619827,0.17029382,0.17432413,0.178288,0.18218383,0.18601026,0.18976602,0.19344969,0.1970599,0.2005955,0.20405522,0.20743777,0.21074188,0.21396658,0.21711059,0.2201728,0.22315222,0.22604781,0.2288584,0.23158318,0.23422115,0.2367713,0.23923288,0.241605,0.24388683,0.2460775,0.24817643,0.25018278,0.25209588,0.2539151,0.25563985,0.25726956,0.25880364,0.26024163,0.26158306,0.26282746,0.26397443,0.26502365,0.2659748,0.2668275,0.26758158,0.26823682,0.26879302,0.26925004,0.26960775,0.2698661,0.27002507,0.27008462,0.27004486,0.2699058,0.26966757,0.26933032,0.26889423,0.2683595,0.26772645,0.2669953,0.26616645,0.26524022,0.26421702,0.2630973,0.26188147,0.2605701,0.2591637,0.2576629,0.25606823,0.25438035,0.25259998,0.25072783,0.24876459,0.24671108,0.24456808,0.24233648,0.24001709,0.2376109,0.23511879,0.23254171,0.22988072,0.2271368,0.22431105,0.22140452,0.21841839,0.21535373,0.21221176,0.20899367,0.20570068,0.20233405,0.1988951,0.1953851,0.19180539,0.18815732,0.18444228,0.18066172,0.176817,0.17290962,0.16894102,0.16491273,0.16082628,0.15668315,0.15248495,0.14823322,0.14392957,0.13957566,0.13517305,0.13072342,0.12622844,0.12168981,0.11710917,0.112488255,0.107828796,0.10313255,0.09840125,0.09363664,0.088840485,0.0840146,0.079160765,0.07428081,0.06937648,0.06444964,0.059502114,0.054535717,0.04955233,0.04455372,0.039541796,0.03451837,0.02948536,0.02444455,0.01939781,0.014347039,0.00929407,0.0042407736,-0.00081100315,-0.005859405,-0.010902554,-0.015938662,-0.020965777,-0.025982186,-0.0309859,-0.03597518,-0.04094825,-0.045903146,-0.05083821,-0.055751517,-0.060641326,-0.06550589,-0.07034334,-0.07515207,-0.079930134,-0.084675886,-0.08938769,-0.09406367,-0.09870225,-0.10330167,-0.10786028,-0.11237653,-0.1168486,-0.12127502,-0.12565419,-0.1299844,-0.13426422,-0.13849202,-0.14266631,-0.14678565,-0.15084843,-0.15485333,-0.15879877,-0.16268343,-0.16650592,-0.17026483,-0.17395885,-0.1775866,-0.18114688,-0.18463838,-0.1880598,-0.19141005,-0.19468781,-0.19789198,-0.20102145,-0.20407507,-0.20705181,-0.20995055,-0.21277034,-0.21551017,-0.21816908,-0.22074614,-0.22324046,-0.22565113,-0.22797741,-0.23021838,-0.23237337,-0.23444156,-0.23642227,-0.23831487,-0.24011865,-0.24183303,-0.24345748,-0.24499133,-0.24643424,-0.2477856,-0.24904503,-0.2502121,-0.25128645,-0.25226778,-0.2531557,-0.25394997,-0.2546504,-0.25525677,-0.25576887,-0.25618663,-0.25650993,-0.2567387,-0.25687292,-0.2569126,-0.25685778,-0.25670853,-0.256465,-0.25612727,-0.25569558,-0.25517014,-0.25455117,-0.25383896,-0.25303388,-0.2521362,-0.25114638,-0.2500648,-0.24889189,-0.24762823,-0.24627423,-0.24483055,-0.2432977,-0.24167627,-0.23996702,-0.23817055,-0.2362876,-0.23431888,-0.2322652,-0.2301274,-0.2279062,-0.22560263,-0.22321741,-0.22075158,-0.21820608,-0.21558195,-0.21288007,-0.21010157,-0.20724759,-0.20431903,-0.20131713,-0.19824311,-0.19509798,-0.19188303,-0.18859957,-0.18524867,-0.18183169,-0.17834991,-0.17480478,-0.17119744,-0.16752934,-0.16380195,-0.16001654,-0.15617457,-0.15227762,-0.14832695,-0.14432412,-0.14027068,-0.13616824,-0.13201813,-0.12782198,-0.12358152,-0.11929808,-0.11497339,-0.11060916,-0.10620681,-0.10176808,-0.09729476,-0.09278828,-0.08825043,-0.08368288,-0.079087466,-0.07446566,-0.069819294,-0.06515019,-0.06045988,-0.055750195,-0.051022988,-0.0462798,-0.041522477,-0.036752794,-0.03197262,-0.027183488,-0.022387274,-0.017585881,-0.01278083,-0.007974014,-0.0031673163,0.0016377345,0.0064392313,0.011235334,0.016024485,0.02080483,0.02557461,0.030331947,0.035075344,0.039802946,0.044512928,0.049203746,0.05387365,0.05852075,0.06314362,0.06774045,0.072309546,0.07684917,0.081357844,0.085833885,0.0902755,0.094681345,0.09904966,0.10337877,0.10766734,0.1119137,0.11611621,0.12027357,0.124384135,0.12844646,0.13245898,0.13642043,0.14032932,0.14418411,0.14798361,0.15172638,0.15541098,0.15903626,0.16260086,0.16610348,0.16954279,0.17291775,0.17622705,0.17946945,0.18264394,0.18574937,0.18878447,0.19174841,0.19464001,0.19745818,0.20020214,0.20287076,0.20546316,0.20797834,0.21041557,0.21277395,0.21505257,0.2172508,0.21936779,0.22140275,0.2233551,0.22522414,0.22700919,0.22870965,0.230325,0.23185466,0.2332981,0.2346549,0.23592457,0.2371067,0.23820093,0.23920688,0.24012424,0.24095276,0.24169217,0.24234226,0.2429028,0.24337366,0.24375477,0.24404602,0.24424733,0.2443587,0.24438015,0.24431168,0.24415344,0.24390551,0.24356805,0.2431412,0.24262524,0.24202034,0.2413268,0.24054496,0.23967515,0.2387177,0.23767304,0.23654167,0.23532397,0.23402047,0.23263168,0.23115827,0.2296007,0.22795965,0.22623582,0.22442979,0.22254232,0.22057423,0.21852617,0.216399,0.21419355,0.21191074,0.2095513,0.20711632,0.20460665,0.20202324,0.19936714,0.19663937,0.19384089,0.19097283,0.18803638,0.18503249,0.1819624,0.17882727,0.17562835,0.17236674,0.16904372,0.16566065,0.16221863,0.1587191,0.15516338,0.15155269,0.14788848,0.14417213,0.1404051,0.13658866,0.13272431,0.12881362,0.12485783,0.120858565,0.11681738,0.11273559,0.10861485,0.10445678,0.10026273,0.096034385,0.091773294,0.08748115,0.08315936,0.07880963,0.07443364,0.070032954,0.065609194,0.061164014,0.056699052,0.052215956,0.04771641,0.04320206,0.038674567,0.03413563,0.029586904,0.025030058,0.020466808,0.015898809,0.011327751,0.006755322,0.0021831766,-0.0023869649,-0.0069534257,-0.011514567,-0.016068675,-0.020614102,-0.025149167,-0.029672228,-0.034181617,-0.03867568,-0.043152787,-0.047611274,-0.05204954,-0.05646596,-0.060858913,-0.06522683,-0.069568075,-0.073881105,-0.07816432,-0.082416184,-0.08663513,-0.09081966,-0.094968215,-0.099079356,-0.10315153,-0.10718327,-0.11117317,-0.11511974,-0.11902155,-0.12287723,-0.12668538,-0.13044462,-0.13415356,-0.13781095,-0.1414154,-0.14496565,-0.14846042,-0.15189847,-0.15527855,-0.15859948,-0.16186008,-0.16505915,-0.16819555,-0.17126821,-0.17427602,-0.1772179,-0.18009281,-0.18289974,-0.1856377,-0.18830575,-0.1909029,-0.19342826,-0.19588095,-0.19826013,-0.20056497,-0.20279461,-0.20494834,-0.20702536,-0.20902501,-0.21094657,-0.21278939,-0.21455283,-0.21623631,-0.21783923,-0.21936107,-0.22080134,-0.22215949,-0.22343515,-0.22462785,-0.22573724,-0.22676292,-0.2277046,-0.22856195,-0.22933476,-0.23002276,-0.23062575,-0.23114356,-0.23157604,-0.23192312,-0.2321847,-0.23236074,-0.23245122,-0.23245616,-0.23237564,-0.23220971,-0.2319585,-0.23162213,-0.23120075,-0.23069467,-0.23010404,-0.22942917,-0.22867033,-0.22782788,-0.22690216,-0.22589354,-0.22480252,-0.22362944,-0.2223749,-0.22103931,-0.21962324,-0.21812731,-0.21655205,-0.21489814,-0.21316622,-0.21135695,-0.20947109,-0.20750931,-0.20547245,-0.20336127,-0.2011766,-0.19891927,-0.1965902,-0.19419022,-0.1917203,-0.1891814,-0.18657449,-0.18390056,-0.18116063,-0.17835577,-0.17548698,-0.17255546,-0.16956228,-0.16650856,-0.16339546,-0.16022417,-0.15699592,-0.15371192,-0.15037334,-0.14698157,-0.14353776,-0.14004332,-0.1364995,-0.13290761,-0.1292691,-0.12558521,-0.12185743,-0.11808713,-0.11427565,-0.11042452,-0.106535085,-0.102608904,-0.09864738,-0.09465195,-0.0906242,-0.08656553,-0.08247756,-0.07836176,-0.07421959,-0.07005272,-0.06586263,-0.061650828,-0.057418965,-0.053168535,-0.048901185,-0.044618458,-0.040321887,-0.03601317,-0.031693775,-0.027365424,-0.02302964,-0.018687993,-0.014342174,-0.009993665,-0.0056442097,-0.0012953281,0.003051445,0.007394381,0.011731997,0.016062602,0.020384654,0.024696626,0.028996833,0.033283807,0.03755588,0.04181152,0.04604926,0.050267413,0.054464567,0.058639072,0.06278947,0.066914305,0.07101195,0.07508105,0.079119995,0.08312738,0.08710179,0.091041714,0.09494574,0.09881255,0.102640584,0.10642859,0.11017512,0.11387892,0.117538504,0.1211527,0.124720156,0.12823957,0.1317096,0.13512915,0.13849694,0.14181162,0.14507225,0.14827752,0.15142623,0.1545174,0.15754989,0.1605225,0.16343434,0.16628432,0.1690714,0.17179453,0.1744529,0.17704546,0.1795713,0.18202962,0.18441951,0.18674006,0.18899058,0.19117022,0.19327822,0.19531384,0.19727643,0.19916524,0.20097965,0.20271908,0.20438291,0.20597051,0.20748144,0.20891514,0.2102711,0.21154897,0.21274826,0.21386856,0.21490951,0.21587083,0.21675219,0.21755326,0.21827386,0.21891376,0.21947272,0.21995069,0.22034746,0.22066298,0.22089714,0.22104992,0.22112133,0.22111136,0.2210201,0.22084764,0.22059405,0.22025947,0.21984413,0.21934819,0.21877189,0.2181155,0.21737927,0.2165636,0.21566874,0.21469514,0.2136432,0.2125133,0.21130596,0.21002166,0.20866089,0.20722423,0.20571223,0.20412552,0.20246471,0.20073044,0.19892345,0.19704437,0.19509399,0.19307311,0.1909824,0.18882273,0.18659501,0.18429996,0.18193854,0.17951167,0.17702031,0.17446531,0.17184772,0.16916859,0.1664288,0.16362953,0.16077185,0.1578567,0.15488528,0.15185872,0.14877824,0.14564487,0.14245982,0.13922441,0.13593972,0.13260704,0.1292277,0.12580281,0.122333765,0.11882193,0.11526846,0.11167477,0.108042195,0.104372196,0.10066597,0.096924976,0.09315073,0.089344434,0.08550761,0.08164176,0.077748165,0.073828354,0.069883786,0.065916024,0.061926335,0.057916317,0.053887546,0.049841322,0.045779236,0.04170289,0.0376136,0.033512972,0.029402621,0.02528387,0.021158326,0.01702753,0.012893088,0.008756325,0.004618868,0.00048234314,-0.0036519468,-0.00778237,-0.011907302,-0.016025439,-0.020135164,-0.024234988,-0.028323293,-0.03239879,-0.036459878,-0.040504996,-0.04453284,-0.048541844,-0.052530464,-0.056497425,-0.06044118,-0.06436021,-0.06825329,-0.07211889,-0.0759556,-0.07976196,-0.083536744,-0.087278515,-0.09098581,-0.094657466,-0.09829208,-0.10188825,-0.10544483,-0.108960465,-0.11243388,-0.11586377,-0.119249016,-0.122588366,-0.1258805,-0.12912442,-0.1323189,-0.13546266,-0.13855477,-0.14159405,-0.1445793,-0.14750968,-0.15038401,-0.15320128,-0.15596043,-0.1586606,-0.16130078,-0.16387998,-0.1663974,-0.16885208,-0.17124313,-0.17356978,-0.17583121,-0.17802659,-0.1801551,-0.18221612,-0.18420887,-0.18613262,-0.18798678,-0.1897707,-0.19148369,-0.19312526,-0.19469482,-0.19619179,-0.1976157,-0.1989661,-0.20024252,-0.20144446,-0.20257165,-0.20362364,-0.2046001,-0.20550072,-0.2063252,-0.20707333,-0.20774485,-0.20833956,-0.20885731,-0.20929794,-0.20966133,-0.20994739,-0.2101561,-0.21028736,-0.21034124,-0.21031772,-0.2102169,-0.21003881,-0.2097836,-0.20945139,-0.2090424,-0.20855674,-0.20799473,-0.20735654,-0.20664251,-0.20585293,-0.20498812,-0.20404844,-0.20303431,-0.20194615,-0.20078439,-0.19954948,-0.19824198,-0.19686237,-0.1954112,-0.19388905,-0.19229653,-0.19063428,-0.18890294,-0.18710318,-0.18523574,-0.1833013,-0.18130066,-0.17923453,-0.17710377,-0.1749092,-0.17265162,-0.17033195,-0.16795106,-0.16550985,-0.16300927,-0.16045026,-0.15783384,-0.15516096,-0.15243267,-0.14964996,-0.14681396,-0.1439257,-0.14098623,-0.13799675,-0.13495834,-0.13187216,-0.12873936,-0.12556112,-0.12233867,-0.1190732,-0.115765914,-0.1124181,-0.10903096,-0.10560581,-0.102143936,-0.09864659,-0.09511511,-0.0915508,-0.087955,-0.08432907,-0.08067432,-0.07699214,-0.07328389,-0.069550976,-0.06579475,-0.06201661,-0.058217976,-0.054400258,-0.050564878,-0.046713226,-0.042846747,-0.038966868,-0.03507503,-0.031172695,-0.027261248,-0.02334217,-0.019416895,-0.015486877,-0.0115535855,-0.0076184236,-0.0036828592,0.000251662,0.0041836575,0.008111738,0.01203445,0.015950333,0.019857958,0.023755882,0.027642712,0.031517003,0.03537732,0.03922231,0.043050487,0.046860553,0.050651006,0.054420527,0.058167778,0.061891302,0.06558984,0.06926197,0.072906375,0.07652181,0.080106825,0.083660275,0.08718072,0.090666965,0.09411779,0.09753184,0.100908,0.10424495,0.10754152,0.110796586,0.11400887,0.11717728,0.1203007,0.12337795,0.12640797,0.12938963,0.1323219,0.13520375,0.13803409,0.14081198,0.14353633,0.14620627,0.14882083,0.15137905,0.15388007,0.15632293,0.15870684,0.16103096,0.1632944,0.16549645,0.16763629,0.16971315,0.17172636,0.1736752,0.17555898,0.17737703,0.17912877,0.18081354,0.18243082,0.18398002,0.18546063,0.1868721,0.18821403,0.18948592,0.19068734,0.19181792,0.19287725,0.19386505,0.19478092,0.1956246,0.19639589,0.19709441,0.19772007,0.19827265,0.19875196,0.19915788,0.19949034,0.19974923,0.19993451,0.20004614,0.20008416,0.20004858,0.19993943,0.19975686,0.19950093,0.19917178,0.1987696,0.19829458,0.19774693,0.1971269,0.19643472,0.19567078,0.19483534,0.19392875,0.19295141,0.19190368,0.19078606,0.18959896,0.18834285,0.18701826,0.18562567,0.18416572,0.18263891,0.18104589,0.17938726,0.17766365,0.1758758,0.17402434,0.17211002,0.17013359,0.16809577,0.1659974,0.16383925,0.1616222,0.159347,0.15701461,0.15462588,0.15218183,0.14968324,0.14713115,0.14452654,0.14187032,0.13916355,0.13640732,0.13360256,0.13075036,0.12785189,0.12490811,0.1219202,0.11888926,0.11581653,0.112703025,0.109549955,0.1063586,0.10313001,0.09986547,0.096566275,0.0932335,0.08986847,0.086472444,0.08304679,0.079592586,0.07611122,0.07260409,0.069072306,0.06551728,0.06194041,0.058342863,0.05472605,0.051091414,0.047440115,0.043773603,0.04009323,0.036400445,0.03269644,0.028982673,0.025260605,0.021531427,0.017796606,0.014057614,0.010315642,0.006572161,0.0028285421,-0.00091373175,-0.004653491,-0.008389249,-0.01211955,-0.015843205,-0.019558772,-0.023264777,-0.026960064,-0.030643176,-0.034312684,-0.037967425,-0.04160597,-0.045227014,-0.04882911,-0.052411135,-0.055971704,-0.05950944,-0.06302321,-0.066511676,-0.069973454,-0.07340747,-0.0768124,-0.080187,-0.08352998,-0.08684027,-0.09011662,-0.09335774,-0.09656265,-0.09973008,-0.10285883,-0.10594791,-0.10899615,-0.11200237,-0.11496567,-0.11788485,-0.12075892,-0.12358674,-0.12636746,-0.12910002,-0.13178338,-0.13441668,-0.13699897,-0.13952923,-0.1420067,-0.14443043,-0.14679956,-0.14911321,-0.15137069,-0.1535711,-0.15571365,-0.15779766,-0.15982243,-0.1617871,-0.16369112,-0.1655338,-0.16731441,-0.1690325,-0.17068735,-0.17227842,-0.17380512,-0.17526701,-0.17666356,-0.17799427,-0.17925875,-0.18045653,-0.18158717,-0.18265037,-0.1836458,-0.18457304,-0.18543184,-0.18622196,-0.18694308,-0.18759502,-0.1881776,-0.1886906,-0.1891339,-0.1895074,-0.18981095,-0.19004454,-0.19020809,-0.19030161,-0.19032508,-0.19027855,-0.19016203,-0.18997571,-0.18971963,-0.18939394,-0.18899879,-0.18853438,-0.1880009,-0.18739864,-0.18672782,-0.18598877,-0.18518175,-0.18430713,-0.18336529,-0.18235657,-0.1812814,-0.18014024,-0.17893353,-0.17766172,-0.17632541,-0.17492503,-0.1734612,-0.17193443,-0.17034546,-0.16869473,-0.16698298,-0.16521093,-0.16337916,-0.16148841,-0.15953949,-0.15753302,-0.15546988,-0.1533508,-0.15117669,-0.14894824,-0.14666641,-0.14433205,-0.141946,-0.13950922,-0.13702267,-0.13448718,-0.1319038,-0.12927353,-0.12659729,-0.123876125,-0.12111106,-0.118303195,-0.1154535,-0.11256306,-0.10963307,-0.10666448,-0.1036585,-0.10061628,-0.097538844,-0.09442744,-0.09128319,-0.08810736,-0.084901005,-0.08166538,-0.07840179,-0.075111255,-0.07179513,-0.0684547,-0.06509104,-0.061705515,-0.05829944,-0.054873917,-0.051430315,-0.0479699,-0.044494033,-0.041003846,-0.037500706,-0.03398598,-0.030460894,-0.02692676,-0.023384886,-0.019836571,-0.016283125,-0.012725864,-0.009166092,-0.0056051165,-0.0020442605,0.0015151799,0.0050718896,0.008624557,0.012171894,0.015712585,0.019245345,0.022768877,0.026281875,0.029783059,0.033271167,0.03674491,0.040203016,0.04364423,0.047067292,0.05047096,0.053853992,0.05721516,0.060553227,0.06386699,0.06715525,0.07041681,0.07365049,0.0768551,0.0800295,0.08317253,0.08628306,0.089359954,0.09240212,0.09540844,0.09837786,0.10130928,0.104201645,0.10705395,0.10986513,0.1126342,0.11536015,0.11804204,0.12067888,0.12326971,0.12581365,0.12830976,0.13075717,0.13315499,0.13550238,0.1377985,0.14004256,0.14223377,0.14437133,0.14645447,0.1484825,0.15045471,0.15237036,0.15422884,0.15602945,0.15777159,0.15945464,0.16107805,0.16264121,0.16414362,0.16558476,0.16696413,0.16828126,0.1695357,0.17072701,0.17185485,0.17291878,0.17391847,0.17485361,0.17572388,0.176529,0.1772687,0.1779428,0.178551,0.17909321,0.17956921,0.1799789,0.18032216,0.18059888,0.18080902,0.18095258,0.1810295,0.18103977,0.18098348,0.18086065,0.18067142,0.18041585,0.18009411,0.17970632,0.17925268,0.17873344,0.17814876,0.17749892,0.17678423,0.17600493,0.1751614,0.17425399,0.17328304,0.17224896,0.17115219,0.16999313,0.16877227,0.16749011,0.16614711,0.16474386,0.16328086,0.16175872,0.16017805,0.1585394,0.15684348,0.15509091,0.15328237,0.1514186,0.14950025,0.14752811,0.14550292,0.14342546,0.14129654,0.13911696,0.13688752,0.13460912,0.1322826,0.12990887,0.12748884,0.12502338,0.12251346,0.11995999,0.11736399,0.11472643,0.11204826,0.10933055,0.10657425,0.103780486,0.10095027,0.09808461,0.09518468,0.09225147,0.08928617,0.086289845,0.083263576,0.08020857,0.07712591,0.074016795,0.070882365,0.067723736,0.064542174,0.061338782,0.05811483,0.05487147,0.051609874,0.048331328,0.04503697,0.041728105,0.03840591,0.03507158,0.03172643,0.028371656,0.025008453,0.021638148,0.018261902,0.014881039,0.011496771,0.008110294,0.0047229473,0.0013358854,-0.0020495541,-0.0054321773,-0.008810777,-0.012184035,-0.015550803,-0.018909749,-0.02225969,-0.025599446,-0.02892771,-0.03224335,-0.035545062,-0.038831685,-0.042102065,-0.045354933,-0.048589177,-0.051803537,-0.054996885,-0.058168106,-0.061315954,-0.06443938,-0.06753715,-0.07060821,-0.07365148,-0.07666575,-0.07965003,-0.082603164,-0.08552412,-0.088411875,-0.09126533,-0.09408347,-0.096865356,-0.09960987,-0.1023161,-0.10498305,-0.1076098,-0.110195346,-0.112738825,-0.1152393,-0.11769587,-0.12010762,-0.12247376,-0.12479344,-0.12706575,-0.12929,-0.13146535,-0.13359097,-0.13566622,-0.13769032,-0.13966249,-0.14158215,-0.14344859,-0.14526112,-0.1470191,-0.14872196,-0.1503691,-0.1519599,-0.1534939,-0.1549705,-0.15638918,-0.15774952,-0.15905102,-0.16029322,-0.1614757,-0.16259812,-0.16366002,-0.16466111,-0.16560104,-0.16647951,-0.16729619,-0.16805087,-0.16874328,-0.16937321,-0.16994049,-0.17044494,-0.17088637,-0.17126471,-0.17157982,-0.17183167,-0.17202015,-0.17214528,-0.17220703,-0.17220539,-0.17214045,-0.17201221,-0.17182083,-0.17156638,-0.17124899,-0.17086878,-0.17042603,-0.16992082,-0.16935346,-0.16872418,-0.16803321,-0.16728088,-0.16646752,-0.1655934,-0.16465895,-0.16366449,-0.16261049,-0.1614973,-0.1603254,-0.15909529,-0.15780738,-0.15646225,-0.15506043,-0.1536024,-0.15208879,-0.15052016,-0.14889717,-0.14722039,-0.1454905,-0.14370818,-0.14187406,-0.1399889,-0.13805348,-0.13606837,-0.13403448,-0.13195258,-0.12982336,-0.12764773,-0.12542646,-0.12316048,-0.12085054,-0.11849756,-0.1161025,-0.113666154,-0.11118949,-0.10867353,-0.10611907,-0.10352712,-0.1008987,-0.09823485,-0.095536426,-0.09280451,-0.09004021,-0.087244414,-0.08441825,-0.081562825,-0.078679085,-0.07576817,-0.07283124,-0.06986925,-0.06688338,-0.06387472,-0.060844496,-0.057793662,-0.054723438,-0.05163504,-0.048529465,-0.045407936,-0.042271692,-0.03912174,-0.035959322,-0.03278561,-0.02960186,-0.026409084,-0.023208547,-0.020001508,-0.016788993,-0.013572261,-0.01035258,-0.007130984,-0.0039087273,-0.0006870739,0.0025329366,0.0057500564,0.008963101,0.012170799,0.015372157,0.018565897,0.021750785,0.024925813,0.028089736,0.031241322,0.034379568,0.037503257,0.040611252,0.043702334,0.046775542,0.04982967,0.05286354,0.055876188,0.058866445,0.061833166,0.06477541,0.06769203,0.070581906,0.07344414,0.07627763,0.07908131,0.08185416,0.08459527,0.0873036,0.089978114,0.09261796,0.09522214,0.09778965,0.1003197,0.10281131,0.10526359,0.10767562,0.110046625,0.112375714,0.114662,0.11690478,0.11910322,0.12125644,0.12336383,0.12542456,0.12743784,0.12940311,0.13131957,0.1331866,0.13500342,0.13676956,0.13848431,0.14014706,0.14175731,0.14331444,0.14481787,0.14626716,0.1476618,0.14900126,0.1502851,0.1515129,0.15268424,0.15379871,0.15485592,0.1558556,0.15679729,0.1576808,0.15850575,0.15927191,0.15997905,0.16062692,0.16121534,0.16174407,0.16221304,0.16262205,0.162971,0.16325983,0.16348843,0.16365679,0.16376486,0.16381264,0.16380017,0.16372745,0.16359457,0.1634016,0.16314869,0.16283591,0.16246346,0.16203147,0.16154018,0.16098979,0.16038053,0.15971266,0.15898648,0.15820226,0.15736036,0.1564611,0.15550484,0.154492,0.15342295,0.15229815,0.15111801,0.14988303,0.14859371,0.1472505,0.14585398,0.14440468,0.14290315,0.14134999,0.1397458,0.13809119,0.13638683,0.13463335,0.13283142,0.13098176,0.12908505,0.12714203,0.12515344,0.12312005,0.12104261,0.118921936,0.11675883,0.1145541,0.11230859,0.11002315,0.10769866,0.10533597,0.10293601,0.100499645,0.098027825,0.09552145,0.09298149,0.09040887,0.0878046,0.08516961,0.08250492,0.079811506,0.07709039,0.0743426,0.07156914,0.06877105,0.06594938,0.06310517,0.060239524,0.057353444,0.054448046,0.05152439,0.048583567,0.0456267,0.042654842,0.039669104,0.036670607,0.03366047,0.030639779,0.02760966,0.024571236,0.021525634,0.01847399,0.015417398,0.012357001,0.009293931,0.0062293084,0.0031642858,9.994954e-5,-0.0029625501,-0.006022094,-0.009077556,-0.012127798,-0.015171735,-0.018208237,-0.02123619,-0.024254465,-0.027262002,-0.03025768,-0.033240393,-0.03620907,-0.039162606,-0.042099953,-0.045020014,-0.04792174,-0.0508041,-0.053665977,-0.056506418,-0.05932431,-0.062118664,-0.06488851,-0.067632765,-0.0703505,-0.07304069,-0.07570237,-0.07833462,-0.08093642,-0.08350691,-0.0860451,-0.08855008,-0.091021016,-0.09345694,-0.09585704,-0.09822039,-0.10054618,-0.102833614,-0.1050818,-0.10728998,-0.10945738,-0.11158318,-0.11366667,-0.115707085,-0.1177037,-0.11965583,-0.12156275,-0.12342382,-0.12523834,-0.12700573,-0.12872532,-0.13039653,-0.13201877,-0.13359146,-0.13511407,-0.13658608,-0.13800696,-0.13937624,-0.1406934,-0.14195803,-0.14316969,-0.14432795,-0.14543246,-0.14648278,-0.14747863,-0.1484196,-0.14930543,-0.15013583,-0.15091053,-0.15162921,-0.15229174,-0.15289783,-0.15344736,-0.15394011,-0.15437594,-0.15475474,-0.15507641,-0.15534087,-0.15554802,-0.15569785,-0.15579033,-0.15582548,-0.15580331,-0.15572384,-0.15558717,-0.15539335,-0.15514253,-0.15483478,-0.15447032,-0.15404926,-0.1535718,-0.15303819,-0.15244861,-0.15180331,-0.15110262,-0.15034676,-0.14953609,-0.14867091,-0.1477516,-0.14677852,-0.14575206,-0.14467263,-0.14354065,-0.14235657,-0.1411209,-0.13983405,-0.13849658,-0.13710901,-0.13567182,-0.13418567,-0.13265106,-0.1310686,-0.12943895,-0.12776265,-0.12604041,-0.12427287,-0.12246071,-0.12060462,-0.11870529,-0.1167635,-0.11477992,-0.11275537,-0.11069055,-0.10858628,-0.106443375,-0.10426269,-0.10204492,-0.099791005,-0.097501814,-0.0951781,-0.09282079,-0.09043087,-0.088009074,-0.0855564,-0.083073825,-0.08056216,-0.0780224,-0.07545548,-0.07286246,-0.07024416,-0.06760162,-0.06493589,-0.062247865,-0.059538573,-0.056809116,-0.054060362,-0.051293403,-0.04850927,-0.045709074,-0.0428937,-0.04006427,-0.03722191,-0.034367524,-0.03150224,-0.028627193,-0.0257433,-0.022851698,-0.019953532,-0.017049722,-0.014141419,-0.011229687,-0.008315675,-0.005400312,-0.0024847426,0.00042989105,0.0033426601,0.006252421,0.009158034,0.01205858,0.014952924,0.017839996,0.020718677,0.023588058,0.026447011,0.029294424,0.032129392,0.034950823,0.037757605,0.04054886,0.04332349,0.04608044,0.048818827,0.051537592,0.05423574,0.056912236,0.059566233,0.06219671,0.06480265,0.0673832,0.06993744,0.07246432,0.07496306,0.07743274,0.0798724,0.082281165,0.08465824,0.08700275,0.089313775,0.0915906,0.09383236,0.096038185,0.09820741,0.10033919,0.10243271,0.10448735,0.1065023,0.10847686,0.11041028,0.11230196,0.114151195,0.11595728,0.11771966,0.119437665,0.121110655,0.12273816,0.12431951,0.12585418,0.12734158,0.12878132,0.13017279,0.13151552,0.13280909,0.13405305,0.13524692,0.13639034,0.13748291,0.13852423,0.13951403,0.14045191,0.14133753,0.14217064,0.14295097,0.14367826,0.14435226,0.14497277,0.14553961,0.14605254,0.14651148,0.14691627,0.14726676,0.14756289,0.14780457,0.14799175,0.14812441,0.14820251,0.14822604,0.14819509,0.14810964,0.14796975,0.14777558,0.14752716,0.14722463,0.14686817,0.14645791,0.14599401,0.14547674,0.1449063,0.14428289,0.14360681,0.14287837,0.14209777,0.14126542,0.14038163,0.13944677,0.13846117,0.13742527,0.1363395,0.1352042,0.13401988,0.13278705,0.13150609,0.13017754,0.12880199,0.12737986,0.12591177,0.124398276,0.12283999,0.121237434,0.11959129,0.117902204,0.11617075,0.11439763,0.11258356,0.110729165,0.10883518,0.10690232,0.104931384,0.102923,0.100878015,0.09879722,0.09668131,0.09453115,0.092347585,0.09013133,0.087883286,0.085604355,0.08329528,0.08095698,0.07859034,0.0761963,0.07377564,0.071329325,0.06885834,0.06636347,0.06384573,0.061306104,0.05874542,0.056164697,0.0535649,0.050947044,0.048311993,0.04566078,0.04299447,0.040313892,0.037620142,0.03491426,0.03219712,0.029469805,0.026733384,0.023988731,0.021236932,0.018479005,0.01571603,0.012948897,0.010178686,0.0074064746,0.0046332306,0.001859975,-0.0009122724,-0.0036824914,-0.0064496677,-0.009212782,-0.011970821,-0.01472278,-0.017467638,-0.020204403,-0.022932068,-0.025649633,-0.028356109,-0.031050507,-0.033731844,-0.03639915,-0.039051425,-0.041687727,-0.04430709,-0.046908572,-0.049491204,-0.052054062,-0.054596223,-0.057116754,-0.059614737,-0.062089276,-0.06453946,-0.06696444,-0.069363296,-0.07173519,-0.07407927,-0.07639466,-0.078680545,-0.080936104,-0.083160535,-0.08535301,-0.08751277,-0.089639015,-0.09173103,-0.09378802,-0.09580925,-0.09779404,-0.099741645,-0.10165138,-0.10352258,-0.10535457,-0.107146695,-0.108898304,-0.11060883,-0.11227763,-0.11390411,-0.11548772,-0.117027886,-0.11852408,-0.11997578,-0.12138248,-0.12274369,-0.12405892,-0.12532772,-0.12654969,-0.12772435,-0.12885132,-0.12993024,-0.13096072,-0.13194242,-0.13287498,-0.13375813,-0.13459153,-0.13537495,-0.13610812,-0.13679075,-0.1374227,-0.1380037,-0.13853362,-0.13901228,-0.13943951,-0.13981521,-0.14013927,-0.14041159,-0.14063212,-0.1408008,-0.1409176,-0.14098251,-0.14099553,-0.1409567,-0.14086604,-0.14072366,-0.1405296,-0.140284,-0.13998696,-0.13963863,-0.13923916,-0.13878872,-0.13828751,-0.13773577,-0.13713373,-0.1364816,-0.13577968,-0.13502829,-0.13422768,-0.13337822,-0.13248022,-0.13153403,-0.13054006,-0.12949869,-0.12841035,-0.12727545,-0.12609445,-0.1248678,-0.12359595,-0.122279465,-0.12091879,-0.1195145,-0.11806711,-0.11657716,-0.115045294,-0.11347202,-0.11185801,-0.11020385,-0.10851015,-0.1067776,-0.10500683,-0.10319855,-0.10135341,-0.099472106,-0.09755539,-0.09560398,-0.09361859,-0.09159998,-0.089548916,-0.08746619,-0.08535257,-0.083208844,-0.08103584,-0.07883434,-0.076605216,-0.074349284,-0.072067365,-0.06976036,-0.06742908,-0.065074466,-0.06269735,-0.060298607,-0.057879172,-0.055439904,-0.05298178,-0.05050566,-0.048012454,-0.04550314,-0.042978596,-0.040439818,-0.037887722,-0.035323218,-0.032747317,-0.030160919,-0.027565036,-0.024960604,-0.022348551,-0.019729905,-0.017105566,-0.014476575,-0.011843863,-0.00920837,-0.0065711318,-0.0039330865,-0.0012951726,0.0013415758,0.003976253,0.0066078305,0.00923537,0.011857944,0.01447452,0.017084215,0.019686,0.02227896,0.024862174,0.02743464,0.029995479,0.032543696,0.035078384,0.03759866,0.040103547,0.042592183,0.045063604,0.047516946,0.049951352,0.052365873,0.0547597,0.057131894,0.05948162,0.061808087,0.06411036,0.0663877,0.0686392,0.07086408,0.073061585,0.07523084,0.07737114,0.079481654,0.081561655,0.08361042,0.08562716,0.08761119,0.08956181,0.09147828,0.09335996,0.09520616,0.09701624,0.09878952,0.10052541,0.10222328,0.10388252,0.10550252,0.10708276,0.10862267,0.110121645,0.111579254,0.11299494,0.11436817,0.11569854,0.11698555,0.11822873,0.1194277,0.12058202,0.12169131,0.122755125,0.12377317,0.12474507,0.12567051,0.12654918,0.12738077,0.128165,0.12890166,0.12959042,0.13023113,0.13082355,0.1313675,0.1318628,0.13230932,0.13270693,0.13305546,0.13335487,0.13360506,0.13380595,0.1339575,0.13405973,0.13411258,0.13411608,0.13407026,0.13397516,0.13383086,0.13363744,0.13339497,0.13310362,0.13276349,0.13237475,0.13193755,0.13145211,0.13091864,0.13033733,0.12970845,0.12903227,0.12830903,0.12753905,0.12672266,0.12586014,0.124951884,0.12399824,0.12299956,0.12195626,0.120868735,0.11973746,0.11856282,0.11734529,0.11608539,0.114783525,0.11344026,0.112056114,0.110631585,0.10916725,0.10766363,0.1061214,0.10454105,0.10292321,0.101268545,0.099577606,0.0978511,0.0960897,0.09429398,0.09246469,0.09060257,0.08870821,0.08678239,0.08482583,0.08283932,0.0808235,0.07877919,0.07670722,0.074608244,0.07248312,0.07033269,0.06815766,0.06595887,0.06373719,0.061493475,0.059228465,0.056943044,0.054638136,0.05231449,0.049973033,0.047614668,0.04524019,0.042850517,0.0404466,0.038029224,0.035599336,0.03315784,0.0307057,0.028243702,0.025772821,0.023294033,0.02080813,0.018316092,0.0158189,0.013317352,0.010812435,0.00830507,0.005796244,0.0032867533,0.00077758636,-0.0017302716,-0.0042360267,-0.0067386944,-0.009237296,-0.011731038,-0.014218941,-0.016700039,-0.01917354,-0.021638487,-0.024093967,-0.026539028,-0.028972898,-0.031394623,-0.033803277,-0.036198083,-0.03857812,-0.04094246,-0.043290354,-0.045620892,-0.04793324,-0.050226487,-0.05249992,-0.05475267,-0.056983847,-0.05919277,-0.061378565,-0.06354041,-0.06567761,-0.06778937,-0.069874845,-0.07193342,-0.07396428,-0.07596669,-0.07793991,-0.07988331,-0.08179615,-0.08367769,-0.08552734,-0.08734443,-0.08912824,-0.09087824,-0.09259374,-0.09427415,-0.09591883,-0.09752726,-0.09909885,-0.100632995,-0.102129236,-0.10358702,-0.10500578,-0.10638508,-0.10772443,-0.10902331,-0.11028134,-0.11149805,-0.11267302,-0.1138058,-0.114896074,-0.11594341,-0.11694747,-0.11790793,-0.11882444,-0.11969668,-0.12052437,-0.12130726,-0.12204505,-0.12273749,-0.123384394,-0.12398553,-0.12454068,-0.12504971,-0.12551245,-0.12592874,-0.12629847,-0.12662154,-0.12689784,-0.12712732,-0.12730989,-0.12744555,-0.12753424,-0.127576,-0.1275708,-0.1275187,-0.12741973,-0.12727396,-0.1270815,-0.12684242,-0.12655683,-0.12622489,-0.12584671,-0.12542252,-0.124952435,-0.12443671,-0.12387553,-0.12326914,-0.12261778,-0.12192174,-0.121181294,-0.120396726,-0.11956836,-0.118696555,-0.11778161,-0.11682393,-0.115823865,-0.114781804,-0.11369819,-0.11257342,-0.11140794,-0.1102022,-0.10895667,-0.10767184,-0.10634819,-0.10498625,-0.10358654,-0.10214958,-0.100675926,-0.09916616,-0.09762086,-0.09604059,-0.09442597,-0.09277762,-0.09109615,-0.08938221,-0.08763644,-0.085859515,-0.0840521,-0.08221488,-0.08034855,-0.07845381,-0.07653137,-0.074581966,-0.072606325,-0.0706052,-0.06857932,-0.066529475,-0.0644564,-0.06236091,-0.06024375,-0.058105733,-0.055947646,-0.05377032,-0.051574536,-0.04936113,-0.047130916,-0.044884738,-0.04262343,-0.040347822,-0.03805877,-0.03575711,-0.03344371,-0.031119436,-0.02878512,-0.02644165,-0.024089884,-0.021730691,-0.019364966,-0.016993549,-0.014617326,-0.01223718,-0.009854002,-0.0074686394,-0.0050819856,-0.00269492,-0.00030831964,0.0020769225,0.0044599604,0.006839904,0.00921588,0.011587016,0.013952432,0.016311286,0.018662704,0.021005824,0.02333979,0.025663733,0.027976835,0.030278238,0.032567106,0.03484258,0.037103873,0.03935014,0.041580565,0.043794338,0.04599065,0.048168715,0.050327737,0.052466925,0.054585535,0.056682758,0.058757883,0.06081011,0.06283872,0.064843014,0.06682221,0.068775654,0.07070259,0.07260235,0.074474275,0.076317646,0.07813186,0.07991621,0.081670076,0.083392866,0.08508392,0.08674268,0.0883685,0.08996083,0.091519125,0.0930428,0.094531335,0.09598422,0.097400896,0.09878091,0.10012374,0.10142894,0.10269605,0.10392462,0.10511423,0.10626444,0.107374884,0.10844517,0.10947492,0.11046379,0.111411415,0.11231752,0.113181755,0.11400384,0.11478352,0.1155205,0.116214536,0.116865434,0.117472954,0.1180369,0.118557096,0.119033396,0.11946562,0.119853646,0.12019736,0.12049668,0.12075148,0.120961756,0.12112739,0.121248394,0.12132475,0.12135642,0.12134346,0.121285886,0.121183746,0.12103711,0.12084603,0.120610654,0.12033107,0.120007396,0.11963979,0.119228415,0.11877345,0.11827509,0.11773353,0.11714901,0.116521776,0.11585206,0.11514017,0.11438637,0.11359094,0.11275426,0.11187661,0.11095836,0.10999987,0.10900151,0.10796368,0.106886774,0.10577123,0.10461747,0.10342593,0.1021971,0.100931436,0.099629425,0.09829158,0.09691838,0.09551041,0.09406816,0.0925922,0.09108312,0.08954142,0.087967776,0.08636273,0.084726885,0.083060905,0.08136537,0.07964098,0.07788832,0.07610812,0.07430097,0.072467595,0.0706087,0.06872503,0.06681717,0.06488592,0.06293203,0.060956135,0.058959033,0.05694152,0.054904245,0.052848026,0.050773676,0.048681874,0.04657344,0.04444917,0.042309903,0.04015633,0.037989303,0.035809677,0.033618167,0.031415626,0.029202936,0.026980799,0.024750095,0.022511652,0.02026635,0.018014915,0.015758226,0.013497174,0.011232485,0.008965045,0.0066957492,0.0044253194,0.0021546478,-0.000115374045,-0.0023840247,-0.004650414,-0.0069137104,-0.009173027,-0.0114276465,-0.01367669,-0.015919276,-0.018154692,-0.020382069,-0.022600535,-0.024809394,-0.027007781,-0.029194893,-0.03136988,-0.033532064,-0.035680592,-0.037814632,-0.039933518,-0.042036433,-0.044122543,-0.046191216,-0.04824163,-0.05027301,-0.05228471,-0.05427596,-0.056246035,-0.058194168,-0.060119763,-0.062022075,-0.06390038,-0.06575406,-0.067582466,-0.069384836,-0.07116064,-0.0729092,-0.07462986,-0.076322,-0.07798507,-0.079618454,-0.08122152,-0.082793795,-0.08433465,-0.08584351,-0.087319925,-0.08876333,-0.09017317,-0.09154903,-0.09289038,-0.09419675,-0.095467664,-0.09670272,-0.097901456,-0.09906343,-0.10018829,-0.10127564,-0.10232504,-0.1033362,-0.10430875,-0.105242334,-0.10613663,-0.10699137,-0.10780625,-0.108580954,-0.109315276,-0.110008985,-0.11066175,-0.111273475,-0.1118439,-0.112372816,-0.11286012,-0.11330561,-0.11370917,-0.11407065,-0.11438996,-0.114667036,-0.114901744,-0.11509407,-0.11524397,-0.11535138,-0.1154163,-0.11543876,-0.11541874,-0.11535629,-0.11525145,-0.1151043,-0.11491492,-0.11468338,-0.11440981,-0.114094354,-0.11373713,-0.11333827,-0.112898,-0.112416476,-0.11189389,-0.1113305,-0.110726506,-0.11008215,-0.10939772,-0.108673476,-0.1079097,-0.107106715,-0.10626485,-0.10538439,-0.10446572,-0.103509195,-0.10251522,-0.10148412,-0.10041633,-0.09931229,-0.09817238,-0.09699707,-0.095786825,-0.094542064,-0.09326329,-0.09195104,-0.09060575,-0.08922796,-0.08781819,-0.086377025,-0.084904954,-0.08340254,-0.081870414,-0.080309086,-0.07871917,-0.07710131,-0.07545605,-0.07378405,-0.07208593,-0.07036238,-0.06861397,-0.0668414,-0.065045364,-0.06322647,-0.061385427,-0.05952299,-0.05763974,-0.055736445,-0.053813867,-0.05187263,-0.049913496,-0.047937203,-0.045944534,-0.04393614,-0.041912813,-0.03987536,-0.03782443,-0.035760853,-0.033685427,-0.03159883,-0.029501889,-0.027395377,-0.025280127,-0.023156822,-0.021026293,-0.01888939,-0.016746785,-0.0145993335,-0.012447878,-0.010293101,-0.008135857,-0.005976989,-0.0038171874,-0.0016573004,0.000501878,0.002659501,0.0048148823,0.0069671404,0.009115523,0.011259243,0.013397513,0.0155295525,0.01765458,0.019771818,0.021880494,0.02397984,0.026069082,0.028147466,0.03021423,0.03226862,0.03430989,0.0363373,0.038350113,0.0403476,0.042329017,0.044293668,0.04624083,0.048169803,0.05007988,0.051970374,0.05384061,0.055689905,0.057517592,0.05932301,0.06110551,0.06286445,0.06459921,0.06630915,0.06799366,0.06965214,0.071284,0.07288864,0.07446551,0.07601403,0.07753365,0.079023816,0.08048404,0.08191377,0.08331249,0.08467974,0.086015,0.087317824,0.08858774,0.08982431,0.09102709,0.09219565,0.09332961,0.09442856,0.0954921,0.09651988,0.09751154,0.09846673,0.09938514,0.10026645,0.10111033,0.10191652,0.10268474,0.10341475,0.10410626,0.104759075,0.10537298,0.10594774,0.10648321,0.106979184,0.10743552,0.107852064,0.1082287,0.108565316,0.10886179,0.10911805,0.10933403,0.109509684,0.10964495,0.10973981,0.10979427,0.10980832,0.10978197,0.10971527,0.109608285,0.10946104,0.10927364,0.10904616,0.10877874,0.10847146,0.108124495,0.10773796,0.10731206,0.106846966,0.10634285,0.10579994,0.10521845,0.104598634,0.103940725,0.103245005,0.102511734,0.10174121,0.10093375,0.10008967,0.09920931,0.098292984,0.09734107,0.09635395,0.095332,0.09427562,0.0931852,0.09206121,0.09090404,0.089714125,0.08849198,0.087238014,0.08595275,0.08463665,0.08329023,0.08191402,0.0805085,0.07907426,0.07761181,0.0761217,0.074604526,0.073060825,0.07149122,0.06989627,0.068276584,0.066632785,0.06496551,0.06327532,0.061562918,0.059828915,0.058073975,0.05629876,0.054503903,0.05269012,0.05085804,0.0490084,0.047141872,0.04525913,0.043360904,0.04144787,0.03952079,0.037580356,0.035627257,0.03366227,0.031686082,0.029699478,0.02770316,0.025697853,0.023684338,0.021663321,0.019635595,0.017601887,0.015562923,0.013519503,0.011472333,0.00942222,0.007369894,0.0053160843,0.0032615978,0.0012071412,-0.0008464805,-0.002898538,-0.004948302,-0.006994971,-0.009037819,-0.011076122,-0.0131090805,-0.015136006,-0.017156104,-0.019168658,-0.02117296,-0.023168229,-0.025153788,-0.027128858,-0.029092746,-0.031044763,-0.03298415,-0.034910247,-0.036822308,-0.038719658,-0.04060164,-0.04246752,-0.044316664,-0.046148364,-0.04796197,-0.04975686,-0.05153233,-0.053287797,-0.05502257,-0.05673605,-0.058427647,-0.060096703,-0.06174266,-0.063364886,-0.06496283,-0.06653592,-0.06808357,-0.06960526,-0.07110039,-0.07256848,-0.074009,-0.075421415,-0.07680523,-0.07815997,-0.079485126,-0.08078025,-0.082044885,-0.08327859,-0.084480904,-0.08565143,-0.08678974,-0.08789546,-0.08896815,-0.09000749,-0.09101311,-0.0919846,-0.092921704,-0.09382407,-0.09469136,-0.09552331,-0.09631964,-0.09708004,-0.097804286,-0.09849214,-0.09914334,-0.09975767,-0.100334965,-0.10087499,-0.101377584,-0.10184261,-0.10226991,-0.102659315,-0.10301075,-0.10332408,-0.10359922,-0.103836104,-0.104034655,-0.10419482,-0.104316585,-0.104399905,-0.10444479,-0.10445123,-0.10441927,-0.104348905,-0.104240224,-0.104093276,-0.103908144,-0.1036849,-0.10342368,-0.103124574,-0.10278773,-0.102413304,-0.102001436,-0.10155231,-0.10106611,-0.10054305,-0.09998333,-0.099387184,-0.09875486,-0.09808659,-0.09738266,-0.096643366,-0.09586897,-0.09505979,-0.09421616,-0.09333838,-0.09242682,-0.09148184,-0.090503775,-0.089493036,-0.08844999,-0.08737508,-0.08626868,-0.08513122,-0.08396318,-0.08276494,-0.08153701,-0.080279864,-0.07899394,-0.07767975,-0.076337785,-0.07496861,-0.073572665,-0.07215053,-0.07070274,-0.06922981,-0.06773233,-0.06621088,-0.06466597,-0.06309823,-0.061508287,-0.059896644,-0.058263972,-0.056610864,-0.054937985,-0.053245887,-0.05153523,-0.04980672,-0.048060898,-0.046298474,-0.044520147,-0.042726483,-0.040918197,-0.03909597,-0.037260525,-0.035412457,-0.033552486,-0.031681363,-0.029799685,-0.027908199,-0.026007641,-0.024098642,-0.02218194,-0.020258302,-0.018328339,-0.016392814,-0.014452441,-0.012507986,-0.010560069,-0.008609457,-0.0066569187,-0.0047030756,-0.0027486957,-0.0007945448,0.0011587536,0.003110434,0.005059779,0.007006026,0.008948557,0.010886612,0.012819432,0.014746407,0.016666783,0.018579813,0.020484889,0.022381267,0.02426821,0.026145127,0.028011285,0.029866003,0.031708557,0.03353837,0.035354737,0.03715695,0.038944446,0.040716525,0.042472508,0.044211842,0.045933858,0.047637932,0.049323402,0.05098975,0.05263633,0.05426251,0.055867784,0.057451528,0.059013143,0.060552143,0.06206793,0.063559934,0.0650277,0.06647065,0.06788827,0.069280036,0.0706455,0.07198416,0.0732955,0.074579105,0.075834505,0.07706123,0.07825889,0.07942705,0.080565274,0.08167317,0.08275035,0.08379647,0.0848111,0.08579395,0.08674466,0.087662846,0.08854827,0.08940059,0.09021948,0.091004744,0.09175604,0.09247315,0.09315578,0.09380377,0.09441685,0.094994836,0.09553755,0.09604479,0.0965164,0.09695223,0.097352155,0.097716026,0.09804373,0.09833519,0.098590314,0.098809026,0.09899126,0.09913699,0.09924617,0.09931878,0.09935483,0.09935432,0.099317275,0.09924373,0.09913374,0.09898735,0.09880465,0.09858573,0.0983307,0.09803966,0.09771274,0.0973501,0.09695187,0.09651824,0.096049376,0.09554548,0.09500675,0.094433434,0.09382571,0.093183875,0.09250815,0.091798835,0.0910562,0.09028051,0.089472115,0.08863131,0.08775841,0.08685379,0.08591777,0.08495073,0.083953045,0.082925096,0.08186727,0.08077999,0.07966367,0.07851874,0.07734563,0.0761448,0.0749167,0.0736618,0.072380565,0.07107351,0.06974111,0.06838388,0.067002326,0.06559698,0.06416837,0.06271704,0.06124353,0.059748396,0.058232203,0.056695517,0.05513893,0.05356301,0.05196835,0.050355565,0.048725236,0.047077995,0.045414444,0.043735206,0.04204091,0.040332206,0.038609695,0.03687404,0.03512588,0.03336589,0.03159469,0.02981295,0.028021332,0.02622051,0.024411151,0.022593908,0.02076947,0.018938504,0.017101694,0.015259724,0.013413255,0.011562984,0.009709588,0.007853752,0.005996174,0.0041375104,0.0022784611,0.0004197089,-0.0014380529,-0.003294163,-0.005147929,-0.006998671,-0.008845711,-0.010688358,-0.012525964,-0.01435784,-0.016183319,-0.018001731,-0.019812405,-0.021614697,-0.023407945,-0.02519149,-0.02696468,-0.028726865,-0.030477418,-0.032215696,-0.03394107,-0.0356529,-0.03735058,-0.039033487,-0.040701017,-0.042352565,-0.04398752,-0.045605313,-0.04720534,-0.048787035,-0.050349835,-0.05189315,-0.053416457,-0.054919176,-0.056400783,-0.057860762,-0.059298553,-0.060713675,-0.062105604,-0.063473836,-0.064817905,-0.0661373,-0.0674316,-0.06870029,-0.06994294,-0.07115913,-0.0723484,-0.07351034,-0.074644536,-0.07575058,-0.07682812,-0.07787673,-0.078896075,-0.079885796,-0.080845505,-0.08177492,-0.08267369,-0.08354151,-0.08437809,-0.08518312,-0.08595635,-0.08669748,-0.087406285,-0.088082515,-0.08872594,-0.08933635,-0.089913525,-0.09045729,-0.09096747,-0.091443874,-0.09188637,-0.092294805,-0.09266905,-0.09300899,-0.093314506,-0.093585536,-0.09382199,-0.094023794,-0.09419089,-0.09432326,-0.09442085,-0.09448368,-0.0945117,-0.094504975,-0.09446349,-0.09438729,-0.09427644,-0.09413097,-0.093950994,-0.09373657,-0.093487814,-0.093204826,-0.09288772,-0.09253667,-0.0921518,-0.091733284,-0.09128129,-0.090796,-0.09027761,-0.08972636,-0.089142434,-0.088526085,-0.08787757,-0.08719712,-0.086485036,-0.08574158,-0.08496703,-0.08416173,-0.08332596,-0.08246006,-0.081564374,-0.08063923,-0.07968501,-0.07870206,-0.07769077,-0.076651536,-0.07558473,-0.0744908,-0.07337014,-0.07222318,-0.07105037,-0.06985212,-0.06862895,-0.06738127,-0.066109575,-0.06481437,-0.06349608,-0.06215528,-0.06079243,-0.05940805,-0.058002677,-0.05657681,-0.055131037,-0.05366584,-0.05218183,-0.050679497,-0.049159445,-0.04762225,-0.046068512,-0.044498745,-0.04291358,-0.041313633,-0.039699428,-0.038071606,-0.036430825,-0.034777604,-0.033112608,-0.031436488,-0.029749788,-0.028053178,-0.026347289,-0.024632793,-0.022910245,-0.02118032,-0.019443702,-0.017700955,-0.01595276,-0.014199811,-0.012442666,-0.010682017,-0.008918514,-0.00715285,-0.0053855916,-0.00361743,-0.0018490609,-8.1047416e-5,0.0016859178,0.0034511401,0.0052140597,0.0069739865,0.008730231,0.010482237,0.012229319,0.013970837,0.015706113,0.017434595,0.019155614,0.020868493,0.022572696,0.02426756,0.02595242,0.027626753,0.029289903,0.03094127,0.032580204,0.034206204,0.03581863,0.03741686,0.039000392,0.04056862,0.042120934,0.043656845,0.04517577,0.046677113,0.04816041,0.0496251,0.051070645,0.05249649,0.05390219,0.055287216,0.056651033,0.057993207,0.059313253,0.060610637,0.061884977,0.06313579,0.0643626,0.065564975,0.06674253,0.06789483,0.06902144,0.07012199,0.071196094,0.072243325,0.073263384,0.074255876,0.075220436,0.076156765,0.077064514,0.07794338,0.07879301,0.07961317,0.08040357,0.08116388,0.081893906,0.08259337,0.08326202,0.08389966,0.08450606,0.08508101,0.0856243,0.0861358,0.086615294,0.08706264,0.08747771,0.08786036,0.088210456,0.08852791,0.08881261,0.089064464,0.089283444,0.08946943,0.089622416,0.08974234,0.08982919,0.089882955,0.08990364,0.08989124,0.089845814,0.08976735,0.08965593,0.08951162,0.089334466,0.089124575,0.08888204,0.08860696,0.088299476,0.0879597,0.08758778,0.08718389,0.08674818,0.08628083,0.08578205,0.085252024,0.08469096,0.08409911,0.083476685,0.08282393,0.08214114,0.08142856,0.08068645,0.07991513,0.07911491,0.07828605,0.07742893,0.07654385,0.07563119,0.074691236,0.073724404,0.07273106,0.07171157,0.07066632,0.06959575,0.06850021,0.06738015,0.06623602,0.06506821,0.06387718,0.062663384,0.06142732,0.06016939,0.058890097,0.057589967,0.056269422,0.05492898,0.053569194,0.0521905,0.050793465,0.049378596,0.047946468,0.04649755,0.04503242,0.043551657,0.042055745,0.040545277,0.039020866,0.037482988,0.03593227,0.034369323,0.032794654,0.031208884,0.029612606,0.02800645,0.026390936,0.024766704,0.023134395,0.021494532,0.01984777,0.01819475,0.01653601,0.014872201,0.0132039385,0.011531878,0.009856558,0.008178634,0.006498769,0.0048174965,0.0031354786,0.0014533773,-0.00022827554,-0.0019088173,-0.0035875896,-0.0052640596,-0.0069375723,-0.008607511,-0.010273225,-0.011934185,-0.013589715,-0.015239236,-0.016882148,-0.018517848,-0.02014574,-0.021765232,-0.023375731,-0.024976648,-0.02656741,-0.028147426,-0.02971613,-0.031272948,-0.032817315,-0.034348674,-0.03586647,-0.037370145,-0.038859166,-0.040332984,-0.041791074,-0.043232903,-0.04465796,-0.046065718,-0.047455683,-0.048827343,-0.05018022,-0.05151381,-0.05282765,-0.05412125,-0.055394165,-0.056645934,-0.05787611,-0.059084255,-0.06026993,-0.06143272,-0.06257221,-0.063687995,-0.06477968,-0.065846875,-0.0668892,-0.067906305,-0.068897806,-0.069863364,-0.07080265,-0.07171533,-0.07260107,-0.07345958,-0.07429056,-0.0750937,-0.07586873,-0.0766154,-0.07733345,-0.0780226,-0.078682646,-0.07931336,-0.079914525,-0.08048593,-0.08102739,-0.08153873,-0.08201976,-0.08247034,-0.08289033,-0.08327957,-0.08363795,-0.08396536,-0.08426169,-0.08452687,-0.084760785,-0.08496339,-0.08513463,-0.08527446,-0.08538286,-0.085459776,-0.08550522,-0.0855192,-0.08550173,-0.08545282,-0.085372515,-0.085260876,-0.08511794,-0.0849438,-0.08473852,-0.08450222,-0.08423498,-0.08393693,-0.083608195,-0.08324892,-0.08285924,-0.08243934,-0.08198936,-0.08150953,-0.08100001,-0.08046101,-0.079892755,-0.07929547,-0.078669384,-0.07801475,-0.07733184,-0.07662091,-0.07588222,-0.07511609,-0.074322805,-0.073502675,-0.07265601,-0.07178313,-0.070884414,-0.06996016,-0.06901076,-0.06803654,-0.06703792,-0.06601526,-0.064968914,-0.063899346,-0.06280692,-0.06169207,-0.06055522,-0.059396777,-0.058217224,-0.057016954,-0.055796474,-0.054556213,-0.05329664,-0.052018248,-0.050721493,-0.049406894,-0.048074923,-0.046726074,-0.045360886,-0.04397985,-0.04258346,-0.04117228,-0.039746813,-0.03830761,-0.036855206,-0.035390116,-0.03391292,-0.032424137,-0.030924354,-0.029414121,-0.027893975,-0.02636451,-0.024826273,-0.023279859,-0.02172583,-0.02016474,-0.018597208,-0.017023772,-0.015445059,-0.013861627,-0.012274048,-0.0106829405,-0.009088857,-0.007492423,-0.0058942093,-0.004294784,-0.0026947744,-0.0010947296,0.0005047219,0.0021030102,0.00369957,0.005293776,0.0068850815,0.0084728645,0.010056563,0.0116356155,0.013209407,0.014777381,0.016338984,0.017893605,0.019440718,0.020979717,0.022510063,0.024031214,0.025542585,0.02704366,0.028533852,0.030012643,0.031479515,0.0329339,0.0343753,0.03580316,0.037216987,0.03861628,0.040000506,0.041369192,0.04272181,0.044057902,0.045376986,0.04667856,0.047962204,0.049227398,0.05047372,0.05170074,0.05290798,0.054095052,0.05526148,0.05640688,0.057530858,0.058632977,0.059712872,0.06077014,0.061804418,0.062815346,0.06380255,0.064765684,0.065704435,0.06661843,0.06750738,0.06837096,0.06920889,0.07002083,0.070806555,0.07156576,0.072298184,0.07300356,0.07368166,0.074332274,0.07495512,0.07555005,0.07611683,0.07665526,0.07716518,0.07764642,0.0780988,0.07852219,0.07891646,0.07928146,0.07961706,0.079923205,0.080199756,0.08044665,0.08066381,0.08085118,0.0810087,0.08113634,0.08123405,0.08130184,0.08133969,0.0813476,0.08132559,0.08127369,0.08119194,0.08108038,0.08093906,0.08076807,0.08056748,0.08033739,0.080077894,0.07978912,0.079471156,0.07912418,0.078748316,0.07834372,0.077910565,0.07744902,0.07695928,0.076441534,0.075895995,0.075322874,0.0747224,0.07409483,0.07344039,0.07275932,0.07205195,0.071318485,0.07055925,0.069774546,0.06896464,0.06812987,0.06727058,0.06638704,0.06547964,0.06454871,0.06359464,0.062617734,0.061618395,0.06059704,0.059553992,0.05848969,0.05740454,0.05629893,0.05517329,0.054028038,0.052863654,0.05168051,0.05047908,0.04925985,0.048023213,0.046769686,0.04549975,0.044213817,0.04291242,0.041596062,0.04026518,0.03892031,0.03756194,0.03619062,0.034806795,0.033411015,0.032003835,0.03058571,0.029157206,0.027718887,0.026271217,0.02481476,0.023350071,0.021877732,0.020398205,0.018912077,0.017419942,0.015922273,0.014419665,0.012912704,0.0114018805,0.009887784,0.008371017,0.006852053,0.0053315014,0.003809915,0.0022878945,0.0007659234,-0.0007554013,-0.002275481,-0.0037938342,-0.0053098663,-0.0068229833,-0.008332703,-0.0098384395,-0.011339639,-0.012835715,-0.014326194,-0.015810497,-0.01728804,-0.018758364,-0.02022089,-0.021675054,-0.023120396,-0.02455635,-0.025982363,-0.027397987,-0.028802674,-0.030195912,-0.03157716,-0.032945983,-0.03430186,-0.03564426,-0.03697277,-0.03828687,-0.039586056,-0.04086992,-0.042137973,-0.043389764,-0.044624794,-0.045842696,-0.047043,-0.048225235,-0.04938905,-0.050533988,-0.051659614,-0.05276559,-0.053851478,-0.054916877,-0.055961464,-0.056984834,-0.057986617,-0.058966447,-0.059924014,-0.06085896,-0.061770935,-0.06265966,-0.06352479,-0.06436603,-0.06518309,-0.06597569,-0.06674354,-0.06748637,-0.068203926,-0.06889598,-0.06956226,-0.07020256,-0.070816666,-0.07140432,-0.07196538,-0.07249964,-0.07300689,-0.073487006,-0.0739398,-0.07436513,-0.07476284,-0.075132824,-0.07547495,-0.07578911,-0.0760752,-0.076333165,-0.07656289,-0.07676431,-0.07693739,-0.07708207,-0.07719831,-0.07728609,-0.07734539,-0.077376224,-0.07737858,-0.07735249,-0.077297956,-0.07721502,-0.077103764,-0.07696421,-0.076796435,-0.07660053,-0.07637657,-0.07612466,null],"type":"scatter","name":"Re{S(t)}","hovertemplate":"(%{x:.4f} ms, %{y:.3f} a.u.)","x":[3.935,3.96552130317688,3.9960426063537597,4.02656390953064,4.05708521270752,4.087606515884399,4.11812781906128,4.148649122238159,4.179170425415039,4.209691728591919,4.240213031768799,4.270734334945679,4.301255638122559,4.331776941299439,4.362298244476318,4.392819547653199,4.423340850830078,4.453862154006958,4.484383457183838,4.514904760360718,4.545426063537597,4.575947366714478,4.606468669891358,4.636989973068237,4.667511276245117,4.698032579421997,4.728553882598877,4.759075185775757,4.789596488952637,4.820117792129516,4.850639095306397,4.881160398483276,4.911681701660156,4.942203004837037,4.972724308013916,5.0032456111907955,5.033766914367676,5.064288217544556,5.0948095207214354,5.125330823898316,5.155852127075195,5.186373430252075,5.216894733428955,5.247416036605835,5.277937339782715,5.308458642959595,5.338979946136474,5.3695012493133545,5.400022552490235,5.430543855667114,5.4610651588439945,5.491586462020874,5.522107765197754,5.5526290683746335,5.583150371551514,5.613671674728393,5.6441929779052735,5.674714281082153,5.705235584259033,5.7357568874359135,5.766278190612793,5.796799493789672,5.827320796966553,5.857842100143433,5.888363403320312,5.918884706497193,5.949406009674073,5.979927312850952,6.010448616027832,6.040969919204712,6.071491222381592,6.102012525558472,6.132533828735351,6.163055131912231,6.193576435089112,6.224097738265991,6.254619041442871,6.285140344619752,6.315661647796631,6.34618295097351,6.376704254150391,6.407225557327271,6.43774686050415,6.46826816368103,6.49878946685791,6.52931077003479,6.55983207321167,6.590353376388549,6.62087467956543,6.65139598274231,6.681917285919189,6.712438589096069,6.74295989227295,6.773481195449829,6.8040024986267085,6.834523801803589,6.865045104980469,6.8955664081573484,6.926087711334228,6.956609014511109,6.987130317687988,7.017651620864868,7.048172924041748,7.078694227218628,7.109215530395508,7.139736833572387,7.1702581367492675,7.200779439926148,7.231300743103027,7.261822046279907,7.292343349456787,7.322864652633667,7.3533859558105465,7.383907258987427,7.414428562164307,7.4449498653411865,7.475471168518066,7.505992471694946,7.5365137748718265,7.567035078048706,7.597556381225585,7.628077684402466,7.658598987579346,7.689120290756225,7.719641593933106,7.750162897109986,7.780684200286865,7.811205503463745,7.841726806640625,7.872248109817505,7.902769412994385,7.933290716171264,7.963812019348145,7.994333322525025,8.024854625701904,8.055375928878783,8.085897232055665,8.116418535232544,8.146939838409423,8.177461141586303,8.207982444763184,8.238503747940063,8.269025051116943,8.299546354293824,8.330067657470703,8.360588960647583,8.391110263824462,8.421631567001343,8.452152870178223,8.482674173355102,8.513195476531981,8.543716779708863,8.574238082885742,8.604759386062621,8.635280689239503,8.665801992416382,8.696323295593261,8.72684459877014,8.757365901947022,8.787887205123901,8.81840850830078,8.84892981147766,8.879451114654541,8.90997241783142,8.9404937210083,8.971015024185181,9.00153632736206,9.03205763053894,9.06257893371582,9.0931002368927,9.12362154006958,9.15414284324646,9.184664146423339,9.21518544960022,9.2457067527771,9.276228055953979,9.30674935913086,9.33727066230774,9.367791965484619,9.398313268661498,9.42883457183838,9.459355875015259,9.489877178192138,9.520398481369018,9.550919784545899,9.581441087722778,9.611962390899658,9.642483694076539,9.673004997253418,9.703526300430298,9.734047603607177,9.764568906784058,9.795090209960938,9.825611513137817,9.856132816314696,9.886654119491578,9.917175422668457,9.947696725845336,9.978218029022218,10.008739332199097,10.039260635375976,10.069781938552856,10.100303241729737,10.130824544906616,10.161345848083496,10.191867151260375,10.222388454437256,10.252909757614136,10.283431060791015,10.313952363967894,10.344473667144776,10.374994970321655,10.405516273498534,10.436037576675416,10.466558879852295,10.497080183029174,10.527601486206054,10.558122789382935,10.588644092559814,10.619165395736694,10.649686698913573,10.680208002090454,10.710729305267334,10.741250608444213,10.771771911621094,10.802293214797974,10.832814517974853,10.863335821151733,10.893857124328614,10.924378427505493,10.954899730682373,10.985421033859252,11.015942337036133,11.046463640213013,11.076984943389892,11.107506246566773,11.138027549743653,11.168548852920532,11.199070156097411,11.229591459274292,11.260112762451172,11.290634065628051,11.32115536880493,11.351676671981812,11.382197975158691,11.41271927833557,11.443240581512452,11.473761884689331,11.50428318786621,11.53480449104309,11.565325794219971,11.59584709739685,11.62636840057373,11.65688970375061,11.68741100692749,11.71793231010437,11.74845361328125,11.77897491645813,11.80949621963501,11.84001752281189,11.870538825988769,11.90106012916565,11.93158143234253,11.962102735519409,11.99262403869629,12.02314534187317,12.053666645050049,12.084187948226928,12.11470925140381,12.145230554580689,12.175751857757568,12.20627316093445,12.236794464111329,12.267315767288208,12.297837070465087,12.328358373641969,12.358879676818848,12.389400979995727,12.419922283172607,12.450443586349488,12.480964889526367,12.511486192703247,12.542007495880128,12.572528799057007,12.603050102233887,12.633571405410766,12.664092708587647,12.694614011764527,12.725135314941406,12.755656618118286,12.786177921295167,12.816699224472046,12.847220527648926,12.877741830825807,12.908263134002686,12.938784437179566,12.969305740356445,12.999827043533326,13.030348346710205,13.060869649887085,13.091390953063964,13.121912256240845,13.152433559417725,13.182954862594604,13.213476165771485,13.243997468948365,13.274518772125244,13.305040075302124,13.335561378479005,13.366082681655884,13.396603984832764,13.427125288009643,13.457646591186524,13.488167894363404,13.518689197540283,13.549210500717164,13.579731803894044,13.610253107070923,13.640774410247802,13.671295713424684,13.701817016601563,13.732338319778442,13.762859622955322,13.793380926132203,13.823902229309082,13.854423532485962,13.884944835662843,13.915466138839722,13.945987442016602,13.976508745193481,14.007030048370362,14.037551351547242,14.068072654724121,14.098593957901,14.129115261077882,14.159636564254761,14.19015786743164,14.22067917060852,14.251200473785401,14.28172177696228,14.31224308013916,14.342764383316041,14.37328568649292,14.4038069896698,14.43432829284668,14.46484959602356,14.49537089920044,14.52589220237732,14.556413505554199,14.58693480873108,14.61745611190796,14.647977415084839,14.67849871826172,14.709020021438599,14.739541324615479,14.770062627792358,14.800583930969239,14.831105234146118,14.861626537322998,14.892147840499877,14.922669143676758,14.953190446853638,14.983711750030517,15.014233053207398,15.044754356384278,15.075275659561157,15.105796962738037,15.136318265914918,15.166839569091797,15.197360872268677,15.227882175445556,15.258403478622437,15.288924781799317,15.319446084976196,15.349967388153077,15.380488691329957,15.411009994506836,15.441531297683715,15.472052600860597,15.502573904037476,15.533095207214355,15.563616510391235,15.594137813568116,15.624659116744995,15.655180419921875,15.685701723098756,15.716223026275635,15.746744329452515,15.777265632629394,15.807786935806275,15.838308238983155,15.868829542160034,15.899350845336913,15.929872148513795,15.960393451690674,15.990914754867553,16.021436058044433,16.051957361221312,16.08247866439819,16.11299996757507,16.143521270751954,16.174042573928833,16.204563877105713,16.235085180282592,16.26560648345947,16.29612778663635,16.32664908981323,16.35717039299011,16.387691696166993,16.418212999343872,16.44873430252075,16.47925560569763,16.50977690887451,16.54029821205139,16.57081951522827,16.601340818405152,16.63186212158203,16.66238342475891,16.69290472793579,16.72342603111267,16.75394733428955,16.78446863746643,16.81498994064331,16.84551124382019,16.87603254699707,16.90655385017395,16.93707515335083,16.96759645652771,16.998117759704588,17.028639062881467,17.05916036605835,17.08968166923523,17.12020297241211,17.15072427558899,17.181245578765868,17.211766881942747,17.242288185119627,17.27280948829651,17.30333079147339,17.33385209465027,17.364373397827148,17.394894701004027,17.425416004180907,17.455937307357786,17.48645861053467,17.51697991371155,17.547501216888428,17.578022520065307,17.608543823242186,17.639065126419066,17.669586429595945,17.700107732772825,17.730629035949708,17.761150339126587,17.791671642303466,17.822192945480346,17.852714248657225,17.883235551834105,17.913756855010984,17.944278158187867,17.974799461364746,18.005320764541626,18.035842067718505,18.066363370895385,18.096884674072264,18.127405977249143,18.157927280426026,18.188448583602906,18.218969886779785,18.249491189956665,18.280012493133544,18.310533796310423,18.341055099487303,18.371576402664182,18.402097705841065,18.432619009017944,18.463140312194824,18.493661615371703,18.524182918548583,18.554704221725462,18.58522552490234,18.615746828079224,18.646268131256104,18.676789434432983,18.707310737609863,18.737832040786742,18.76835334396362,18.7988746471405,18.82939595031738,18.859917253494263,18.890438556671143,18.920959859848022,18.9514811630249,18.98200246620178,19.01252376937866,19.04304507255554,19.073566375732423,19.104087678909302,19.13460898208618,19.16513028526306,19.19565158843994,19.22617289161682,19.2566941947937,19.287215497970582,19.31773680114746,19.34825810432434,19.37877940750122,19.4093007106781,19.43982201385498,19.47034331703186,19.500864620208738,19.53138592338562,19.5619072265625,19.59242852973938,19.62294983291626,19.65347113609314,19.683992439270018,19.714513742446897,19.74503504562378,19.77555634880066,19.80607765197754,19.836598955154418,19.867120258331298,19.897641561508177,19.928162864685056,19.958684167861936,19.989205471038815,20.019726774215698,20.050248077392578,20.080769380569457,20.111290683746336,20.141811986923216,20.172333290100095,20.202854593276975,20.233375896453854,20.263897199630737,20.294418502807616,20.324939805984496,20.355461109161375,20.385982412338254,20.416503715515134,20.447025018692013,20.477546321868896,20.508067625045776,20.538588928222655,20.569110231399534,20.599631534576414,20.630152837753293,20.660674140930173,20.691195444107056,20.721716747283935,20.752238050460814,20.782759353637694,20.813280656814573,20.843801959991453,20.874323263168332,20.90484456634521,20.935365869522094,20.965887172698974,20.996408475875853,21.026929779052733,21.057451082229612,21.08797238540649,21.11849368858337,21.149014991760254,21.179536294937133,21.210057598114012,21.240578901290892,21.27110020446777,21.30162150764465,21.33214281082153,21.362664113998413,21.393185417175292,21.423706720352172,21.45422802352905,21.48474932670593,21.51527062988281,21.54579193305969,21.57631323623657,21.606834539413452,21.63735584259033,21.66787714576721,21.69839844894409,21.72891975212097,21.75944105529785,21.789962358474728,21.82048366165161,21.85100496482849,21.88152626800537,21.91204757118225,21.94256887435913,21.973090177536008,22.003611480712888,22.034132783889767,22.06465408706665,22.09517539024353,22.12569669342041,22.156217996597288,22.186739299774167,22.217260602951047,22.247781906127926,22.27830320930481,22.30882451248169,22.339345815658568,22.369867118835447,22.400388422012327,22.430909725189206,22.461431028366086,22.49195233154297,22.522473634719848,22.552994937896727,22.583516241073607,22.614037544250486,22.644558847427366,22.675080150604245,22.705601453781124,22.736122756958007,22.766644060134887,22.797165363311766,22.827686666488646,22.858207969665525,22.888729272842404,22.919250576019284,22.949771879196167,22.980293182373046,23.010814485549925,23.041335788726805,23.071857091903684,23.102378395080564,23.132899698257443,23.163421001434326,23.193942304611205,23.224463607788085,23.254984910964964,23.285506214141844,23.316027517318723,23.346548820495602,23.377070123672482,23.407591426849365,23.438112730026244,23.468634033203124,23.499155336380003,23.529676639556882,23.560197942733762,23.59071924591064,23.621240549087524,23.651761852264404,23.682283155441283,23.712804458618162,23.74332576179504,23.77384706497192,23.8043683681488,23.834889671325683,23.865410974502563,23.895932277679442,23.92645358085632,23.9569748840332,23.98749618721008,24.01801749038696,24.04853879356384,24.079060096740722,24.1095813999176,24.14010270309448,24.17062400627136,24.20114530944824,24.23166661262512,24.262187915802,24.29270921897888,24.32323052215576,24.35375182533264,24.38427312850952,24.4147944316864,24.44531573486328,24.475837038040158,24.506358341217037,24.53687964439392,24.5674009475708,24.59792225074768,24.62844355392456,24.658964857101438,24.689486160278317,24.720007463455197,24.75052876663208,24.78105006980896,24.81157137298584,24.842092676162718,24.872613979339597,24.903135282516477,24.933656585693356,24.96417788887024,24.99469919204712,25.025220495223998,25.055741798400877,25.086263101577757,25.116784404754636,25.147305707931515,25.177827011108395,25.208348314285278,25.238869617462157,25.269390920639037,25.299912223815916,25.330433526992795,25.360954830169675,25.391476133346554,25.421997436523437,25.452518739700317,25.483040042877196,25.513561346054075,25.544082649230955,25.574603952407834,25.605125255584714,25.635646558761596,25.666167861938476,25.696689165115355,25.727210468292235,25.757731771469114,25.788253074645993,25.818774377822873,25.849295680999752,25.879816984176635,25.910338287353515,25.940859590530394,25.971380893707273,26.001902196884153,26.032423500061032,26.06294480323791,26.093466106414795,26.123987409591674,26.154508712768553,26.185030015945433,26.215551319122312,26.24607262229919,26.27659392547607,26.30711522865295,26.337636531829833,26.368157835006713,26.398679138183592,26.42920044136047,26.45972174453735,26.49024304771423,26.52076435089111,26.551285654067993,26.581806957244872,26.61232826042175,26.64284956359863,26.67337086677551,26.70389216995239,26.73441347312927,26.764934776306152,26.79545607948303,26.82597738265991,26.85649868583679,26.88701998901367,26.91754129219055,26.94806259536743,26.978583898544308,27.00910520172119,27.03962650489807,27.07014780807495,27.10066911125183,27.13119041442871,27.161711717605588,27.192233020782467,27.22275432395935,27.25327562713623,27.28379693031311,27.31431823348999,27.344839536666868,27.375360839843747,27.405882143020627,27.43640344619751,27.46692474937439,27.49744605255127,27.527967355728148,27.558488658905027,27.589009962081906,27.619531265258786,27.650052568435665,27.68057387161255,27.711095174789428,27.741616477966307,27.772137781143186,27.802659084320066,27.833180387496945,27.863701690673825,27.894222993850708,27.924744297027587,27.955265600204466,27.985786903381346,28.016308206558225,28.046829509735105,28.077350812911984,28.107872116088867,28.138393419265746,28.168914722442626,28.199436025619505,28.229957328796385,28.260478631973264,28.290999935150143,28.321521238327023,28.352042541503906,28.382563844680785,28.413085147857664,28.443606451034544,28.474127754211423,28.504649057388303,28.535170360565182,28.565691663742065,28.596212966918944,28.626734270095824,28.657255573272703,28.687776876449583,28.718298179626462,28.74881948280334,28.77934078598022,28.809862089157104,28.840383392333983,28.870904695510863,28.901425998687742,28.93194730186462,28.9624686050415,28.99298990821838,29.023511211395263,29.054032514572143,29.084553817749022,29.1150751209259,29.14559642410278,29.17611772727966,29.20663903045654,29.237160333633422,29.267681636810302,29.29820293998718,29.32872424316406,29.35924554634094,29.38976684951782,29.4202881526947,29.45080945587158,29.48133075904846,29.51185206222534,29.54237336540222,29.5728946685791,29.60341597175598,29.63393727493286,29.664458578109738,29.69497988128662,29.7255011844635,29.75602248764038,29.78654379081726,29.817065093994138,29.847586397171018,29.878107700347897,29.90862900352478,29.93915030670166,29.96967160987854,30.000192913055418,30.030714216232298,30.061235519409177,30.091756822586056,30.122278125762936,30.15279942893982,30.183320732116698,30.213842035293577,30.244363338470457,30.274884641647336,30.305405944824216,30.335927248001095,30.366448551177978,30.396969854354857,30.427491157531737,30.458012460708616,30.488533763885496,30.519055067062375,30.549576370239254,30.580097673416137,30.610618976593017,30.641140279769896,30.671661582946776,30.702182886123655,30.732704189300534,30.763225492477414,30.793746795654293,30.824268098831176,30.854789402008056,30.885310705184935,30.915832008361814,30.946353311538694,30.976874614715573,31.007395917892453,31.037917221069335,31.068438524246215,31.098959827423094,31.129481130599974,31.160002433776853,31.190523736953732,31.221045040130612,31.25156634330749,31.282087646484374,31.312608949661254,31.343130252838133,31.373651556015012,31.404172859191892,31.43469416236877,31.46521546554565,31.495736768722534,31.526258071899413,31.556779375076292,31.587300678253172,31.61782198143005,31.64834328460693,31.67886458778381,31.709385890960693,31.739907194137572,31.77042849731445,31.80094980049133,31.83147110366821,31.86199240684509,31.89251371002197,31.92303501319885,31.95355631637573,31.98407761955261,32.01459892272949,32.04512022590637,32.07564152908325,32.10616283226013,32.13668413543701,32.16720543861389,32.197726741790774,32.22824804496765,32.25876934814453,32.28929065132141,32.31981195449829,32.35033325767517,32.38085456085205,32.41137586402893,32.44189716720581,32.47241847038269,32.50293977355957,32.53346107673645,32.56398237991333,32.59450368309021,32.62502498626709,32.65554628944397,32.68606759262085,32.71658889579773,32.74711019897461,32.777631502151486,32.80815280532837,32.83867410850525,32.86919541168213,32.89971671485901,32.93023801803589,32.96075932121277,32.991280624389645,33.02180192756653,33.052323230743404,33.08284453392029,33.11336583709717,33.143887140274046,33.17440844345093,33.204929746627805,33.23545104980469,33.265972352981564,33.29649365615845,33.32701495933533,33.357536262512205,33.38805756568909,33.418578868865964,33.44910017204285,33.47962147521972,33.510142778396606,33.54066408157349,33.571185384750365,33.60170668792725,33.63222799110412,33.66274929428101,33.69327059745788,33.723791900634765,33.75431320381165,33.784834506988524,33.81535581016541,33.84587711334228,33.876398416519166,33.90691971969604,33.937441022872925,33.96796232604981,33.99848362922668,34.029004932403566,34.05952623558044,34.090047538757325,34.1205688419342,34.151090145111084,34.18161144828797,34.21213275146484,34.242654054641726,34.2731753578186,34.303696660995485,34.33421796417236,34.36473926734924,34.39526057052612,34.425781873703,34.456303176879885,34.48682448005676,34.517345783233644,34.54786708641052,34.5783883895874,34.60890969276428,34.63943099594116,34.669952299118044,34.70047360229492,34.7309949054718,34.76151620864868,34.79203751182556,34.82255881500244,34.85308011817932,34.883601421356204,34.91412272453308,34.94464402770996,34.97516533088684,35.00568663406372,35.0362079372406,35.06672924041748,35.09725054359436,35.12777184677124,35.15829314994812,35.188814453125,35.21933575630188,35.24985705947876,35.28037836265564,35.31089966583252,35.3414209690094,35.37194227218628,35.40246357536316,35.43298487854004,35.463506181716916,35.4940274848938,35.524548788070675,35.55507009124756,35.58559139442444,35.61611269760132,35.6466340007782,35.677155303955075,35.70767660713196,35.738197910308834,35.76871921348572,35.7992405166626,35.829761819839476,35.86028312301636,35.890804426193235,35.92132572937012,35.951847032547,35.982368335723876,36.01288963890076,36.043410942077635,36.07393224525452,36.1044535484314,36.13497485160828,36.16549615478516,36.196017457962036,36.22653876113892,36.257060064315795,36.28758136749268,36.31810267066956,36.348623973846436,36.37914527702332,36.409666580200195,36.44018788337708,36.470709186553954,36.50123048973084,36.53175179290771,36.562273096084596,36.59279439926148,36.623315702438354,36.65383700561524,36.68435830879211,36.714879611968996,36.74540091514587,36.775922218322755,36.80644352149964,36.836964824676514,36.8674861278534,36.89800743103027,36.928528734207156,36.95905003738403,36.989571340560914,37.0200926437378,37.05061394691467,37.081135250091556,37.11165655326843,37.142177856445315,37.17269915962219,37.203220462799074,37.23374176597596,37.26426306915283,37.294784372329715,37.32530567550659,37.355826978683474,37.38634828186035,37.41686958503723,37.447390888214116,37.47791219139099,37.508433494567875,37.53895479774475,37.569476100921634,37.59999740409851,37.63051870727539,37.66104001045227,37.69156131362915,37.722082616806034,37.75260391998291,37.78312522315979,37.81364652633667,37.84416782951355,37.87468913269043,37.90521043586731,37.93573173904419,37.96625304222107,37.99677434539795,38.02729564857483,38.05781695175171,38.08833825492859,38.11885955810547,38.14938086128235,38.17990216445923,38.21042346763611,38.24094477081299,38.27146607398987,38.301987377166746,38.33250868034363,38.36302998352051,38.39355128669739,38.42407258987427,38.45459389305115,38.48511519622803,38.515636499404906,38.54615780258179,38.57667910575867,38.60720040893555,38.63772171211243,38.668243015289306,38.69876431846619,38.729285621643065,38.75980692481995,38.79032822799683,38.82084953117371,38.85137083435059,38.881892137527466,38.91241344070435,38.942934743881224,38.97345604705811,39.00397735023498,39.034498653411866,39.06501995658875,39.095541259765625,39.12606256294251,39.156583866119384,39.18710516929627,39.21762647247314,39.248147775650025,39.27866907882691,39.309190382003784,39.33971168518067,39.37023298835754,39.400754291534426,39.4312755947113,39.461796897888185,39.49231820106507,39.522839504241944,39.55336080741883,39.5838821105957,39.614403413772585,39.64492471694946,39.675446020126344,39.70596732330323,39.7364886264801,39.767009929656986,39.79753123283386,39.828052536010745,39.85857383918762,39.8890951423645,39.919616445541386,39.95013774871826,39.980659051895145,40.01118035507202,40.041701658248904,40.07222296142578,40.10274426460266,40.13326556777954,40.16378687095642,40.194308174133305,40.22482947731018,40.25535078048706,40.28587208366394,40.31639338684082,40.3469146900177,40.37743599319458,40.407957296371464,40.43847859954834,40.46899990272522,40.4995212059021,40.53004250907898,40.56056381225586,40.59108511543274,40.62160641860962,40.6521277217865,40.68264902496338,40.71317032814026,40.74369163131714,40.77421293449402,40.8047342376709,40.83525554084778,40.86577684402466,40.89629814720154,40.92681945037842,40.9573407535553,40.987862056732176,41.01838335990906,41.04890466308594,41.07942596626282,41.1099472694397,41.14046857261658,41.17098987579346,41.201511178970335,41.23203248214722,41.2625537853241,41.29307508850098,41.32359639167786,41.354117694854736,41.38463899803162,41.415160301208495,41.44568160438538,41.476202907562254,41.50672421073914,41.53724551391602,41.567766817092895,41.59828812026978,41.628809423446654,41.65933072662354,41.68985202980041,41.720373332977296,41.75089463615418,41.781415939331055,41.81193724250794,41.84245854568481,41.872979848861696,41.90350115203857,41.934022455215455,41.96454375839234,41.995065061569214,42.0255863647461,42.05610766792297,42.086628971099856,42.11715027427673,42.147671577453615,42.1781928806305,42.20871418380737,42.239235486984256,42.26975679016113,42.300278093338015,42.33079939651489,42.361320699691774,42.39184200286866,42.42236330604553,42.452884609222416,42.48340591239929,42.513927215576174,42.54444851875305,42.57496982192993,42.60549112510681,42.63601242828369,42.666533731460575,42.69705503463745,42.727576337814334,42.75809764099121,42.78861894416809,42.81914024734497,42.84966155052185,42.880182853698734,42.91070415687561,42.94122546005249,42.97174676322937,43.00226806640625,43.03278936958313,43.06331067276001,43.093831975936894,43.12435327911377,43.15487458229065,43.18539588546753,43.21591718864441,43.24643849182129,43.27695979499817,43.30748109817505,43.33800240135193,43.36852370452881,43.39904500770569,43.42956631088257,43.46008761405945,43.49060891723633,43.52113022041321,43.55165152359009,43.58217282676697,43.61269412994385,43.64321543312073,43.673736736297606,43.70425803947449,43.73477934265137,43.76530064582825,43.79582194900513,43.826343252182006,43.85686455535889,43.887385858535765,43.91790716171265,43.948428464889524,43.97894976806641,44.00947107124329,44.039992374420166,44.07051367759705,44.101034980773925,44.13155628395081,44.16207758712768,44.192598890304566,44.22312019348145,44.253641496658325,44.28416279983521,44.314684103012084,44.34520540618897,44.37572670936584,44.406248012542726,44.43676931571961,44.467290618896484,44.49781192207337,44.52833322525024,44.558854528427126,44.589375831604,44.619897134780885,44.65041843795777,44.680939741134644,44.71146104431153,44.7419823474884,44.772503650665286,44.80302495384216,44.833546257019044,44.86406756019593,44.8945888633728,44.925110166549686,44.95563146972656,44.986152772903445,45.01667407608032,45.047195379257204,45.07771668243408,45.10823798561096,45.138759288787845,45.16928059196472,45.199801895141604,45.23032319831848,45.26084450149536,45.29136580467224,45.32188710784912,45.352408411026005,45.38292971420288,45.413451017379764,45.44397232055664,45.47449362373352,45.5050149269104,45.53553623008728,45.566057533264164,45.59657883644104,45.62710013961792,45.6576214427948,45.68814274597168,45.71866404914856,45.74918535232544,45.77970665550232,45.8102279586792,45.84074926185608,45.87127056503296,45.90179186820984,45.93231317138672,45.9628344745636,45.99335577774048,46.02387708091736,46.05439838409424,46.08491968727112,46.115440990448,46.145962293624876,46.17648359680176,46.20700489997864,46.23752620315552,46.2680475063324,46.29856880950928,46.32909011268616,46.359611415863036,46.39013271903992,46.420654022216794,46.45117532539368,46.48169662857056,46.512217931747436,46.54273923492432,46.573260538101195,46.60378184127808,46.634303144454954,46.66482444763184,46.69534575080872,46.725867053985596,46.75638835716248,46.786909660339354,46.81743096351624,46.84795226669311,46.878473569869996,46.90899487304688,46.939516176223755,46.97003747940064,47.000558782577514,47.0310800857544,47.06160138893127,47.092122692108155,47.12264399528504,47.153165298461914,47.1836866016388,47.21420790481567,47.244729207992556,47.27525051116943,47.305771814346315,47.3362931175232,47.366814420700074,47.39733572387696,47.42785702705383,47.458378330230715,47.48889963340759,47.519420936584474,47.54994223976135,47.58046354293823,47.610984846115116,47.64150614929199,47.672027452468875,47.70254875564575,47.73307005882263,47.76359136199951,47.79411266517639,47.824633968353275,47.85515527153015,47.885676574707034,47.91619787788391,47.94671918106079,47.97724048423767,48.00776178741455,48.038283090591435,48.06880439376831,48.09932569694519,48.12984700012207,48.16036830329895,48.19088960647583,48.22141090965271,48.251932212829594,48.28245351600647,48.31297481918335,48.34349612236023,48.37401742553711,48.40453872871399,48.43506003189087,48.46558133506775,48.49610263824463,48.52662394142151,48.55714524459839,48.58766654777527,48.61818785095215,48.64870915412903,48.679230457305906,48.70975176048279,48.74027306365967,48.77079436683655,48.80131567001343,48.831836973190306,48.86235827636719,48.892879579544065,48.92340088272095,48.95392218589783,48.98444348907471,49.01496479225159,49.045486095428465,49.07600739860535,49.106528701782224,49.13705000495911,49.16757130813599,49.198092611312866,49.22861391448975,49.259135217666625,49.28965652084351,49.320177824020384,49.35069912719727,49.38122043037415,49.411741733551025,49.44226303672791,49.472784339904784,49.50330564308167,49.53382694625854,49.564348249435426,49.59486955261231,49.625390855789185,49.65591215896607,49.68643346214294,49.71695476531983,49.7474760684967,49.777997371673585,49.80851867485047,49.839039978027344,49.86956128120423,49.9000825843811,49.930603887557986,49.96112519073486,49.991646493911745,50.02216779708862,50.0526891002655,50.083210403442386,50.11373170661926,50.144253009796145,50.17477431297302,50.205295616149904,50.23581691932678,50.26633822250366,50.296859525680546,50.32738082885742,50.357902132034305,50.38842343521118,50.41894473838806,50.44946604156494,50.47998734474182,50.510508647918705,50.54102995109558,50.571551254272464,50.60207255744934,50.63259386062622,50.6631151638031,50.69363646697998,50.724157770156864,50.75467907333374,50.78520037651062,50.8157216796875,50.84624298286438,50.87676428604126,50.90728558921814,50.937806892395024,50.9683281955719,50.99884949874878,51.02937080192566,51.05989210510254,51.09041340827942,51.1209347114563,51.151456014633176,51.18197731781006,51.21249862098694,51.24301992416382,51.2735412273407,51.30406253051758,51.33458383369446,51.365105136871335,51.39562644004822,51.4261477432251,51.45666904640198,51.48719034957886,51.517711652755736,51.54823295593262,51.578754259109495,51.60927556228638,51.63979686546326,51.67031816864014,51.70083947181702,51.731360774993895,51.76188207817078,51.792403381347654,51.82292468452454,51.85344598770142,51.883967290878296,51.91448859405518,51.945009897232055,51.97553120040894,52.00605250358581,52.036573806762696,52.06709510993958,52.097616413116455,52.12813771629334,52.158659019470214,52.1891803226471,52.21970162582397,52.250222929000856,52.28074423217774,52.311265535354615,52.3417868385315,52.37230814170837,52.402829444885256,52.43335074806213,52.463872051239015,52.49439335441589,52.524914657592774,52.55543596076966,52.58595726394653,52.616478567123416,52.64699987030029,52.677521173477174,52.70804247665405,52.73856377983093,52.769085083007816,52.79960638618469,52.830127689361575,52.86064899253845,52.891170295715334,52.92169159889221,52.95221290206909,52.982734205245976,53.01325550842285,53.043776811599734,53.07429811477661,53.10481941795349,53.13534072113037,53.16586202430725,53.196383327484135,53.22690463066101,53.257425933837894,53.28794723701477,53.31846854019165,53.34898984336853,53.37951114654541,53.410032449722294,53.44055375289917,53.47107505607605,53.50159635925293,53.53211766242981,53.56263896560669,53.59316026878357,53.62368157196045,53.65420287513733,53.68472417831421,53.71524548149109,53.74576678466797,53.77628808784485,53.80680939102173,53.837330694198606,53.86785199737549,53.89837330055237,53.92889460372925,53.95941590690613,53.989937210083006,54.02045851325989,54.050979816436765,54.08150111961365,54.11202242279053,54.14254372596741,54.17306502914429,54.203586332321166,54.23410763549805,54.264628938674925,54.29515024185181,54.32567154502869,54.356192848205566,54.38671415138245,54.417235454559325,54.44775675773621,54.478278060913084,54.50879936408997,54.53932066726685,54.569841970443726,54.60036327362061,54.630884576797484,54.66140587997437,54.69192718315124,54.722448486328126,54.75296978950501,54.783491092681885,54.81401239585877,54.844533699035644,54.87505500221253,54.9055763053894,54.936097608566286,54.96661891174316,54.997140214920044,55.02766151809693,55.0581828212738,55.088704124450686,55.11922542762756,55.149746730804445,55.18026803398132,55.210789337158204,55.24131064033509,55.27183194351196,55.302353246688845,55.33287454986572,55.363395853042604,55.39391715621948,55.42443845939636,55.454959762573246,55.48548106575012,55.516002368927005,55.54652367210388,55.577044975280764,55.60756627845764,55.63808758163452,55.668608884811405,55.69913018798828,55.729651491165164,55.76017279434204,55.79069409751892,55.8212154006958,55.85173670387268,55.882258007049565,55.91277931022644,55.94330061340332,55.9738219165802,56.00434321975708,56.03486452293396,56.06538582611084,56.09590712928772,56.1264284324646,56.15694973564148,56.18747103881836,56.21799234199524,56.24851364517212,56.279034948349,56.309556251525876,56.34007755470276,56.37059885787964,56.40112016105652,56.4316414642334,56.46216276741028,56.49268407058716,56.523205373764036,56.55372667694092,56.5842479801178,56.61476928329468,56.64529058647156,56.675811889648436,56.70633319282532,56.736854496002195,56.76737579917908,56.79789710235596,56.82841840553284,56.85893970870972,56.889461011886596,56.91998231506348,56.950503618240354,56.98102492141724,57.01154622459412,57.042067527770996,57.07258883094788,57.103110134124755,57.13363143730164,57.164152740478514,57.1946740436554,57.22519534683228,57.255716650009155,57.28623795318604,57.316759256362914,57.3472805595398,57.37780186271667,57.408323165893556,57.43884446907043,57.469365772247315,57.4998870754242,57.530408378601074,57.56092968177796,57.59145098495483,57.621972288131715,57.65249359130859,57.683014894485474,57.71353619766236,57.74405750083923,57.774578804016116,57.80510010719299,57.835621410369875,57.86614271354675,57.89666401672363,57.927185319900516,57.95770662307739,57.988227926254275,58.01874922943115,58.049270532608034,58.07979183578491,58.11031313896179,58.140834442138676,58.17135574531555,58.201877048492435,58.23239835166931,58.26291965484619,58.29344095802307,58.32396226119995,58.354483564376835,58.38500486755371,58.415526170730594,58.44604747390747,58.47656877708435,58.50709008026123,58.53761138343811,58.56813268661499,58.59865398979187,58.62917529296875,58.65969659614563,58.69021789932251,58.72073920249939,58.75126050567627,58.78178180885315,58.81230311203003,58.84282441520691,58.87334571838379,58.90386702156067,58.93438832473755,58.96490962791443,58.995430931091306,59.02595223426819,59.05647353744507,59.08699484062195,59.11751614379883,59.14803744697571,59.17855875015259,59.209080053329465,59.23960135650635,59.27012265968323,59.30064396286011,59.33116526603699,59.361686569213866,59.39220787239075,59.422729175567625,59.45325047874451,59.48377178192139,59.51429308509827,59.54481438827515,59.575335691452025,59.60585699462891,59.636378297805784,59.66689960098267,59.69742090415955,59.727942207336426,59.75846351051331,59.788984813690185,59.81950611686707,59.85002742004394,59.880548723220826,59.9110700263977,59.941591329574585,59.97211263275147,60.002633935928344,60.03315523910523,60.0636765422821,60.094197845458986,60.12471914863586,60.155240451812745,60.18576175498963,60.2162830581665,60.246804361343386,60.27732566452026,60.307846967697145,60.33836827087402,60.368889574050904,60.39941087722779,60.42993218040466,60.460453483581546,60.49097478675842,60.521496089935304,60.55201739311218,60.58253869628906,60.613059999465946,60.64358130264282,60.674102605819705,60.70462390899658,60.735145212173464,60.76566651535034,60.79618781852722,60.826709121704106,60.85723042488098,60.887751728057864,60.91827303123474,60.94879433441162,60.9793156375885,61.00983694076538,61.04035824394226,61.07087954711914,61.101400850296024,61.1319221534729,61.16244345664978,61.19296475982666,61.22348606300354,61.25400736618042,61.2845286693573,61.31504997253418,61.34557127571106,61.37609257888794,61.40661388206482,61.4371351852417,61.46765648841858,61.49817779159546,61.52869909477234,61.55922039794922,61.5897417011261,61.62026300430298,61.65078430747986,61.681305610656736,61.71182691383362,61.7423482170105,61.77286952018738,61.80339082336426,61.833912126541136,61.86443342971802,61.894954732894895,61.92547603607178,61.95599733924866,61.98651864242554,62.01703994560242,62.047561248779296,62.07808255195618,62.108603855133055,62.13912515830994,62.16964646148681,62.200167764663696,62.23068906784058,62.261210371017455,62.29173167419434,62.322252977371214,62.3527742805481,62.38329558372497,62.413816886901856,62.44433819007874,62.474859493255614,62.5053807964325,62.53590209960937,62.566423402786256,62.59694470596313,62.627466009140015,62.6579873123169,62.688508615493774,62.71902991867066,62.74955122184753,62.780072525024416,62.81059382820129,62.841115131378174,62.87163643455506,62.90215773773193,62.932679040908816,62.96320034408569,62.993721647262575,63.02424295043945,63.054764253616334,63.08528555679322,63.11580685997009,63.146328163146975,63.17684946632385,63.207370769500734,63.23789207267761,63.26841337585449,63.298934679031376,63.32945598220825,63.359977285385135,63.39049858856201,63.421019891738894,63.45154119491577,63.48206249809265,63.51258380126953,63.54310510444641,63.573626407623294,63.60414771080017,63.63466901397705,63.66519031715393,63.69571162033081,63.72623292350769,63.75675422668457,63.78727552986145,63.81779683303833,63.84831813621521,63.87883943939209,63.90936074256897,63.93988204574585,63.97040334892273,64.00092465209961,64.03144595527648,64.06196725845336,64.09248856163025,64.12300986480713,64.153531167984,64.18405247116088,64.21457377433777,64.24509507751465,64.27561638069153,64.3061376838684,64.33665898704528,64.36718029022217,64.39770159339905,64.42822289657593,64.4587441997528,64.48926550292968,64.51978680610657,64.55030810928345,64.58082941246032,64.6113507156372,64.64187201881408,64.67239332199097,64.70291462516785,64.73343592834472,64.7639572315216,64.79447853469848,64.82499983787537,64.85552114105224,64.88604244422912,64.916563747406,64.94708505058288,64.97760635375977,65.00812765693664,65.03864896011352,65.0691702632904,65.09969156646729,65.13021286964417,65.16073417282104,65.19125547599792,65.2217767791748,65.25229808235169,65.28281938552855,65.31334068870544,65.34386199188232,65.3743832950592,65.40490459823609,65.43542590141296,65.46594720458984,65.49646850776672,65.5269898109436,65.55751111412049,65.58803241729736,65.61855372047424,65.64907502365112,65.679596326828,65.71011763000487,65.74063893318176,65.77116023635864,65.80168153953552,65.8322028427124,65.86272414588927,65.89324544906616,65.92376675224304,65.95428805541992,65.98480935859679,66.01533066177367,66.04585196495056,66.07637326812744,66.10689457130432,66.13741587448119,66.16793717765808,66.19845848083496,66.22897978401184,66.25950108718872,66.29002239036559,66.32054369354248,66.35106499671936,66.38158629989624,66.41210760307311,66.44262890625,66.47315020942688,66.50367151260376,66.53419281578064,66.56471411895751,66.5952354221344,66.62575672531128,66.65627802848816,66.68679933166504,66.71732063484191,66.7478419380188,66.77836324119568,66.80888454437256,66.83940584754943,66.86992715072631,66.9004484539032,66.93096975708008,66.96149106025696,66.99201236343383,67.02253366661071,67.0530549697876,67.08357627296448,67.11409757614135,67.14461887931823,67.17514018249511,67.205661485672,67.23618278884888,67.26670409202575,67.29722539520263,67.32774669837951,67.3582680015564,67.38878930473328,67.41931060791015,67.44983191108703,67.48035321426391,67.5108745174408,67.54139582061767,67.57191712379455,67.60243842697143,67.63295973014831,67.6634810333252,67.69400233650207,67.72452363967895,67.75504494285583,67.78556624603272,67.8160875492096,67.84660885238647,67.87713015556335,67.90765145874023,67.93817276191712,67.968694065094,67.99921536827087,68.02973667144775,68.06025797462463,68.09077927780152,68.1213005809784,68.15182188415527,68.18234318733215,68.21286449050903,68.24338579368592,68.2739070968628,68.30442840003967,68.33494970321655,68.36547100639343,68.39599230957032,68.42651361274719,68.45703491592407,68.48755621910095,68.51807752227784,68.54859882545472,68.57912012863159,68.60964143180847,68.64016273498535,68.67068403816224,68.70120534133912,68.73172664451599,68.76224794769287,68.79276925086975,68.82329055404664,68.8538118572235,68.88433316040039,68.91485446357727,68.94537576675415,68.97589706993104,69.0064183731079,69.03693967628479,69.06746097946167,69.09798228263855,69.12850358581542,69.1590248889923,69.18954619216919,69.22006749534607,69.25058879852295,69.28111010169982,69.3116314048767,69.34215270805359,69.37267401123047,69.40319531440736,69.43371661758422,69.46423792076111,69.49475922393799,69.52528052711487,69.55580183029174,69.58632313346862,69.61684443664551,69.64736573982239,69.67788704299927,69.70840834617614,69.73892964935303,69.76945095252991,69.79997225570679,69.83049355888367,69.86101486206054,69.89153616523743,69.92205746841431,69.95257877159119,69.98310007476806,70.01362137794494,70.04414268112183,70.07466398429871,70.10518528747559,70.13570659065246,70.16622789382934,70.19674919700623,70.22727050018311,70.25779180335998,70.28831310653686,70.31883440971374,70.34935571289063,70.37987701606751,70.41039831924438,70.44091962242126,70.47144092559815,70.50196222877503,70.53248353195191,70.56300483512878,70.59352613830566,70.62404744148255,70.65456874465943,70.6850900478363,70.71561135101318,70.74613265419006,70.77665395736695,70.80717526054383,70.8376965637207,70.86821786689758,70.89873917007446,70.92926047325135,70.95978177642823,70.9903030796051,71.02082438278198,71.05134568595886,71.08186698913575,71.11238829231262,71.1429095954895,71.17343089866638,71.20395220184326,71.23447350502015,71.26499480819702,71.2955161113739,71.32603741455078,71.35655871772767,71.38708002090453,71.41760132408142,71.4481226272583,71.47864393043518,71.50916523361207,71.53968653678893,71.57020783996582,71.6007291431427,71.63125044631958,71.66177174949647,71.69229305267334,71.72281435585022,71.7533356590271,71.78385696220398,71.81437826538085,71.84489956855774,71.87542087173462,71.9059421749115,71.93646347808838,71.96698478126525,71.99750608444214,72.02802738761902,72.0585486907959,72.08906999397279,72.11959129714965,72.15011260032654,72.18063390350342,72.2111552066803,72.24167650985717,72.27219781303405,72.30271911621094,72.33324041938782,72.3637617225647,72.39428302574157,72.42480432891846,72.45532563209534,72.48584693527222,72.5163682384491,72.54688954162597,72.57741084480286,72.60793214797974,72.63845345115662,72.66897475433349,72.69949605751037,72.73001736068726,72.76053866386414,72.79105996704102,72.82158127021789,72.85210257339477,72.88262387657166,72.91314517974854,72.94366648292541,72.97418778610229,73.00470908927917,73.03523039245606,73.06575169563294,73.09627299880981,73.12679430198669,73.15731560516357,73.18783690834046,73.21835821151734,73.24887951469421,73.27940081787109,73.30992212104798,73.34044342422486,73.37096472740173,73.40148603057861,73.4320073337555,73.46252863693238,73.49304994010926,73.52357124328613,73.55409254646301,73.5846138496399,73.61513515281678,73.64565645599366,73.67617775917053,73.70669906234741,73.7372203655243,73.76774166870118,73.79826297187805,73.82878427505493,73.85930557823181,73.8898268814087,73.92034818458558,73.95086948776245,73.98139079093933,74.01191209411621,74.0424333972931,74.07295470046996,74.10347600364685,74.13399730682373,74.16451861000061,74.1950399131775,74.22556121635436,74.25608251953125,74.28660382270813,74.31712512588501,74.3476464290619,74.37816773223877,74.40868903541565,74.43921033859253,74.46973164176941,74.50025294494628,74.53077424812317,74.56129555130005,74.59181685447693,74.62233815765381,74.65285946083068,74.68338076400757,74.71390206718445,74.74442337036133,74.77494467353822,74.80546597671508,74.83598727989197,74.86650858306885,74.89702988624573,74.9275511894226,74.95807249259948,74.98859379577637,75.01911509895325,75.04963640213013,75.080157705307,75.11067900848388,75.14120031166077,75.17172161483765,75.20224291801452,75.2327642211914,75.26328552436829,75.29380682754517,75.32432813072205,75.35484943389892,75.3853707370758,75.41589204025269,75.44641334342957,75.47693464660645,75.50745594978332,75.5379772529602,75.56849855613709,75.59901985931397,75.62954116249084,75.66006246566772,75.6905837688446,75.72110507202149,75.75162637519837,75.78214767837524,75.81266898155212,75.843190284729,75.87371158790589,75.90423289108277,75.93475419425964,75.96527549743652,75.9957968006134,76.02631810379029,76.05683940696716,76.08736071014404,76.11788201332092,76.1484033164978,76.17892461967469,76.20944592285156,76.23996722602844,76.27048852920532,76.3010098323822,76.33153113555908,76.36205243873596,76.39257374191284,76.42309504508972,76.4536163482666,76.48413765144348,76.51465895462036,76.54518025779724,76.57570156097412,76.60622286415101,76.63674416732788,76.66726547050476,76.69778677368164,76.72830807685853,76.7588293800354,76.78935068321228,76.81987198638916,76.85039328956604,76.88091459274293,76.9114358959198,76.94195719909668,76.97247850227356,77.00299980545044,77.03352110862733,77.0640424118042,77.09456371498108,77.12508501815796,77.15560632133484,77.18612762451171,77.2166489276886,77.24717023086548,77.27769153404236,77.30821283721924,77.33873414039611,77.369255443573,77.39977674674988,77.43029804992676,77.46081935310364,77.49134065628051,77.5218619594574,77.55238326263428,77.58290456581116,77.61342586898803,77.64394717216491,77.6744684753418,77.70498977851868,77.73551108169556,77.76603238487243,77.79655368804931,77.8270749912262,77.85759629440308,77.88811759757995,77.91863890075683,77.94916020393372,77.9796815071106,78.01020281028748,78.04072411346435,78.07124541664123,78.10176671981812,78.132288022995,78.16280932617188,78.19333062934875,78.22385193252563,78.25437323570252,78.2848945388794,78.31541584205627,78.34593714523315,78.37645844841003,78.40697975158692,78.4375010547638,78.46802235794067,78.49854366111755,78.52906496429443,78.55958626747132,78.5901075706482,78.62062887382507,78.65115017700195,78.68167148017884,78.71219278335572,78.74271408653259,78.77323538970947,78.80375669288635,78.83427799606324,78.86479929924012,78.89532060241699,78.92584190559387,78.95636320877075,78.98688451194764,79.0174058151245,79.04792711830139,79.07844842147827,79.10896972465515,79.13949102783204,79.1700123310089,79.20053363418579,79.23105493736267,79.26157624053955,79.29209754371644,79.3226188468933,79.35314015007019,79.38366145324707,79.41418275642395,79.44470405960082,79.4752253627777,79.50574666595459,79.53626796913147,79.56678927230836,79.59731057548522,79.6278318786621,79.65835318183899,79.68887448501587,79.71939578819276,79.74991709136962,79.78043839454651,79.81095969772339,79.84148100090027,79.87200230407714,79.90252360725403,79.93304491043091,79.96356621360779,79.99408751678467,80.02460881996154,80.05513012313843,80.08565142631531,80.11617272949219,80.14669403266906,80.17721533584594,80.20773663902283,80.23825794219971,80.26877924537659,80.29930054855346,80.32982185173034,80.36034315490723,80.39086445808411,80.42138576126099,80.45190706443786,80.48242836761474,80.51294967079163,80.54347097396851,80.57399227714538,80.60451358032226,80.63503488349915,80.66555618667603,80.69607748985291,80.72659879302978,80.75712009620666,80.78764139938355,80.81816270256043,80.84868400573731,80.87920530891418,80.90972661209106,80.94024791526795,80.97076921844483,81.0012905216217,81.03181182479858,81.06233312797546,81.09285443115235,81.12337573432923,81.1538970375061,81.18441834068298,81.21493964385986,81.24546094703675,81.27598225021362,81.3065035533905,81.33702485656738,81.36754615974426,81.39806746292115,81.42858876609802,81.4591100692749,81.48963137245178,81.52015267562867,81.55067397880555,81.58119528198242,81.6117165851593,81.64223788833618,81.67275919151307,81.70328049468993,81.73380179786682,81.7643231010437,81.79484440422058,81.82536570739747,81.85588701057434,81.88640831375122,81.9169296169281,81.94745092010498,81.97797222328187,82.00849352645874,82.03901482963562,82.0695361328125,82.10005743598938,82.13057873916625,82.16110004234314,82.19162134552002,82.2221426486969,82.25266395187379,82.28318525505065,82.31370655822754,82.34422786140442,82.3747491645813,82.40527046775817,82.43579177093505,82.46631307411194,82.49683437728882,82.5273556804657,82.55787698364257,82.58839828681946,82.61891958999634,82.64944089317322,82.6799621963501,82.71048349952697,82.74100480270386,82.77152610588074,82.80204740905762,82.83256871223449,82.86309001541137,82.89361131858826,82.92413262176514,82.95465392494202,82.98517522811889,83.01569653129577,83.04621783447266,83.07673913764954,83.10726044082642,83.13778174400329,83.16830304718017,83.19882435035706,83.22934565353394,83.25986695671081,83.29038825988769,83.32090956306457,83.35143086624146,83.38195216941834,83.41247347259521,83.44299477577209,83.47351607894898,83.50403738212586,83.53455868530274,83.56507998847961,83.5956012916565,83.62612259483338,83.65664389801026,83.68716520118713,83.71768650436401,83.7482078075409,83.77872911071778,83.80925041389466,83.83977171707153,83.87029302024841,83.9008143234253,83.93133562660218,83.96185692977905,83.99237823295593,84.02289953613281,84.0534208393097,84.08394214248658,84.11446344566345,84.14498474884033,84.17550605201721,84.2060273551941,84.23654865837098,84.26706996154785,84.29759126472473,84.32811256790161,84.3586338710785,84.38915517425536,84.41967647743225,84.45019778060913,84.48071908378601,84.5112403869629,84.54176169013977,84.57228299331665,84.60280429649353,84.63332559967041,84.6638469028473,84.69436820602417,84.72488950920105,84.75541081237793,84.78593211555481,84.81645341873168,84.84697472190857,84.87749602508545,84.90801732826233,84.93853863143922,84.96905993461608,84.99958123779297,85.03010254096985,85.06062384414673,85.0911451473236,85.12166645050048,85.15218775367737,85.18270905685425,85.21323036003113,85.243751663208,85.27427296638488,85.30479426956177,85.33531557273865,85.36583687591553,85.3963581790924,85.42687948226929,85.45740078544617,85.48792208862305,85.51844339179992,85.5489646949768,85.57948599815369,85.61000730133057,85.64052860450745,85.67104990768432,85.7015712108612,85.73209251403809,85.76261381721497,85.79313512039185,85.82365642356872,85.8541777267456,85.88469902992249,85.91522033309937,85.94574163627624,85.97626293945312,86.00678424263,86.03730554580689,86.06782684898377,86.09834815216064,86.12886945533752,86.1593907585144,86.18991206169129,86.22043336486816,86.25095466804504,86.28147597122192,86.3119972743988,86.34251857757569,86.37303988075256,86.40356118392944,86.43408248710632,86.4646037902832,86.49512509346009,86.52564639663696,86.55616769981384,86.58668900299072,86.6172103061676,86.64773160934448,86.67825291252136,86.70877421569824,86.73929551887512,86.76981682205201,86.80033812522888,86.83085942840576,86.86138073158264,86.89190203475953,86.92242333793641,86.95294464111328,86.98346594429016,87.01398724746704,87.04450855064393,87.0750298538208,87.10555115699768,87.13607246017456,87.16659376335144,87.19711506652833,87.2276363697052,87.25815767288208,87.28867897605896,87.31920027923584,87.34972158241271,87.3802428855896,87.41076418876648,87.44128549194336,87.47180679512024,87.50232809829711,87.532849401474,87.56337070465088,87.59389200782776,87.62441331100464,87.65493461418151,87.6854559173584,87.71597722053528,87.74649852371216,87.77701982688903,87.80754113006591,87.8380624332428,87.86858373641968,87.89910503959656,87.92962634277343,87.96014764595031,87.9906689491272,88.02119025230408,88.05171155548096,88.08223285865783,88.11275416183472,88.1432754650116,88.17379676818848,88.20431807136535,88.23483937454223,88.26536067771912,88.295881980896,88.32640328407288,88.35692458724975,88.38744589042663,88.41796719360352,88.4484884967804,88.47900979995728,88.50953110313415,88.54005240631103,88.57057370948792,88.6010950126648,88.63161631584167,88.66213761901855,88.69265892219543,88.72318022537232,88.7537015285492,88.78422283172607,88.81474413490295,88.84526543807984,88.87578674125672,88.90630804443359,88.93682934761047,88.96735065078735,88.99787195396424,89.02839325714112,89.05891456031799,89.08943586349487,89.11995716667175,89.15047846984864,89.18099977302552,89.21152107620239,89.24204237937927,89.27256368255615,89.30308498573304,89.3336062889099,89.36412759208679,89.39464889526367,89.42517019844055,89.45569150161744,89.4862128047943,89.51673410797119,89.54725541114807,89.57777671432495,89.60829801750184,89.6388193206787,89.66934062385559,89.69986192703247,89.73038323020936,89.76090453338622,89.7914258365631,89.82194713973999,89.85246844291687,89.88298974609376,89.91351104927062,89.94403235244751,89.97455365562439,90.00507495880127,90.03559626197814,90.06611756515503,90.09663886833191,90.12716017150879,90.15768147468567,90.18820277786254,90.21872408103943,90.24924538421631,90.27976668739319,90.31028799057007,90.34080929374694,90.37133059692383,90.40185190010071,90.43237320327759,90.46289450645446,90.49341580963134,90.52393711280823,90.55445841598511,90.58497971916199,90.61550102233886,90.64602232551574,90.67654362869263,90.70706493186951,90.7375862350464,90.76810753822326,90.79862884140015,90.82915014457703,90.85967144775391,90.89019275093078,90.92071405410766,90.95123535728455,90.98175666046143,91.01227796363831,91.04279926681518,91.07332056999206,91.10384187316895,91.13436317634583,91.1648844795227,91.19540578269958,91.22592708587646,91.25644838905335,91.28696969223023,91.3174909954071,91.34801229858398,91.37853360176086,91.40905490493775,91.43957620811463,91.4700975112915,91.50061881446838,91.53114011764526,91.56166142082215,91.59218272399902,91.6227040271759,91.65322533035278,91.68374663352967,91.71426793670655,91.74478923988342,91.7753105430603,91.80583184623718,91.83635314941407,91.86687445259095,91.89739575576782,91.9279170589447,91.95843836212158,91.98895966529847,92.01948096847534,92.05000227165222,92.0805235748291,92.11104487800598,92.14156618118287,92.17208748435974,92.20260878753662,92.2331300907135,92.26365139389038,92.29417269706725,92.32469400024414,92.35521530342102,92.3857366065979,92.41625790977479,92.44677921295165,92.47730051612854,92.50782181930542,92.5383431224823,92.56886442565919,92.59938572883605,92.62990703201294,92.66042833518982,92.6909496383667,92.72147094154357,92.75199224472046,92.78251354789734,92.81303485107422,92.8435561542511,92.87407745742797,92.90459876060486,92.93512006378174,92.96564136695862,92.9961626701355,93.02668397331237,93.05720527648926,93.08772657966614,93.11824788284302,93.14876918601989,93.17929048919677,93.20981179237366,93.24033309555054,93.27085439872742,93.30137570190429,93.33189700508117,93.36241830825806,93.39293961143494,93.42346091461181,93.45398221778869,93.48450352096557,93.51502482414246,93.54554612731934,93.57606743049621,93.60658873367309,93.63711003684998,93.66763134002686,93.69815264320374,93.72867394638061,93.7591952495575,93.78971655273438,93.82023785591126,93.85075915908813,93.88128046226501,93.9118017654419,93.94232306861878,93.97284437179566,94.00336567497253,94.03388697814941,94.0644082813263,94.09492958450318,94.12545088768006,94.15597219085693,94.18649349403381,94.2170147972107,94.24753610038758,94.27805740356445,94.30857870674133,94.33910000991821,94.3696213130951,94.40014261627198,94.43066391944885,94.46118522262573,94.49170652580261,94.5222278289795,94.55274913215638,94.58327043533325,94.61379173851013,94.64431304168701,94.6748343448639,94.70535564804077,94.73587695121765,94.76639825439453,94.79691955757141,94.8274408607483,94.85796216392517,94.88848346710205,94.91900477027893,94.94952607345581,94.98004737663268,95.01056867980957,95.04108998298645,95.07161128616333,95.10213258934021,95.13265389251708,95.16317519569397,95.19369649887085,95.22421780204773,95.25473910522462,95.28526040840148,95.31578171157837,95.34630301475525,95.37682431793213,95.407345621109,95.43786692428588,95.46838822746277,95.49890953063965,95.52943083381653,95.5599521369934,95.59047344017029,95.62099474334717,95.65151604652405,95.68203734970093,95.7125586528778,95.74307995605469,95.77360125923157,95.80412256240845,95.83464386558532,95.8651651687622,95.89568647193909,95.92620777511597,95.95672907829285,95.98725038146972,96.0177716846466,96.04829298782349,96.07881429100037,96.10933559417724,96.13985689735412,96.170378200531,96.20089950370789,96.23142080688477,96.26194211006164,96.29246341323852,96.3229847164154,96.35350601959229,96.38402732276917,96.41454862594604,96.44506992912292,96.4755912322998,96.50611253547669,96.53663383865356,96.56715514183044,96.59767644500732,96.6281977481842,96.65871905136109,96.68924035453796,96.71976165771484,96.75028296089172,96.7808042640686,96.81132556724549,96.84184687042236,96.87236817359924,96.90288947677612,96.93341077995301,96.96393208312988,96.99445338630676,97.02497468948364,97.05549599266052,97.08601729583741,97.11653859901428,97.14705990219116,97.17758120536804,97.20810250854493,97.2386238117218,97.26914511489868,97.29966641807556,97.33018772125244,97.36070902442933,97.3912303276062,97.42175163078308,97.45227293395996,97.48279423713684,97.51331554031373,97.5438368434906,97.57435814666748,97.60487944984436,97.63540075302124,97.66592205619811,97.696443359375,97.72696466255188,97.75748596572876,97.78800726890564,97.81852857208251,97.8490498752594,97.87957117843628,97.91009248161316,97.94061378479005,97.97113508796691,98.0016563911438,98.03217769432068,98.06269899749756,98.09322030067443,98.12374160385131,98.1542629070282,98.18478421020508,98.21530551338196,98.24582681655883,98.27634811973572,98.3068694229126,98.33739072608948,98.36791202926635,98.39843333244323,98.42895463562012,98.459475938797,98.48999724197388,98.52051854515075,98.55103984832763,98.58156115150452,98.6120824546814,98.64260375785828,98.67312506103515,98.70364636421203,98.73416766738892,98.7646889705658,98.79521027374267,98.82573157691955,98.85625288009643,98.88677418327332,98.9172954864502,98.94781678962707,98.97833809280395,99.00885939598083,99.03938069915772,99.0699020023346,99.10042330551147,99.13094460868835,99.16146591186524,99.19198721504212,99.22250851821899,99.25302982139587,99.28355112457275,99.31407242774964,99.34459373092652,99.37511503410339,99.40563633728027,99.43615764045715,99.46667894363404,99.49720024681092,99.52772154998779,99.55824285316467,99.58876415634155,99.61928545951844,99.6498067626953,99.68032806587219,99.71084936904907,99.74137067222595,99.77189197540284,99.8024132785797,99.83293458175659,99.86345588493347,99.89397718811036,99.92449849128722,99.9550197944641,99.98554109764099,100.01606240081787,100.04658370399476,100.07710500717162,100.10762631034851,100.13814761352539,100.16866891670227,100.19919021987916,100.22971152305603,100.26023282623291,100.29075412940979,100.32127543258667,100.35179673576354,100.38231803894043,100.41283934211731,100.44336064529419,100.47388194847107,100.50440325164794,100.53492455482483,100.56544585800171,100.59596716117859,100.62648846435548,100.65700976753234,100.68753107070923,100.71805237388611,100.74857367706299,100.77909498023986,100.80961628341674,100.84013758659363,100.87065888977051,100.9011801929474,100.93170149612426,100.96222279930114,100.99274410247803,101.02326540565491,101.05378670883178,101.08430801200866,101.11482931518555,101.14535061836243,101.17587192153931,101.20639322471618,101.23691452789306,101.26743583106995,101.29795713424683,101.32847843742371,101.35899974060058,101.38952104377746,101.42004234695435,101.45056365013123,101.4810849533081,101.51160625648498,101.54212755966186,101.57264886283875,101.60317016601563,101.6336914691925,101.66421277236938,101.69473407554626,101.72525537872315,101.75577668190003,101.7862979850769,101.81681928825378,101.84734059143067,101.87786189460755,101.90838319778442,101.9389045009613,101.96942580413818,101.99994710731507,102.03046841049195,102.06098971366882,102.0915110168457,102.12203232002258,102.15255362319947,102.18307492637634,102.21359622955322,102.2441175327301,102.27463883590698,102.30516013908387,102.33568144226074,102.36620274543762,102.3967240486145,102.42724535179138,102.45776665496827,102.48828795814514,102.51880926132202,102.5493305644989,102.57985186767579,102.61037317085265,102.64089447402954,102.67141577720642,102.7019370803833,102.73245838356019,102.76297968673705,102.79350098991394,102.82402229309082,102.8545435962677,102.88506489944459,102.91558620262145,102.94610750579834,102.97662880897522,103.0071501121521,103.03767141532897,103.06819271850586,103.09871402168274,103.12923532485962,103.1597566280365,103.19027793121337,103.22079923439026,103.25132053756714,103.28184184074402,103.31236314392089,103.34288444709777,103.37340575027466,103.40392705345154,103.43444835662842,103.46496965980529,103.49549096298217,103.52601226615906,103.55653356933594,103.58705487251282,103.61757617568969,103.64809747886657,103.67861878204346,103.70914008522034,103.73966138839721,103.77018269157409,103.80070399475098,103.83122529792786,103.86174660110474,103.89226790428161,103.9227892074585,103.95331051063538,103.98383181381226,104.01435311698914,104.04487442016601,104.0753957233429,104.10591702651978,104.13643832969666,104.16695963287353,104.19748093605041,104.2280022392273,104.25852354240418,104.28904484558106,104.31956614875793,104.35008745193481,104.3806087551117,104.41113005828858,104.44165136146545,104.47217266464233,104.50269396781921,104.5332152709961,104.56373657417298,104.59425787734985,104.62477918052673,104.65530048370361,104.6858217868805,104.71634309005738,104.74686439323425,104.77738569641113,104.80790699958801,104.8384283027649,104.86894960594176,104.89947090911865,104.92999221229553,104.96051351547241,104.9910348186493,105.02155612182617,105.05207742500305,105.08259872817993,105.11312003135681,105.1436413345337,105.17416263771057,105.20468394088745,105.23520524406433,105.26572654724121,105.29624785041808,105.32676915359497,105.35729045677185,105.38781175994873,105.41833306312562,105.44885436630248,105.47937566947937,105.50989697265625,105.54041827583313,105.57093957901002,105.60146088218688,105.63198218536377,105.66250348854065,105.69302479171753,105.7235460948944,105.75406739807129,105.78458870124817,105.81511000442505,105.84563130760193,105.8761526107788,105.90667391395569,105.93719521713257,105.96771652030945,105.99823782348632,106.0287591266632,106.05928042984009,106.08980173301697,106.12032303619385,106.15084433937072,106.1813656425476,106.21188694572449,106.24240824890137,106.27292955207825,106.30345085525512,106.333972158432,106.36449346160889,106.39501476478577,106.42553606796264,106.45605737113952,106.4865786743164,106.51709997749329,106.54762128067017,106.57814258384704,106.60866388702392,106.6391851902008,106.66970649337769,106.70022779655457,106.73074909973144,106.76127040290832,106.7917917060852,106.82231300926209,106.85283431243896,106.88335561561584,106.91387691879272,106.9443982219696,106.97491952514649,107.00544082832336,107.03596213150024,107.06648343467712,107.09700473785401,107.12752604103088,107.15804734420776,107.18856864738464,107.21908995056152,107.24961125373841,107.28013255691528,107.31065386009216,107.34117516326904,107.37169646644593,107.40221776962281,107.43273907279968,107.46326037597656,107.49378167915344,107.52430298233033,107.5548242855072,107.58534558868408,107.61586689186096,107.64638819503784,107.67690949821473,107.7074308013916,107.73795210456848,107.76847340774536,107.79899471092224,107.82951601409913,107.860037317276,107.89055862045288,107.92107992362976,107.95160122680664,107.98212252998351,108.0126438331604,108.04316513633728,108.07368643951416,108.10420774269105,108.13472904586791,108.1652503490448,108.19577165222168,108.22629295539856,108.25681425857543,108.28733556175231,108.3178568649292,108.34837816810608,108.37889947128296,108.40942077445983,108.43994207763672,108.4704633808136,108.50098468399048,108.53150598716736,108.56202729034423,108.59254859352112,108.623069896698,108.65359119987488,108.68411250305175,108.71463380622863,108.74515510940552,108.7756764125824,108.80619771575928,108.83671901893615,108.86724032211303,108.89776162528992,108.9282829284668,108.95880423164368,108.98932553482055,109.01984683799743,109.05036814117432,109.0808894443512,109.11141074752807,109.14193205070495,109.17245335388183,109.20297465705872,109.2334959602356,109.26401726341247,109.29453856658935,109.32505986976624,109.35558117294312,109.38610247611999,109.41662377929687,109.44714508247375,109.47766638565064,109.50818768882752,109.53870899200439,109.56923029518127,109.59975159835815,109.63027290153504,109.66079420471192,109.69131550788879,109.72183681106567,109.75235811424255,109.78287941741944,109.8134007205963,109.84392202377319,109.87444332695007,109.90496463012695,109.93548593330384,109.9660072364807,109.99652853965759,110.02704984283447,110.05757114601136,110.08809244918824,110.1186137523651,110.14913505554199,110.17965635871887,110.21017766189576,110.24069896507262,110.27122026824951,110.30174157142639,110.33226287460327,110.36278417778016,110.39330548095703,110.42382678413391,110.45434808731079,110.48486939048767,110.51539069366456,110.54591199684143,110.57643330001831,110.60695460319519,110.63747590637207,110.66799720954894,110.69851851272583,110.72903981590271,110.75956111907959,110.79008242225648,110.82060372543334,110.85112502861023,110.88164633178711,110.91216763496399,110.94268893814086,110.97321024131774,111.00373154449463,111.03425284767151,111.0647741508484,111.09529545402526,111.12581675720214,111.15633806037903,111.18685936355591,111.2173806667328,111.24790196990966,111.27842327308655,111.30894457626343,111.33946587944031,111.36998718261718,111.40050848579406,111.43102978897095,111.46155109214783,111.49207239532471,111.52259369850158,111.55311500167846,111.58363630485535,111.61415760803223,111.64467891120911,111.67520021438598,111.70572151756286,111.73624282073975,111.76676412391663,111.7972854270935,111.82780673027038,111.85832803344726,111.88884933662415,111.91937063980103,111.9498919429779,111.98041324615478,112.01093454933167,112.04145585250855,112.07197715568542,112.1024984588623,112.13301976203918,112.16354106521607,112.19406236839295,112.22458367156982,112.2551049747467,112.28562627792358,112.31614758110047,112.34666888427735,112.37719018745422,112.4077114906311,112.43823279380798,112.46875409698487,112.49927540016174,112.52979670333862,112.5603180065155,112.59083930969238,112.62136061286927,112.65188191604614,112.68240321922302,112.7129245223999,112.74344582557679,112.77396712875367,112.80448843193054,112.83500973510742,112.8655310382843,112.89605234146119,112.92657364463805,112.95709494781494,112.98761625099182,113.0181375541687,113.04865885734559,113.07918016052245,113.10970146369934,113.14022276687622,113.1707440700531,113.20126537322997,113.23178667640686,113.26230797958374,113.29282928276062,113.3233505859375,113.35387188911437,113.38439319229126,113.41491449546814,113.44543579864502,113.4759571018219,113.50647840499877,113.53699970817566,113.56752101135254,113.59804231452942,113.62856361770629,113.65908492088317,113.68960622406006,113.72012752723694,113.75064883041382,113.78117013359069,113.81169143676757,113.84221273994446,113.87273404312134,113.90325534629822,113.93377664947509,113.96429795265198,113.99481925582886,114.02534055900574,114.05586186218261,114.08638316535949,114.11690446853638,114.14742577171326,114.17794707489014,114.20846837806701,114.2389896812439,114.26951098442078,114.30003228759766,114.33055359077453,114.36107489395141,114.3915961971283,114.42211750030518,114.45263880348206,114.48316010665893,114.51368140983581,114.5442027130127,114.57472401618958,114.60524531936646,114.63576662254333,114.66628792572021,114.6968092288971,114.72733053207398,114.75785183525085,114.78837313842773,114.81889444160461,114.8494157447815,114.87993704795838,114.91045835113525,114.94097965431213,114.97150095748901,115.0020222606659,115.03254356384278,115.06306486701965,115.09358617019653,115.12410747337341,115.1546287765503,115.18515007972717,115.21567138290405,115.24619268608093,115.27671398925781,115.3072352924347,115.33775659561157,115.36827789878845,115.39879920196533,115.42932050514221,115.4598418083191,115.49036311149597,115.52088441467285,115.55140571784973,115.58192702102662,115.61244832420348,115.64296962738037,115.67349093055725,115.70401223373413,115.73453353691102,115.76505484008788,115.79557614326477,115.82609744644165,115.85661874961853,115.8871400527954,115.91766135597229,115.94818265914917,115.97870396232605,116.00922526550293,116.0397465686798,116.07026787185669,116.10078917503357,116.13131047821045,116.16183178138733,116.1923530845642,116.22287438774109,116.25339569091797,116.28391699409485,116.31443829727172,116.3449596004486,116.37548090362549,116.40600220680237,116.43652350997925,116.46704481315612,116.497566116333,116.52808741950989,116.55860872268677,116.58913002586365,116.61965132904052,116.6501726322174,116.68069393539429,116.71121523857117,116.74173654174804,116.77225784492492,116.8027791481018,116.83330045127869,116.86382175445557,116.89434305763244,116.92486436080932,116.9553856639862,116.98590696716309,117.01642827033996,117.04694957351684,117.07747087669372,117.1079921798706,117.13851348304749,117.16903478622436,117.19955608940124,117.23007739257812,117.26059869575501,117.29111999893189,117.32164130210876,117.35216260528564,117.38268390846252,117.41320521163941,117.44372651481628,117.47424781799316,117.50476912117004,117.53529042434693,117.56581172752381,117.59633303070068,117.62685433387756,117.65737563705444,117.68789694023133,117.71841824340821,117.74893954658508,117.77946084976196,117.80998215293884,117.84050345611573,117.8710247592926,117.90154606246948,117.93206736564636,117.96258866882324,117.99310997200013,118.023631275177,118.05415257835388,118.08467388153076,118.11519518470764,118.14571648788451,118.1762377910614,118.20675909423828,118.23728039741516,118.26780170059205,118.29832300376891,118.3288443069458,118.35936561012268,118.38988691329956,118.42040821647645,118.45092951965331,118.4814508228302,118.51197212600708,118.54249342918396,118.57301473236083,118.60353603553772,118.6340573387146,118.66457864189148,118.69509994506836,118.72562124824523,118.75614255142212,118.786663854599,118.81718515777588,118.84770646095276,118.87822776412963,118.90874906730652,118.9392703704834,118.96979167366028,119.00031297683715,119.03083428001403,119.06135558319092,119.0918768863678,119.12239818954468,119.15291949272155,119.18344079589843,119.21396209907532,119.2444834022522,119.27500470542907,119.30552600860595,119.33604731178283,119.36656861495972,119.3970899181366,119.42761122131347,119.45813252449035,119.48865382766724,119.51917513084412,119.549696434021,119.58021773719787,119.61073904037475,119.64126034355164,119.67178164672852,119.70230294990539,119.73282425308227,119.76334555625915,119.79386685943604,119.82438816261292,119.85490946578979,119.88543076896667,119.91595207214355,119.94647337532044,119.97699467849732,120.00751598167419,120.03803728485107,120.06855858802795,120.09907989120484,120.1296011943817,120.16012249755859,120.19064380073547,120.22116510391236,120.25168640708924,120.2822077102661,120.31272901344299,120.34325031661987,120.37377161979676,120.40429292297362,120.43481422615051,120.46533552932739,120.49585683250427,120.52637813568116,120.55689943885803,120.58742074203491,120.61794204521179,120.64846334838867,120.67898465156556,120.70950595474243,120.74002725791931,120.77054856109619,120.80106986427307,120.83159116744994,120.86211247062683,120.89263377380371,120.92315507698059,120.95367638015748,120.98419768333434,121.01471898651123,121.04524028968811,121.07576159286499,121.10628289604188,121.13680419921874,121.16732550239563,121.19784680557251,121.2283681087494,121.25888941192626,121.28941071510314,121.31993201828003,121.35045332145691,121.3809746246338,121.41149592781066,121.44201723098755,121.47253853416443,121.50305983734131,121.5335811405182,121.56410244369506,121.59462374687195,121.62514505004883,121.65566635322571,121.68618765640258,121.71670895957946,121.74723026275635,121.77775156593323,121.80827286911011,121.83879417228698,121.86931547546386,121.89983677864075,121.93035808181763,121.9608793849945,121.99140068817138,122.02192199134826,122.05244329452515,122.08296459770203,122.1134859008789,122.14400720405578,122.17452850723267,122.20504981040955,122.23557111358643,122.2660924167633,122.29661371994018,122.32713502311707,122.35765632629395,122.38817762947082,122.4186989326477,122.44922023582458,122.47974153900147,122.51026284217835,122.54078414535522,122.5713054485321,122.60182675170898,122.63234805488587,122.66286935806275,122.69339066123962,122.7239119644165,122.75443326759338,122.78495457077027,122.81547587394714,122.84599717712402,122.8765184803009,122.90703978347779,122.93756108665467,122.96808238983154,122.99860369300842,123.0291249961853,123.05964629936219,123.09016760253905,123.12068890571594,123.15121020889282,123.1817315120697,123.21225281524659,123.24277411842345,123.27329542160034,123.30381672477722,123.3343380279541,123.36485933113099,123.39538063430786,123.42590193748474,123.45642324066162,123.4869445438385,123.51746584701537,123.54798715019226,123.57850845336914,123.60902975654602,123.6395510597229,123.67007236289977,123.70059366607666,123.73111496925354,123.76163627243042,123.7921575756073,123.82267887878417,123.85320018196106,123.88372148513794,123.91424278831482,123.94476409149169,123.97528539466857,124.00580669784546,124.03632800102234,124.06684930419922,124.09737060737609,124.12789191055298,124.15841321372986,124.18893451690674,124.21945582008361,124.24997712326049,124.28049842643738,124.31101972961426,124.34154103279114,124.37206233596801,124.4025836391449,124.43310494232178,124.46362624549866,124.49414754867554,124.52466885185241,124.5551901550293,124.58571145820618,124.61623276138306,124.64675406455993,124.67727536773681,124.7077966709137,124.73831797409058,124.76883927726746,124.79936058044433,124.82988188362121,124.8604031867981,124.89092448997498,124.92144579315186,124.95196709632873,124.98248839950561,125.0130097026825,125.04353100585938,125.07405230903625,125.10457361221313,125.13509491539001,125.1656162185669,125.19613752174378,125.22665882492065,125.25718012809753,125.28770143127441,125.3182227344513,125.34874403762817,125.37926534080505,125.40978664398193,125.44030794715881,125.4708292503357,125.50135055351257,125.53187185668945,125.56239315986633,125.59291446304321,125.6234357662201,125.65395706939697,125.68447837257385,125.71499967575073,125.74552097892762,125.77604228210448,125.80656358528137,125.83708488845825,125.86760619163513,125.89812749481202,125.92864879798888,125.95917010116577,125.98969140434265,126.02021270751953,126.05073401069642,126.08125531387329,126.11177661705017,126.14229792022705,126.17281922340393,126.2033405265808,126.23386182975769,126.26438313293457,126.29490443611145,126.32542573928833,126.3559470424652,126.38646834564209,126.41698964881897,126.44751095199585,126.47803225517274,126.5085535583496,126.53907486152649,126.56959616470337,126.60011746788025,126.63063877105712,126.661160074234,126.69168137741089,126.72220268058777,126.75272398376465,126.78324528694152,126.8137665901184,126.84428789329529,126.87480919647217,126.90533049964904,126.93585180282592,126.9663731060028,126.99689440917969,127.02741571235657,127.05793701553344,127.08845831871032,127.1189796218872,127.14950092506409,127.18002222824097,127.21054353141784,127.24106483459472,127.2715861377716,127.30210744094849,127.33262874412536,127.36315004730224,127.39367135047912,127.42419265365601,127.45471395683289,127.48523526000976,127.51575656318664,127.54627786636352,127.57679916954041,127.60732047271729,127.63784177589416,127.66836307907104,127.69888438224793,127.72940568542481,127.75992698860168,127.79044829177856,127.82096959495544,127.85149089813233,127.88201220130921,127.91253350448608,127.94305480766296,127.97357611083984,128.0040974140167,128.03461871719358,128.06514002037048,128.09566132354735,128.12618262672424,128.1567039299011,128.18722523307798,128.21774653625488,128.24826783943175,128.27878914260864,128.3093104457855,128.33983174896238,128.37035305213928,128.40087435531615,128.43139565849305,128.4619169616699,128.49243826484678,128.52295956802368,128.55348087120055,128.58400217437745,128.61452347755431,128.64504478073118,128.67556608390808,128.70608738708495,128.73660869026185,128.76712999343872,128.79765129661558,128.82817259979248,128.85869390296935,128.88921520614622,128.91973650932312,128.95025781249998,128.98077911567688,129.01130041885375,129.04182172203062,129.07234302520752,129.10286432838438,129.13338563156128,129.16390693473815,129.19442823791502,129.22494954109192,129.25547084426879,129.28599214744568,129.31651345062255,129.34703475379942,129.37755605697632,129.4080773601532,129.43859866333008,129.46911996650695,129.49964126968382,129.53016257286072,129.5606838760376,129.59120517921446,129.62172648239135,129.65224778556822,129.68276908874512,129.713290391922,129.74381169509886,129.77433299827575,129.80485430145262,129.83537560462952,129.8658969078064,129.89641821098326,129.92693951416015,129.95746081733702,129.98798212051392,130.0185034236908,130.04902472686766,130.07954603004455,130.11006733322142,130.14058863639832,130.1711099395752,130.20163124275206,130.23215254592895,130.26267384910582,130.2931951522827,130.3237164554596,130.35423775863646,130.38475906181336,130.41528036499022,130.4458016681671,130.476322971344,130.50684427452086,130.53736557769776,130.56788688087462,130.5984081840515,130.6289294872284,130.65945079040526,130.68997209358216,130.72049339675903,130.7510146999359,130.7815360031128,130.81205730628966,130.84257860946656,130.87309991264343,130.9036212158203,130.9341425189972,130.96466382217406,130.99518512535096,131.02570642852783,131.0562277317047,131.0867490348816,131.11727033805846,131.14779164123533,131.17831294441223,131.2088342475891,131.239355550766,131.26987685394286,131.30039815711973,131.33091946029663,131.3614407634735,131.3919620666504,131.42248336982726,131.45300467300413,131.48352597618103,131.5140472793579,131.5445685825348,131.57508988571166,131.60561118888853,131.63613249206543,131.6666537952423,131.6971750984192,131.72769640159606,131.75821770477293,131.78873900794983,131.8192603111267,131.84978161430357,131.88030291748046,131.91082422065733,131.94134552383423,131.9718668270111,132.002388130188,132.03290943336486,132.06343073654173,132.09395203971863,132.1244733428955,132.1549946460724,132.18551594924926,132.21603725242613,132.24655855560303,132.2770798587799,132.3076011619568,132.33812246513367,132.36864376831053,132.39916507148743,132.4296863746643,132.4602076778412,132.49072898101807,132.52125028419493,132.55177158737183,132.5822928905487,132.6128141937256,132.64333549690247,132.67385680007934,132.70437810325623,132.7348994064331,132.76542070960997,132.79594201278687,132.82646331596374,132.85698461914063,132.8875059223175,132.91802722549437,132.94854852867127,132.97906983184814,133.00959113502503,133.0401124382019,133.07063374137877,133.10115504455567,133.13167634773254,133.16219765090943,133.1927189540863,133.22324025726317,133.25376156044007,133.28428286361694,133.31480416679383,133.3453254699707,133.37584677314757,133.40636807632447,133.43688937950134,133.46741068267823,133.4979319858551,133.52845328903197,133.55897459220887,133.58949589538574,133.6200171985626,133.6505385017395,133.68105980491637,133.71158110809327,133.74210241127014,133.772623714447,133.8031450176239,133.83366632080077,133.86418762397767,133.89470892715454,133.9252302303314,133.9557515335083,133.98627283668517,134.01679413986207,134.04731544303894,134.0778367462158,134.1083580493927,134.13887935256957,134.16940065574647,134.19992195892334,134.2304432621002,134.2609645652771,134.29148586845398,134.32200717163084,134.35252847480774,134.3830497779846,134.4135710811615,134.44409238433838,134.47461368751524,134.50513499069214,134.535656293869,134.5661775970459,134.59669890022278,134.62722020339965,134.65774150657654,134.6882628097534,134.7187841129303,134.74930541610718,134.77982671928405,134.81034802246094,134.8408693256378,134.8713906288147,134.90191193199158,134.93243323516845,134.96295453834534,134.9934758415222,135.0239971446991,135.05451844787598,135.08503975105285,135.11556105422974,135.1460823574066,135.17660366058348,135.20712496376038,135.23764626693725,135.26816757011414,135.298688873291,135.32921017646788,135.35973147964478,135.39025278282165,135.42077408599854,135.4512953891754,135.48181669235228,135.51233799552918,135.54285929870605,135.57338060188295,135.60390190505981,135.63442320823668,135.66494451141358,135.69546581459045,135.72598711776735,135.75650842094421,135.78702972412108,135.81755102729798,135.84807233047485,135.87859363365172,135.90911493682862,135.93963624000548,135.97015754318238,136.00067884635925,136.03120014953612,136.06172145271302,136.09224275588988,136.12276405906678,136.15328536224365,136.18380666542052,136.21432796859742,136.24484927177429,136.27537057495118,136.30589187812805,136.33641318130492,136.36693448448182,136.39745578765869,136.42797709083558,136.45849839401245,136.48901969718932,136.51954100036622,136.5500623035431,136.58058360671996,136.61110490989685,136.64162621307372,136.67214751625062,136.7026688194275,136.73319012260436,136.76371142578125,136.79423272895812,136.82475403213502,136.8552753353119,136.88579663848876,136.91631794166565,136.94683924484252,136.97736054801942,137.0078818511963,137.03840315437316,137.06892445755005,137.09944576072692,137.12996706390382,137.1604883670807,137.19100967025756,137.22153097343445,137.25205227661132,137.28257357978822,137.3130948829651,137.34361618614196,137.37413748931885,137.40465879249572,137.4351800956726,137.4657013988495,137.49622270202636,137.52674400520326,137.55726530838012,137.587786611557,137.6183079147339,137.64882921791076,137.67935052108766,137.70987182426452,137.7403931274414,137.7709144306183,137.80143573379516,137.83195703697206,137.86247834014893,137.8929996433258,137.9235209465027,137.95404224967956,137.98456355285646,138.01508485603333,138.0456061592102,138.0761274623871,138.10664876556396,138.13717006874083,138.16769137191773,138.1982126750946,138.2287339782715,138.25925528144836,138.28977658462523,138.32029788780213,138.350819190979,138.3813404941559,138.41186179733276,138.44238310050963,138.47290440368653,138.5034257068634,138.5339470100403,138.56446831321716,138.59498961639403,138.62551091957093,138.6560322227478,138.6865535259247,138.71707482910156,138.74759613227843,138.77811743545533,138.8086387386322,138.83916004180907,138.86968134498596,138.90020264816283,138.93072395133973,138.9612452545166,138.99176655769347,139.02228786087036,139.05280916404723,139.08333046722413,139.113851770401,139.14437307357787,139.17489437675476,139.20541567993163,139.23593698310853,139.2664582862854,139.29697958946227,139.32750089263916,139.35802219581603,139.38854349899293,139.4190648021698,139.44958610534667,139.48010740852357,139.51062871170043,139.54115001487733,139.5716713180542,139.60219262123107,139.63271392440797,139.66323522758483,139.6937565307617,139.7242778339386,139.75479913711547,139.78532044029237,139.81584174346924,139.8463630466461,139.876884349823,139.90740565299987,139.93792695617677,139.96844825935364,139.9989695625305,140.0294908657074,140.06001216888427,140.09053347206117,140.12105477523804,140.1515760784149,140.1820973815918,140.21261868476867,140.24313998794557,140.27366129112244,140.3041825942993,140.3347038974762,140.36522520065307,140.39574650382994,140.42626780700684,140.4567891101837,140.4873104133606,140.51783171653747,140.54835301971434,140.57887432289124,140.6093956260681,140.639916929245,140.67043823242187,140.70095953559874,140.73148083877564,140.7620021419525,140.7925234451294,140.82304474830627,140.85356605148314,140.88408735466004,140.9146086578369,140.9451299610138,140.97565126419067,141.00617256736754,141.03669387054444,141.0672151737213,141.0977364768982,141.12825778007507,141.15877908325194,141.18930038642884,141.2198216896057,141.25034299278258,141.28086429595947,141.31138559913634,141.34190690231324,141.3724282054901,141.40294950866698,141.43347081184388,141.46399211502074,141.49451341819764,141.5250347213745,141.55555602455138,141.58607732772828,141.61659863090514,141.64711993408204,141.6776412372589,141.70816254043578,141.73868384361268,141.76920514678955,141.79972644996644,141.8302477531433,141.86076905632018,141.89129035949708,141.92181166267395,141.95233296585081,141.9828542690277,142.01337557220458,142.04389687538148,142.07441817855835,142.10493948173522,142.1354607849121,142.16598208808898,142.19650339126588,142.22702469444275,142.25754599761962,142.2880673007965,142.31858860397338,142.34910990715028,142.37963121032715,142.41015251350402,142.4406738166809,142.47119511985778,142.50171642303468,142.53223772621155,142.56275902938842,142.5932803325653,142.62380163574218,142.65432293891905,142.68484424209595,142.71536554527282,142.74588684844971,142.77640815162658,142.80692945480345,142.83745075798035,142.86797206115722,142.89849336433412,142.92901466751098,142.95953597068785,142.99005727386475,143.02057857704162,143.05109988021852,143.08162118339538,143.11214248657225,143.14266378974915,143.17318509292602,143.20370639610292,143.23422769927978,143.26474900245665,143.29527030563355,143.32579160881042,143.35631291198732,143.38683421516419,143.41735551834105,143.44787682151795,143.47839812469482,143.5089194278717,143.5394407310486,143.56996203422545,143.60048333740235,143.63100464057922,143.6615259437561,143.692047246933,143.72256855010986,143.75308985328675,143.78361115646362,143.8141324596405,143.8446537628174,143.87517506599426,143.90569636917115,143.93621767234802,143.9667389755249,143.9972602787018,144.02778158187866,144.05830288505555,144.08882418823242,144.1193454914093,144.1498667945862,144.18038809776306,144.21090940093993,144.24143070411682,144.2719520072937,144.3024733104706,144.33299461364746,144.36351591682433,144.39403722000122,144.4245585231781,144.455079826355,144.48560112953186,144.51612243270873,144.54664373588562,144.5771650390625,144.6076863422394,144.63820764541626,144.66872894859313,144.69925025177002,144.7297715549469,144.7602928581238,144.79081416130066,144.82133546447753,144.85185676765443,144.8823780708313,144.91289937400816,144.94342067718506,144.97394198036193,145.00446328353883,145.0349845867157,145.06550588989256,145.09602719306946,145.12654849624633,145.15706979942323,145.1875911026001,145.21811240577696,145.24863370895386,145.27915501213073,145.30967631530763,145.3401976184845,145.37071892166136,145.40124022483826,145.43176152801513,145.46228283119203,145.4928041343689,145.52332543754576,145.55384674072266,145.58436804389953,145.61488934707643,145.6454106502533,145.67593195343017,145.70645325660706,145.73697455978393,145.7674958629608,145.7980171661377,145.82853846931457,145.85905977249146,145.88958107566833,145.9201023788452,145.9506236820221,145.98114498519897,146.01166628837586,146.04218759155273,146.0727088947296,146.1032301979065,146.13375150108337,146.16427280426026,146.19479410743713,146.225315410614,146.2558367137909,146.28635801696777,146.31687932014466,146.34740062332153,146.3779219264984,146.4084432296753,146.43896453285217,146.46948583602904,146.50000713920593,146.5305284423828,146.5610497455597,146.59157104873657,146.62209235191344,146.65261365509033,146.6831349582672,146.7136562614441,146.74417756462097,146.77469886779784,146.80522017097474,146.8357414741516,146.8662627773285,146.89678408050537,146.92730538368224,146.95782668685914,146.988347990036,147.0188692932129,147.04939059638977,147.07991189956664,147.11043320274354,147.1409545059204,147.1714758090973,147.20199711227417,147.23251841545104,147.26303971862794,147.2935610218048,147.32408232498167,147.35460362815857,147.38512493133544,147.41564623451234,147.4461675376892,147.47668884086607,147.50721014404297,147.53773144721984,147.56825275039674,147.5987740535736,147.62929535675048,147.65981665992737,147.69033796310424,147.72085926628114,147.751380569458,147.78190187263488,147.81242317581177,147.84294447898864,147.87346578216554,147.9039870853424,147.93450838851928,147.96502969169617,147.99555099487304,148.0260722980499,148.0565936012268,148.08711490440368,148.11763620758057,148.14815751075744,148.1786788139343,148.2092001171112,148.23972142028808,148.27024272346497,148.30076402664184,148.3312853298187,148.3618066329956,148.39232793617248,148.42284923934938,148.45337054252624,148.4838918457031,148.51441314888,148.54493445205688,148.57545575523378,148.60597705841064,148.6364983615875,148.6670196647644,148.69754096794128,148.72806227111815,148.75858357429505,148.7891048774719,148.8196261806488,148.85014748382568,148.88066878700255,148.91119009017945,148.94171139335631,148.9722326965332,149.00275399971008,149.03327530288695,149.06379660606385,149.09431790924071,149.1248392124176,149.15536051559448,149.18588181877135,149.21640312194825,149.24692442512512,149.277445728302,149.30796703147888,149.33848833465575,149.36900963783265,149.39953094100952,149.4300522441864,149.46057354736328,149.49109485054015,149.52161615371705,149.55213745689392,149.58265876007079,149.61318006324768,149.64370136642455,149.67422266960145,149.70474397277832,149.7352652759552,149.76578657913208,149.79630788230895,149.82682918548585,149.85735048866272,149.8878717918396,149.91839309501648,149.94891439819335,149.97943570137025,150.00995700454712,150.040478307724,150.07099961090088,150.10152091407775,150.13204221725465,150.16256352043152,150.1930848236084,150.22360612678528,150.25412742996215,150.28464873313902,150.31517003631592,150.3456913394928,150.37621264266969,150.40673394584655,150.43725524902342,150.46777655220032,150.4982978553772,150.52881915855409,150.55934046173095,150.58986176490782,150.62038306808472,150.6509043712616,150.6814256744385,150.71194697761536,150.74246828079222,150.77298958396912,150.803510887146,150.8340321903229,150.86455349349976,150.89507479667662,150.92559609985352,150.9561174030304,150.9866387062073,151.01716000938416,151.04768131256102,151.07820261573792,151.1087239189148,151.13924522209166,151.16976652526856,151.20028782844543,151.23080913162232,151.2613304347992,151.29185173797606,151.32237304115296,151.35289434432983,151.38341564750672,151.4139369506836,151.44445825386046,151.47497955703736,151.50550086021423,151.53602216339112,151.566543466568,151.59706476974486,151.62758607292176,151.65810737609863,151.68862867927552,151.7191499824524,151.74967128562926,151.78019258880616,151.81071389198303,151.8412351951599,151.8717564983368,151.90227780151366,151.93279910469056,151.96332040786743,151.9938417110443,152.0243630142212,152.05488431739806,152.08540562057496,152.11592692375183,152.1464482269287,152.1769695301056,152.20749083328246,152.23801213645936,152.26853343963623,152.2990547428131,152.32957604599,152.36009734916686,152.39061865234376,152.42113995552063,152.4516612586975,152.4821825618744,152.51270386505126,152.54322516822813,152.57374647140503,152.6042677745819,152.6347890777588,152.66531038093567,152.69583168411253,152.72635298728943,152.7568742904663,152.7873955936432,152.81791689682007,152.84843819999693,152.87895950317383,152.9094808063507,152.9400021095276,152.97052341270447,153.00104471588133,153.03156601905823,153.0620873222351,153.092608625412,153.12312992858887,153.15365123176574,153.18417253494263,153.2146938381195,153.2452151412964,153.27573644447327,153.30625774765014,153.33677905082703,153.3673003540039,153.39782165718077,153.42834296035767,153.45886426353454,153.48938556671143,153.5199068698883,153.55042817306517,153.58094947624207,153.61147077941894,153.64199208259583,153.6725133857727,153.70303468894957,153.73355599212647,153.76407729530334,153.79459859848023,153.8251199016571,153.85564120483397,153.88616250801087,153.91668381118774,153.94720511436464,153.9777264175415,154.00824772071837,154.03876902389527,154.06929032707214,154.099811630249,154.1303329334259,154.16085423660277,154.19137553977967,154.22189684295654,154.2524181461334,154.2829394493103,154.31346075248717,154.34398205566407,154.37450335884094,154.4050246620178,154.4355459651947,154.46606726837157,154.49658857154847,154.52710987472534,154.5576311779022,154.5881524810791,154.61867378425598,154.64919508743287,154.67971639060974,154.7102376937866,154.7407589969635,154.77128030014038,154.80180160331724,154.83232290649414,154.862844209671,154.8933655128479,154.92388681602478,154.95440811920164,154.98492942237854,155.0154507255554,155.0459720287323,155.07649333190918,155.10701463508605,155.13753593826294,155.1680572414398,155.1985785446167,155.22909984779358,155.25962115097045,155.29014245414734,155.3206637573242,155.3511850605011,155.38170636367798,155.41222766685485,155.44274897003174,155.4732702732086,155.5037915763855,155.53431287956238,155.56483418273925,155.59535548591614,155.625876789093,155.65639809226988,155.68691939544678,155.71744069862365,155.74796200180054,155.7784833049774,155.80900460815428,155.83952591133118,155.87004721450805,155.90056851768495,155.9310898208618,155.96161112403868,155.99213242721558,156.02265373039245,156.05317503356935,156.08369633674621,156.11421763992308,156.14473894309998,156.17526024627685,156.20578154945375,156.23630285263062,156.26682415580748,156.29734545898438,156.32786676216125,156.35838806533812,156.38890936851502,156.41943067169188,156.44995197486878,156.48047327804565,156.51099458122252,156.54151588439942,156.57203718757629,156.60255849075318,156.63307979393005,156.66360109710692,156.69412240028382,156.72464370346069,156.75516500663758,156.78568630981445,156.81620761299132,156.84672891616822,156.8772502193451,156.90777152252198,156.93829282569885,156.96881412887572,156.99933543205262,157.0298567352295,157.06037803840638,157.09089934158325,157.12142064476012,157.15194194793702,157.1824632511139,157.21298455429076,157.24350585746765,157.27402716064452,157.30454846382142,157.3350697669983,157.36559107017516,157.39611237335205,157.42663367652892,157.45715497970582,157.4876762828827,157.51819758605956,157.54871888923645,157.57924019241332,157.60976149559022,157.6402827987671,157.67080410194396,157.70132540512085,157.73184670829772,157.76236801147462,157.7928893146515,157.82341061782836,157.85393192100526,157.88445322418212,157.914974527359,157.9454958305359,157.97601713371276,158.00653843688966,158.03705974006652,158.0675810432434,158.0981023464203,158.12862364959716,158.15914495277406,158.18966625595093,158.2201875591278,158.2507088623047,158.28123016548156,158.31175146865846,158.34227277183533,158.3727940750122,158.4033153781891,158.43383668136596,158.46435798454286,158.49487928771973,158.5254005908966,158.5559218940735,158.58644319725036,158.61696450042723,158.64748580360413,158.678007106781,158.7085284099579,158.73904971313476,158.76957101631163,158.80009231948853,158.8306136226654,158.8611349258423,158.89165622901916,158.92217753219603,158.95269883537293,158.9832201385498,159.0137414417267,159.04426274490356,159.07478404808043,159.10530535125733,159.1358266544342,159.1663479576111,159.19686926078796,159.22739056396483,159.25791186714173,159.2884331703186,159.3189544734955,159.34947577667236,159.37999707984923,159.41051838302613,159.441039686203,159.47156098937987,159.50208229255676,159.53260359573363,159.56312489891053,159.5936462020874,159.62416750526427,159.65468880844116,159.68521011161803,159.71573141479493,159.7462527179718,159.77677402114867,159.80729532432557,159.83781662750243,159.86833793067933,159.8988592338562,159.92938053703307,159.95990184020997,159.99042314338683,160.02094444656373,160.0514657497406,160.08198705291747,160.11250835609437,160.14302965927124,160.1735509624481,160.204072265625,160.23459356880187,160.26511487197877,160.29563617515564,160.3261574783325,160.3566787815094,160.38720008468627,160.41772138786317,160.44824269104004,160.4787639942169,160.5092852973938,160.53980660057067,160.57032790374757,160.60084920692444,160.6313705101013,160.6618918132782,160.69241311645507,160.72293441963197,160.75345572280884,160.7839770259857,160.8144983291626,160.84501963233947,160.87554093551634,160.90606223869324,160.9365835418701,160.967104845047,160.99762614822387,161.02814745140074,161.05866875457764,161.0891900577545,161.1197113609314,161.15023266410827,161.18075396728514,161.21127527046204,161.2417965736389,161.2723178768158,161.30283917999267,161.33336048316954,161.36388178634644,161.3944030895233,161.4249243927002,161.45544569587707,161.48596699905394,161.51648830223084,161.5470096054077,161.5775309085846,161.60805221176147,161.63857351493834,161.66909481811524,161.6996161212921,161.73013742446898,161.76065872764588,161.79118003082274,161.82170133399964,161.8522226371765,161.88274394035338,161.91326524353028,161.94378654670714,161.97430784988404,162.0048291530609,162.03535045623778,162.06587175941468,162.09639306259155,162.12691436576844,162.1574356689453,162.18795697212218,162.21847827529908,162.24899957847595,162.27952088165284,162.3100421848297,162.34056348800658,162.37108479118348,162.40160609436035,162.43212739753722,162.4626487007141,162.49317000389098,162.52369130706788,162.55421261024475,162.58473391342162,162.6152552165985,162.64577651977538,162.67629782295228,162.70681912612915,162.73734042930602,162.7678617324829,162.79838303565978,162.82890433883668,162.85942564201355,162.88994694519042,162.9204682483673,162.95098955154418,162.98151085472108,163.01203215789795,163.04255346107482,163.07307476425171,163.10359606742858,163.13411737060548,163.16463867378235,163.19515997695922,163.22568128013611,163.25620258331298,163.28672388648985,163.31724518966675,163.34776649284362,163.37828779602052,163.40880909919738,163.43933040237425,163.46985170555115,163.50037300872802,163.53089431190492,163.56141561508178,163.59193691825865,163.62245822143555,163.65297952461242,163.68350082778932,163.71402213096619,163.74454343414305,163.77506473731995,163.80558604049682,163.83610734367372,163.8666286468506,163.89714995002745,163.92767125320435,163.95819255638122,163.9887138595581,164.019235162735,164.04975646591186,164.08027776908875,164.11079907226562,164.1413203754425,164.1718416786194,164.20236298179626,164.23288428497315,164.26340558815002,164.2939268913269,164.3244481945038,164.35496949768066,164.38549080085755,164.41601210403442,164.4465334072113,164.4770547103882,164.50757601356506,164.53809731674195,164.56861861991882,164.5991399230957,164.6296612262726,164.66018252944946,164.69070383262633,164.72122513580322,164.7517464389801,164.782267742157,164.81278904533386,164.84331034851073,164.87383165168762,164.9043529548645,164.9348742580414,164.96539556121826,164.99591686439513,165.02643816757202,165.0569594707489,165.0874807739258,165.11800207710266,165.14852338027953,165.17904468345642,165.2095659866333,165.2400872898102,165.27060859298706,165.30112989616393,165.33165119934083,165.3621725025177,165.3926938056946,165.42321510887146,165.45373641204833,165.48425771522523,165.5147790184021,165.54530032157896,165.57582162475586,165.60634292793273,165.63686423110963,165.6673855342865,165.69790683746336,165.72842814064026,165.75894944381713,165.78947074699403,165.8199920501709,165.85051335334776,165.88103465652466,165.91155595970153,165.94207726287843,165.9725985660553,166.00311986923217,166.03364117240906,166.06416247558593,166.09468377876283,166.1252050819397,166.15572638511657,166.18624768829346,166.21676899147033,166.2472902946472,166.2778115978241,166.30833290100097,166.33885420417786,166.36937550735473,166.3998968105316,166.4304181137085,166.46093941688537,166.49146072006226,166.52198202323913,166.552503326416,166.5830246295929,166.61354593276977,166.64406723594666,166.67458853912353,166.7051098423004,166.7356311454773,166.76615244865417,166.79667375183107,166.82719505500793,166.8577163581848,166.8882376613617,166.91875896453857,166.94928026771544,166.97980157089233,167.0103228740692,167.0408441772461,167.07136548042297,167.10188678359984,167.13240808677673,167.1629293899536,167.1934506931305,167.22397199630737,167.25449329948424,167.28501460266114,167.315535905838,167.3460572090149,167.37657851219177,167.40709981536864,167.43762111854554,167.4681424217224,167.4986637248993,167.52918502807617,167.55970633125304,167.59022763442994,167.6207489376068,167.6512702407837,167.68179154396057,167.71231284713744,167.74283415031434,167.7733554534912,167.80387675666807,167.83439805984497,167.86491936302184,167.89544066619874,167.9259619693756,167.95648327255248,167.98700457572937,168.01752587890624,168.04804718208314,168.07856848526,168.10908978843688,168.13961109161377,168.17013239479064,168.20065369796754,168.2311750011444,168.26169630432128,168.29221760749817,168.32273891067504,168.35326021385194,168.3837815170288,168.41430282020568,168.44482412338257,168.47534542655944,168.5058667297363,168.5363880329132,168.56690933609008,168.59743063926697,168.62795194244384,168.6584732456207,168.6889945487976,168.71951585197448,168.75003715515138,168.78055845832824,168.8110797615051,168.841601064682,168.87212236785888,168.90264367103578,168.93316497421264,168.9636862773895,168.9942075805664,169.02472888374328,169.05525018692018,169.08577149009704,169.1162927932739,169.1468140964508,169.17733539962768,169.20785670280458,169.23837800598145,169.26889930915831,169.2994206123352,169.32994191551208,169.36046321868895,169.39098452186585,169.42150582504271,169.4520271282196,169.48254843139648,169.51306973457335,169.54359103775025,169.57411234092712,169.604633644104,169.63515494728088,169.66567625045775,169.69619755363465,169.72671885681152,169.7572401599884,169.78776146316528,169.81828276634215,169.84880406951905,169.87932537269592,169.9098466758728,169.94036797904968,169.97088928222655,170.00141058540345,170.03193188858032,170.06245319175719,170.09297449493408,170.12349579811095,170.15401710128785,170.18453840446472,170.2150597076416,170.24558101081848,170.27610231399535,170.30662361717225,170.33714492034912,170.367666223526,170.39818752670288,170.42870882987975,170.45923013305665,170.48975143623352,170.5202727394104,170.55079404258728,170.58131534576415,170.61183664894105,170.64235795211792,170.6728792552948,170.70340055847169,170.73392186164855,170.76444316482542,170.79496446800232,170.8254857711792,170.85600707435609,170.88652837753295,170.91704968070982,170.94757098388672,170.9780922870636,171.0086135902405,171.03913489341735,171.06965619659422,171.10017749977112,171.130698802948,171.1612201061249,171.19174140930176,171.22226271247862,171.25278401565552,171.2833053188324,171.3138266220093,171.34434792518616,171.37486922836302,171.40539053153992,171.4359118347168,171.4664331378937,171.49695444107056,171.52747574424743,171.55799704742432,171.5885183506012,171.61903965377806,171.64956095695496,171.68008226013183,171.71060356330872,171.7411248664856,171.77164616966246,171.80216747283936,171.83268877601623,171.86321007919312,171.89373138237,171.92425268554686,171.95477398872376,171.98529529190063,172.01581659507752,172.0463378982544,172.07685920143126,172.10738050460816,172.13790180778503,172.16842311096192,172.1989444141388,172.22946571731566,172.25998702049256,172.29050832366943,172.3210296268463,172.3515509300232,172.38207223320006,172.41259353637696,172.44311483955383,172.4736361427307,172.5041574459076,172.53467874908446,172.56520005226136,172.59572135543823,172.6262426586151,172.656763961792,172.68728526496886,172.71780656814576,172.74832787132263,172.7788491744995,172.8093704776764,172.83989178085326,172.87041308403016,172.90093438720703,172.9314556903839,172.9619769935608,172.99249829673766,173.02301959991456,173.05354090309143,173.0840622062683,173.1145835094452,173.14510481262207,173.17562611579893,173.20614741897583,173.2366687221527,173.2671900253296,173.29771132850647,173.32823263168333,173.35875393486023,173.3892752380371,173.419796541214,173.45031784439087,173.48083914756774,173.51136045074463,173.5418817539215,173.5724030570984,173.60292436027527,173.63344566345214,173.66396696662903,173.6944882698059,173.7250095729828,173.75553087615967,173.78605217933654,173.81657348251343,173.8470947856903,173.87761608886717,173.90813739204407,173.93865869522094,173.96917999839783,173.9997013015747,174.03022260475157,174.06074390792847,174.09126521110534,174.12178651428223,174.1523078174591,174.18282912063597,174.21335042381287,174.24387172698974,174.27439303016664,174.3049143333435,174.33543563652037,174.36595693969727,174.39647824287414,174.42699954605104,174.4575208492279,174.48804215240477,174.51856345558167,174.54908475875854,174.5796060619354,174.6101273651123,174.64064866828917,174.67116997146607,174.70169127464294,174.7322125778198,174.7627338809967,174.79325518417357,174.82377648735047,174.85429779052734,174.8848190937042,174.9153403968811,174.94586170005797,174.97638300323487,175.00690430641174,175.0374256095886,175.0679469127655,175.09846821594238,175.12898951911927,175.15951082229614,175.190032125473,175.2205534286499,175.25107473182678,175.28159603500367,175.31211733818054,175.3426386413574,175.3731599445343,175.40368124771118,175.43420255088805,175.46472385406494,175.4952451572418,175.5257664604187,175.55628776359558,175.58680906677245,175.61733036994934,175.6478516731262,175.6783729763031,175.70889427947998,175.73941558265685,175.76993688583374,175.8004581890106,175.8309794921875,175.86150079536438,175.89202209854125,175.92254340171814,175.953064704895,175.9835860080719,176.01410731124878,176.04462861442565,176.07514991760254,176.1056712207794,176.13619252395628,176.16671382713318,176.19723513031005,176.22775643348695,176.2582777366638,176.28879903984068,176.31932034301758,176.34984164619445,176.38036294937135,176.41088425254821,176.44140555572508,176.47192685890198,176.50244816207885,176.53296946525575,176.56349076843262,176.59401207160948,176.62453337478638,176.65505467796325,176.68557598114015,176.71609728431702,176.74661858749388,176.77713989067078,176.80766119384765,176.83818249702452,176.86870380020142,176.89922510337828,176.92974640655518,176.96026770973205,176.99078901290892,177.02131031608582,177.05183161926269,177.08235292243958,177.11287422561645,177.14339552879332,177.17391683197022,177.2044381351471,177.23495943832398,177.26548074150085,177.29600204467772,177.32652334785462,177.3570446510315,177.38756595420838,177.41808725738525,177.44860856056212,177.47912986373902,177.5096511669159,177.54017247009278,177.57069377326965,177.60121507644652,177.63173637962342,177.6622576828003,177.69277898597716,177.72330028915405,177.75382159233092,177.78434289550782,177.8148641986847,177.84538550186156,177.87590680503845,177.90642810821532,177.93694941139222,177.9674707145691,177.99799201774596,178.02851332092285,178.05903462409972,178.08955592727662,178.1200772304535,178.15059853363036,178.18111983680726,178.21164113998412,178.24216244316102,178.2726837463379,178.30320504951476,178.33372635269166,178.36424765586852,178.3947689590454,178.4252902622223,178.45581156539916,178.48633286857606,178.51685417175293,178.5473754749298,178.5778967781067,178.60841808128356,178.63893938446046,178.66946068763733,178.6999819908142,178.7305032939911,178.76102459716796,178.79154590034486,178.82206720352173,178.8525885066986,178.8831098098755,178.91363111305236,178.94415241622926,178.97467371940613,179.005195022583,179.0357163257599,179.06623762893676,179.09675893211366,179.12728023529053,179.1578015384674,179.1883228416443,179.21884414482116,179.24936544799803,179.27988675117493,179.3104080543518,179.3409293575287,179.37145066070556,179.40197196388243,179.43249326705933,179.4630145702362,179.4935358734131,179.52405717658996,179.55457847976683,179.58509978294373,179.6156210861206,179.6461423892975,179.67666369247436,179.70718499565123,179.73770629882813,179.768227602005,179.7987489051819,179.82927020835876,179.85979151153563,179.89031281471253,179.9208341178894,179.95135542106627,179.98187672424316,180.01239802742003,180.04291933059693,180.0734406337738,180.10396193695067,180.13448324012757,180.16500454330443,180.19552584648133,180.2260471496582,180.25656845283507,180.28708975601197,180.31761105918883,180.34813236236573,180.3786536655426,180.40917496871947,180.43969627189637,180.47021757507324,180.50073887825013,180.531260181427,180.56178148460387,180.59230278778077,180.62282409095764,180.6533453941345,180.6838666973114,180.71438800048827,180.74490930366517,180.77543060684204,180.8059519100189,180.8364732131958,180.86699451637267,180.89751581954957,180.92803712272644,180.9585584259033,180.9890797290802,181.01960103225707,181.05012233543397,181.08064363861084,181.1111649417877,181.1416862449646,181.17220754814147,181.20272885131837,181.23325015449524,181.2637714576721,181.294292760849,181.32481406402587,181.35533536720277,181.38585667037964,181.4163779735565,181.4468992767334,181.47742057991027,181.50794188308714,181.53846318626404,181.5689844894409,181.5995057926178,181.63002709579467,181.66054839897154,181.69106970214844,181.7215910053253,181.7521123085022,181.78263361167907,181.81315491485594,181.84367621803284,181.8741975212097,181.9047188243866,181.93524012756347,181.96576143074034,181.99628273391724,182.0268040370941,182.057325340271,182.08784664344788,182.11836794662474,182.14888924980164,182.1794105529785,182.20993185615538,182.24045315933228,182.27097446250914,182.30149576568604,182.3320170688629,182.36253837203978,182.39305967521668,182.42358097839355,182.45410228157044,182.4846235847473,182.51514488792418,182.54566619110108,182.57618749427795,182.60670879745484,182.6372301006317,182.66775140380858,182.69827270698548,182.72879401016235,182.75931531333924,182.7898366165161,182.82035791969298,182.85087922286988,182.88140052604675,182.91192182922362,182.9424431324005,182.97296443557738,183.00348573875428,183.03400704193115,183.06452834510802,183.0950496482849,183.12557095146178,183.15609225463868,183.18661355781555,183.21713486099242,183.2476561641693,183.27817746734618,183.30869877052308,183.33922007369995,183.36974137687682,183.40026268005371,183.43078398323058,183.46130528640748,183.49182658958435,183.52234789276122,183.55286919593811,183.58339049911498,183.61391180229188,183.64443310546875,183.67495440864562,183.70547571182252,183.73599701499938,183.76651831817625,183.79703962135315,183.82756092453002,183.85808222770692,183.88860353088378,183.91912483406065,183.94964613723755,183.98016744041442,184.01068874359132,184.04121004676819,184.07173134994505,184.10225265312195,184.13277395629882,184.16329525947572,184.1938165626526,184.22433786582945,184.25485916900635,184.28538047218322,184.31590177536012,184.346423078537,184.37694438171386,184.40746568489075,184.43798698806762,184.4685082912445,184.4990295944214,184.52955089759826,184.56007220077515,184.59059350395202,184.6211148071289,184.6516361103058,184.68215741348266,184.71267871665955,184.74320001983642,184.7737213230133,184.8042426261902,184.83476392936706,184.86528523254395,184.89580653572082,184.9263278388977,184.9568491420746,184.98737044525146,185.01789174842835,185.04841305160522,185.0789343547821,185.109455657959,185.13997696113586,185.17049826431276,185.20101956748962,185.2315408706665,185.2620621738434,185.29258347702026,185.32310478019713,185.35362608337402,185.3841473865509,185.4146686897278,185.44518999290466,185.47571129608153,185.50623259925842,185.5367539024353,185.5672752056122,185.59779650878906,185.62831781196593,185.65883911514283,185.6893604183197,185.7198817214966,185.75040302467346,185.78092432785033,185.81144563102723,185.8419669342041,185.872488237381,185.90300954055786,185.93353084373473,185.96405214691163,185.9945734500885,186.02509475326536,186.05561605644226,186.08613735961913,186.11665866279603,186.1471799659729,186.17770126914976,186.20822257232666,186.23874387550353,186.26926517868043,186.2997864818573,186.33030778503417,186.36082908821106,186.39135039138793,186.42187169456483,186.4523929977417,186.48291430091857,186.51343560409546,186.54395690727233,186.57447821044923,186.6049995136261,186.63552081680297,186.66604211997986,186.69656342315673,186.7270847263336,186.7576060295105,186.78812733268737,186.81864863586426,186.84916993904113,186.879691242218,186.9102125453949,186.94073384857177,186.97125515174866,187.00177645492553,187.0322977581024,187.0628190612793,187.09334036445617,187.12386166763307,187.15438297080993,187.1849042739868,187.2154255771637,187.24594688034057,187.27646818351747,187.30698948669433,187.3375107898712,187.3680320930481,187.39855339622497,187.42907469940187,187.45959600257873,187.4901173057556,187.5206386089325,187.55115991210937,187.58168121528624,187.61220251846314,187.64272382164,187.6732451248169,187.70376642799377,187.73428773117064,187.76480903434754,187.7953303375244,187.8258516407013,187.85637294387817,187.88689424705504,187.91741555023194,187.9479368534088,187.9784581565857,188.00897945976257,188.03950076293944,188.07002206611634,188.1005433692932,188.1310646724701,188.16158597564697,188.19210727882384,188.22262858200074,188.2531498851776,188.28367118835448,188.31419249153137,188.34471379470824,188.37523509788514,188.405756401062,188.43627770423888,188.46679900741577,188.49732031059264,188.52784161376954,188.5583629169464,188.58888422012328,188.61940552330017,188.64992682647704,188.68044812965394,188.7109694328308,188.74149073600768,188.77201203918457,188.80253334236144,188.83305464553834,188.8635759487152,188.89409725189208,188.92461855506897,188.95513985824584,188.98566116142274,189.0161824645996,189.04670376777648,189.07722507095338,189.10774637413024,189.1382676773071,189.168788980484,189.19931028366088,189.22983158683778,189.26035289001464,189.2908741931915,189.3213954963684,189.35191679954528,189.38243810272218,189.41295940589904,189.4434807090759,189.4740020122528,189.50452331542968,189.53504461860658,189.56556592178345,189.5960872249603,189.6266085281372,189.65712983131408,189.68765113449098,189.71817243766785,189.74869374084471,189.7792150440216,189.80973634719848,189.84025765037535,189.87077895355225,189.90130025672912,189.931821559906,189.96234286308288,189.99286416625975,190.02338546943665,190.05390677261352,190.0844280757904,190.11494937896728,190.14547068214415,190.17599198532105,190.20651328849792,190.2370345916748,190.26755589485168,190.29807719802855,190.32859850120545,190.35911980438232,190.3896411075592,190.42016241073608,190.45068371391295,190.48120501708985,190.51172632026672,190.5422476234436,190.57276892662048,190.60329022979735,190.63381153297425,190.66433283615112,190.694854139328,190.72537544250488,190.75589674568175,190.78641804885865,190.81693935203552,190.8474606552124,190.87798195838928,190.90850326156615,190.93902456474305,190.96954586791992,191.0000671710968,191.03058847427369,191.06110977745055,191.09163108062745,191.12215238380432,191.1526736869812,191.18319499015809,191.21371629333495,191.24423759651185,191.27475889968872,191.3052802028656,191.3358015060425,191.36632280921935,191.39684411239622,191.42736541557312,191.45788671875,191.4884080219269,191.51892932510376,191.54945062828062,191.57997193145752,191.6104932346344,191.6410145378113,191.67153584098816,191.70205714416502,191.73257844734192,191.7630997505188,191.7936210536957,191.82414235687256,191.85466366004943,191.88518496322632,191.9157062664032,191.9462275695801,191.97674887275696,192.00727017593383,192.03779147911072,192.0683127822876,192.09883408546446,192.12935538864136,192.15987669181823,192.19039799499512,192.220919298172,192.25144060134886,192.28196190452576,192.31248320770263,192.34300451087952,192.3735258140564,192.40404711723326,192.43456842041016,192.46508972358703,192.49561102676392,192.5261323299408,192.55665363311766,192.58717493629456,192.61769623947143,192.64821754264833,192.6787388458252,192.70926014900206,192.73978145217896,192.77030275535583,192.8008240585327,192.8313453617096,192.86186666488646,192.89238796806336,192.92290927124023,192.9534305744171,192.983951877594,193.01447318077086,193.04499448394776,193.07551578712463,193.1060370903015,193.1365583934784,193.16707969665526,193.19760099983216,193.22812230300903,193.2586436061859,193.2891649093628,193.31968621253966,193.35020751571656,193.38072881889343,193.4112501220703,193.4417714252472,193.47229272842407,193.50281403160096,193.53333533477783,193.5638566379547,193.5943779411316,193.62489924430847,193.65542054748533,193.68594185066223,193.7164631538391,193.746984457016,193.77750576019287,193.80802706336974,193.83854836654663,193.8690696697235,193.8995909729004,193.93011227607727,193.96063357925414,193.99115488243103,194.0216761856079,194.0521974887848,194.08271879196167,194.11324009513854,194.14376139831543,194.1742827014923,194.2048040046692,194.23532530784607,194.26584661102294,194.29636791419983,194.3268892173767,194.35741052055357,194.38793182373047,194.41845312690734,194.44897443008423,194.4794957332611,194.51001703643797,194.54053833961487,194.57105964279174,194.60158094596864,194.6321022491455,194.66262355232237,194.69314485549927,194.72366615867614,194.75418746185304,194.7847087650299,194.81523006820677,194.84575137138367,194.87627267456054,194.90679397773744,194.9373152809143,194.96783658409117,194.99835788726807,195.02887919044494,195.05940049362184,195.0899217967987,195.12044309997557,195.15096440315247,195.18148570632934,195.2120070095062,195.2425283126831,195.27304961585997,195.30357091903687,195.33409222221374,195.3646135253906,195.3951348285675,195.42565613174438,195.45617743492127,195.48669873809814,195.517220041275,195.5477413444519,195.57826264762878,195.60878395080567,195.63930525398254,195.6698265571594,195.7003478603363,195.73086916351318,195.76139046669007,195.79191176986694,195.8224330730438,195.8529543762207,195.88347567939758,195.91399698257445,195.94451828575134,195.9750395889282,196.0055608921051,196.03608219528198,196.06660349845885,196.09712480163574,196.1276461048126,196.1581674079895,196.18868871116638,196.21921001434325,196.24973131752014,196.280252620697,196.3107739238739,196.34129522705078,196.37181653022765,196.40233783340454,196.4328591365814,196.4633804397583,196.49390174293518,196.52442304611205,196.55494434928895,196.5854656524658,196.61598695564268,196.64650825881958,196.67702956199645,196.70755086517335,196.73807216835021,196.76859347152708,196.79911477470398,196.82963607788085,196.86015738105775,196.89067868423462,196.92119998741148,196.95172129058838,196.98224259376525,197.01276389694215,197.04328520011902,197.07380650329588,197.10432780647278,197.13484910964965,197.16537041282655,197.19589171600342,197.22641301918028,197.25693432235718,197.28745562553405,197.31797692871095,197.34849823188782,197.37901953506469,197.40954083824158,197.44006214141845,197.47058344459532,197.50110474777222,197.5316260509491,197.56214735412598,197.59266865730285,197.62318996047972,197.65371126365662,197.6842325668335,197.71475387001038,197.74527517318725,197.77579647636412,197.80631777954102,197.8368390827179,197.86736038589478,197.89788168907165,197.92840299224852,197.95892429542542,197.9894455986023,198.01996690177918,198.05048820495605,198.08100950813292,198.11153081130982,198.1420521144867,198.17257341766356,198.20309472084045,198.23361602401732,198.26413732719422,198.2946586303711,198.32517993354796,198.35570123672485,198.38622253990172,198.41674384307862,198.4472651462555,198.47778644943236,198.50830775260926,198.53882905578612,198.56935035896302,198.5998716621399,198.63039296531676,198.66091426849366,198.69143557167052,198.72195687484742,198.7524781780243,198.78299948120116,198.81352078437806,198.84404208755493,198.8745633907318,198.9050846939087,198.93560599708556,198.96612730026246,198.99664860343933,199.0271699066162,199.0576912097931,199.08821251296996,199.11873381614686,199.14925511932373,199.1797764225006,199.2102977256775,199.24081902885436,199.27134033203126,199.30186163520813,199.332382938385,199.3629042415619,199.39342554473876,199.42394684791566,199.45446815109253,199.4849894542694,199.5155107574463,199.54603206062316,199.57655336380006,199.60707466697693,199.6375959701538,199.6681172733307,199.69863857650756,199.72915987968443,199.75968118286133,199.7902024860382,199.8207237892151,199.85124509239196,199.88176639556883,199.91228769874573,199.9428090019226,199.9733303050995,200.00385160827636,200.03437291145323,200.06489421463013,200.095415517807,200.1259368209839,200.15645812416076,200.18697942733763,200.21750073051453,200.2480220336914,200.2785433368683,200.30906464004516,200.33958594322203,200.37010724639893,200.4006285495758,200.43114985275267,200.46167115592957,200.49219245910643,200.52271376228333,200.5532350654602,200.58375636863707,200.61427767181397,200.64479897499083,200.67532027816773,200.7058415813446,200.73636288452147,200.76688418769837,200.79740549087524,200.82792679405213,200.858448097229,200.88896940040587,200.91949070358277,200.95001200675964,200.98053330993653,201.0110546131134,201.04157591629027,201.07209721946717,201.10261852264404,201.13313982582093,201.1636611289978,201.19418243217467,201.22470373535157,201.25522503852844,201.2857463417053,201.3162676448822,201.34678894805907,201.37731025123597,201.40783155441284,201.4383528575897,201.4688741607666,201.49939546394347,201.52991676712037,201.56043807029724,201.5909593734741,201.621480676651,201.65200197982787,201.68252328300477,201.71304458618164,201.7435658893585,201.7740871925354,201.80460849571227,201.83512979888917,201.86565110206604,201.8961724052429,201.9266937084198,201.95721501159667,201.98773631477354,202.01825761795044,202.0487789211273,202.0793002243042,202.10982152748107,202.14034283065794,202.17086413383484,202.2013854370117,202.2319067401886,202.26242804336547,202.29294934654234,202.32347064971924,202.3539919528961,202.384513256073,202.41503455924988,202.44555586242674,202.47607716560364,202.5065984687805,202.5371197719574,202.56764107513428,202.59816237831114,202.62868368148804,202.6592049846649,202.68972628784178,202.72024759101868,202.75076889419555,202.78129019737244,202.8118115005493,202.84233280372618,202.87285410690308,202.90337541007995,202.93389671325684,202.9644180164337,202.99493931961058,203.02546062278748,203.05598192596435,203.08650322914124,203.1170245323181,203.14754583549498,203.17806713867188,203.20858844184875,203.23910974502564,203.2696310482025,203.30015235137938,203.33067365455628,203.36119495773315,203.39171626091004,203.4222375640869,203.45275886726378,203.48328017044068,203.51380147361755,203.54432277679442,203.5748440799713,203.60536538314818,203.63588668632508,203.66640798950195,203.69692929267882,203.72745059585571,203.75797189903258,203.78849320220948,203.81901450538635,203.84953580856322,203.88005711174011,203.91057841491698,203.94109971809388,203.97162102127075,204.00214232444762,204.03266362762452,204.06318493080138,204.09370623397828,204.12422753715515,204.15474884033202,204.18527014350892,204.21579144668578,204.24631274986265,204.27683405303955,204.30735535621642,204.33787665939332,204.36839796257019,204.39891926574705,204.42944056892395,204.45996187210082,204.49048317527772,204.52100447845459,204.55152578163145,204.58204708480835,204.61256838798522,204.64308969116212,204.673610994339,204.70413229751586,204.73465360069275,204.76517490386962,204.79569620704652,204.8262175102234,204.85673881340026,204.88726011657715,204.91778141975402,204.9483027229309,204.9788240261078,205.00934532928466,205.03986663246155,205.07038793563842,205.1009092388153,205.1314305419922,205.16195184516906,205.19247314834595,205.22299445152282,205.2535157546997,205.2840370578766,205.31455836105346,205.34507966423035,205.37560096740722,205.4061222705841,205.436643573761,205.46716487693786,205.49768618011475,205.52820748329162,205.5587287864685,205.5892500896454,205.61977139282226,205.65029269599916,205.68081399917602,205.7113353023529,205.7418566055298,205.77237790870666,205.80289921188353,205.83342051506042,205.8639418182373,205.8944631214142,205.92498442459106,205.95550572776793,205.98602703094483,206.0165483341217,206.0470696372986,206.07759094047546,206.10811224365233,206.13863354682923,206.1691548500061,206.199676153183,206.23019745635986,206.26071875953673,206.29124006271363,206.3217613658905,206.3522826690674,206.38280397224426,206.41332527542113,206.44384657859803,206.4743678817749,206.50488918495176,206.53541048812866,206.56593179130553,206.59645309448243,206.6269743976593,206.65749570083617,206.68801700401306,206.71853830718993,206.74905961036683,206.7795809135437,206.81010221672057,206.84062351989746,206.87114482307433,206.90166612625123,206.9321874294281,206.96270873260497,206.99323003578186,207.02375133895873,207.05427264213563,207.0847939453125,207.11531524848937,207.14583655166626,207.17635785484313,207.20687915802003,207.2374004611969,207.26792176437377,207.29844306755066,207.32896437072753,207.3594856739044,207.3900069770813,207.42052828025817,207.45104958343506,207.48157088661193,207.5120921897888,207.5426134929657,207.57313479614257,207.60365609931947,207.63417740249633,207.6646987056732,207.6952200088501,207.72574131202697,207.75626261520387,207.78678391838073,207.8173052215576,207.8478265247345,207.87834782791137,207.90886913108827,207.93939043426514,207.969911737442,208.0004330406189,208.03095434379577,208.06147564697264,208.09199695014954,208.1225182533264,208.1530395565033,208.18356085968017,208.21408216285704,208.24460346603394,208.2751247692108,208.3056460723877,208.33616737556457,208.36668867874144,208.39720998191834,208.4277312850952,208.4582525882721,208.48877389144897,208.51929519462584,208.54981649780274,208.5803378009796,208.6108591041565,208.64138040733337,208.67190171051024,208.70242301368714,208.732944316864,208.76346562004088,208.79398692321777,208.82450822639464,208.85502952957154,208.8855508327484,208.91607213592528,208.94659343910217,208.97711474227904,209.00763604545594,209.0381573486328,209.06867865180968,209.09919995498657,209.12972125816344,209.16024256134034,209.1907638645172,209.22128516769408,209.25180647087097,209.28232777404784,209.31284907722474,209.3433703804016,209.37389168357848,209.40441298675537,209.43493428993224,209.46545559310914,209.495976896286,209.52649819946288,209.55701950263978,209.58754080581664,209.6180621089935,209.6485834121704,209.67910471534728,209.70962601852418,209.74014732170104,209.7706686248779,209.8011899280548,209.83171123123168,209.86223253440858,209.89275383758545,209.9232751407623,209.9537964439392,209.98431774711608,210.01483905029298,210.04536035346985,210.07588165664671,210.1064029598236,210.13692426300048,210.16744556617738,210.19796686935425,210.22848817253112,210.259009475708,210.28953077888488,210.32005208206175,210.35057338523865,210.38109468841552,210.4116159915924,210.44213729476928,210.47265859794615,210.50317990112305,210.53370120429992,210.5642225074768,210.59474381065368,210.62526511383055,210.65578641700745,210.68630772018432,210.7168290233612,210.74735032653808,210.77787162971495,210.80839293289185,210.83891423606872,210.86943553924561,210.89995684242248,210.93047814559935,210.96099944877625,210.99152075195312,211.02204205513002,211.05256335830688,211.08308466148375,211.11360596466065,211.14412726783752,211.1746485710144,211.20516987419128,211.23569117736815,211.26621248054505,211.29673378372192,211.3272550868988,211.35777639007568,211.38829769325255,211.41881899642945,211.44934029960632,211.4798616027832,211.51038290596009,211.54090420913695,211.57142551231385,211.60194681549072,211.6324681186676,211.6629894218445,211.69351072502135,211.72403202819825,211.75455333137512,211.785074634552,211.8155959377289,211.84611724090576,211.87663854408262,211.90715984725952,211.9376811504364,211.9682024536133,211.99872375679016,212.02924505996702,212.05976636314392,212.0902876663208,212.1208089694977,212.15133027267456,212.18185157585143,212.21237287902832,212.2428941822052,212.2734154853821,212.30393678855896,212.33445809173583,212.36497939491272,212.3955006980896,212.4260220012665,212.45654330444336,212.48706460762023,212.51758591079712,212.548107213974,212.57862851715086,212.60914982032776,212.63967112350463,212.67019242668152,212.7007137298584,212.73123503303526,212.76175633621216,212.79227763938903,212.82279894256592,212.8533202457428,212.88384154891966,212.91436285209656,212.94488415527343,212.97540545845033,213.0059267616272,213.03644806480406,213.06696936798096,213.09749067115783,213.12801197433473,213.1585332775116,213.18905458068846,213.21957588386536,213.25009718704223,213.28061849021913,213.311139793396,213.34166109657286,213.37218239974976,213.40270370292663,213.4332250061035,213.4637463092804,213.49426761245726,213.52478891563416,213.55531021881103,213.5858315219879,213.6163528251648,213.64687412834166,213.67739543151856,213.70791673469543,213.7384380378723,213.7689593410492,213.79948064422607,213.83000194740296,213.86052325057983,213.8910445537567,213.9215658569336,213.95208716011047,213.98260846328736,214.01312976646423,214.0436510696411,214.074172372818,214.10469367599487,214.13521497917174,214.16573628234863,214.1962575855255,214.2267788887024,214.25730019187927,214.28782149505614,214.31834279823303,214.3488641014099,214.3793854045868,214.40990670776367,214.44042801094054,214.47094931411743,214.5014706172943,214.5319919204712,214.56251322364807,214.59303452682494,214.62355583000183,214.6540771331787,214.6845984363556,214.71511973953247,214.74564104270934,214.77616234588623,214.8066836490631,214.83720495223997,214.86772625541687,214.89824755859374,214.92876886177064,214.9592901649475,214.98981146812437,215.02033277130127,215.05085407447814,215.08137537765504,215.1118966808319,215.14241798400877,215.17293928718567,215.20346059036254,215.23398189353944,215.2645031967163,215.29502449989317,215.32554580307007,215.35606710624694,215.38658840942384,215.4171097126007,215.44763101577757,215.47815231895447,215.50867362213134,215.53919492530824,215.5697162284851,215.60023753166197,215.63075883483887,215.66128013801574,215.6918014411926,215.7223227443695,215.75284404754638,215.78336535072327,215.81388665390014,215.844407957077,215.8749292602539,215.90545056343078,215.93597186660767,215.96649316978454,215.9970144729614,216.0275357761383,216.05805707931518,216.08857838249207,216.11909968566894,216.1496209888458,216.1801422920227,216.21066359519958,216.24118489837647,216.27170620155334,216.3022275047302,216.3327488079071,216.36327011108398,216.39379141426085,216.42431271743774,216.4548340206146,216.4853553237915,216.51587662696838,216.54639793014525,216.57691923332214,216.607440536499,216.6379618396759,216.66848314285278,216.69900444602965,216.72952574920654,216.7600470523834,216.7905683555603,216.82108965873718,216.85161096191405,216.88213226509095,216.9126535682678,216.9431748714447,216.97369617462158,217.00421747779845,217.03473878097535,217.06526008415221,217.0957813873291,217.12630269050598,217.15682399368285,217.18734529685975,217.21786660003661,217.24838790321348,217.27890920639038,217.30943050956725,217.33995181274415,217.37047311592102,217.40099441909788,217.43151572227478,217.46203702545165,217.49255832862855,217.52307963180542,217.55360093498228,217.58412223815918,217.61464354133605,217.64516484451295,217.67568614768982,217.70620745086669,217.73672875404358,217.76725005722045,217.79777136039735,217.82829266357422,217.8588139667511,217.88933526992798,217.91985657310485,217.95037787628172,217.98089917945862,218.0114204826355,218.04194178581238,218.07246308898925,218.10298439216612,218.13350569534302,218.1640269985199,218.19454830169678,218.22506960487365,218.25559090805052,218.28611221122742,218.3166335144043,218.34715481758118,218.37767612075805,218.40819742393492,218.43871872711182,218.4692400302887,218.49976133346559,218.53028263664245,218.56080393981932,218.59132524299622,218.6218465461731,218.65236784934996,218.68288915252685,218.71341045570372,218.74393175888062,218.7744530620575,218.80497436523436,218.83549566841126,218.86601697158812,218.89653827476502,218.9270595779419,218.95758088111876,218.98810218429566,219.01862348747252,219.04914479064942,219.0796660938263,219.11018739700316,219.14070870018006,219.17123000335692,219.20175130653382,219.2322726097107,219.26279391288756,219.29331521606446,219.32383651924133,219.35435782241822,219.3848791255951,219.41540042877196,219.44592173194886,219.47644303512573,219.5069643383026,219.5374856414795,219.56800694465636,219.59852824783326,219.62904955101013,219.659570854187,219.6900921573639,219.72061346054076,219.75113476371766,219.78165606689453,219.8121773700714,219.8426986732483,219.87321997642516,219.90374127960206,219.93426258277893,219.9647838859558,219.9953051891327,220.02582649230956,220.05634779548646,220.08686909866333,220.1173904018402,220.1479117050171,220.17843300819396,220.20895431137083,220.23947561454773,220.2699969177246,220.3005182209015,220.33103952407836,220.36156082725523,220.39208213043213,220.422603433609,220.4531247367859,220.48364603996276,220.51416734313963,220.54468864631653,220.5752099494934,220.6057312526703,220.63625255584716,220.66677385902403,220.69729516220093,220.7278164653778,220.7583377685547,220.78885907173157,220.81938037490843,220.84990167808533,220.8804229812622,220.91094428443907,220.94146558761597,220.97198689079283,221.00250819396973,221.0330294971466,221.06355080032347,221.09407210350037,221.12459340667723,221.15511470985413,221.185636013031,221.21615731620787,221.24667861938477,221.27719992256164,221.30772122573853,221.3382425289154,221.36876383209227,221.39928513526917,221.42980643844604,221.46032774162293,221.4908490447998,221.52137034797667,221.55189165115357,221.58241295433044,221.61293425750733,221.6434555606842,221.67397686386107,221.70449816703797,221.73501947021484,221.7655407733917,221.7960620765686,221.82658337974547,221.85710468292237,221.88762598609924,221.9181472892761,221.948668592453,221.97918989562987,222.00971119880677,222.04023250198364,222.0707538051605,222.1012751083374,222.13179641151427,222.16231771469117,222.19283901786804,222.2233603210449,222.2538816242218,222.28440292739867,222.31492423057557,222.34544553375244,222.3759668369293,222.4064881401062,222.43700944328307,222.46753074645994,222.49805204963684,222.5285733528137,222.5590946559906,222.58961595916747,222.62013726234434,222.65065856552124,222.6811798686981,222.711701171875,222.74222247505188,222.77274377822874,222.80326508140564,222.8337863845825,222.8643076877594,222.89482899093628,222.92535029411314,222.95587159729004,222.9863929004669,223.0169142036438,223.04743550682068,223.07795680999754,223.10847811317444,223.1389994163513,223.1695207195282,223.20004202270508,223.23056332588195,223.26108462905884,223.2916059322357,223.32212723541258,223.35264853858948,223.38316984176635,223.41369114494324,223.4442124481201,223.47473375129698,223.50525505447388,223.53577635765075,223.56629766082764,223.5968189640045,223.62734026718138,223.65786157035828,223.68838287353515,223.71890417671204,223.7494254798889,223.77994678306578,223.81046808624268,223.84098938941955,223.87151069259644,223.9020319957733,223.93255329895018,223.96307460212708,223.99359590530395,224.02411720848082,224.0546385116577,224.08515981483458,224.11568111801148,224.14620242118835,224.17672372436522,224.20724502754211,224.23776633071898,224.26828763389588,224.29880893707275,224.32933024024962,224.35985154342652,224.39037284660338,224.42089414978028,224.45141545295715,224.48193675613402,224.51245805931092,224.54297936248778,224.57350066566468,224.60402196884155,224.63454327201842,224.66506457519532,224.69558587837219,224.72610718154905,224.75662848472595,224.78714978790282,224.81767109107972,224.84819239425659,224.87871369743345,224.90923500061035,224.93975630378722,224.97027760696412,225.000798910141,225.03132021331785,225.06184151649475,225.09236281967162,225.12288412284852,225.1534054260254,225.18392672920226,225.21444803237915,225.24496933555602,225.27549063873292,225.3060119419098,225.33653324508666,225.36705454826355,225.39757585144042,225.42809715461732,225.4586184577942,225.48913976097106,225.51966106414795,225.55018236732482,225.5807036705017,225.6112249736786,225.64174627685546,225.67226758003235,225.70278888320922,225.7333101863861,225.763831489563,225.79435279273986,225.82487409591675,225.85539539909362,225.8859167022705,225.9164380054474,225.94695930862426,225.97748061180116,226.00800191497802,226.0385232181549,226.0690445213318,226.09956582450866,226.13008712768556,226.16060843086242,226.1911297340393,226.2216510372162,226.25217234039306,226.28269364356993,226.31321494674683,226.3437362499237,226.3742575531006,226.40477885627746,226.43530015945433,226.46582146263123,226.4963427658081,226.526864068985,226.55738537216186,226.58790667533873,226.61842797851563,226.6489492816925,226.6794705848694,226.70999188804626,226.74051319122313,226.77103449440003,226.8015557975769,226.8320771007538,226.86259840393066,226.89311970710753,226.92364101028443,226.9541623134613,226.9846836166382,227.01520491981506,227.04572622299193,227.07624752616883,227.1067688293457,227.13729013252257,227.16781143569946,227.19833273887633,227.22885404205323,227.2593753452301,227.28989664840697,227.32041795158386,227.35093925476073,227.38146055793763,227.4119818611145,227.44250316429137,227.47302446746826,227.50354577064513,227.53406707382203,227.5645883769989,227.59510968017577,227.62563098335266,227.65615228652953,227.68667358970643,227.7171948928833,227.74771619606017,227.77823749923706,227.80875880241393,227.8392801055908,227.8698014087677,227.90032271194457,227.93084401512147,227.96136531829833,227.9918866214752,228.0224079246521,228.05292922782897,228.08345053100587,228.11397183418273,228.1444931373596,228.1750144405365,228.20553574371337,228.23605704689027,228.26657835006714,228.297099653244,228.3276209564209,228.35814225959777,228.38866356277467,228.41918486595154,228.4497061691284,228.4802274723053,228.51074877548217,228.54127007865904,228.57179138183594,228.6023126850128,228.6328339881897,228.66335529136657,228.69387659454344,228.72439789772034,228.7549192008972,228.7854405040741,228.81596180725097,228.84648311042784,228.87700441360474,228.9075257167816,228.9380470199585,228.96856832313537,228.99908962631224,229.02961092948914,229.060132232666,229.0906535358429,229.12117483901977,229.15169614219664,229.18221744537354,229.2127387485504,229.2432600517273,229.27378135490417,229.30430265808104,229.33482396125794,229.3653452644348,229.39586656761168,229.42638787078857,229.45690917396544,229.48743047714234,229.5179517803192,229.54847308349608,229.57899438667297,229.60951568984984,229.64003699302674,229.6705582962036,229.70107959938048,229.73160090255737,229.76212220573424,229.79264350891114,229.823164812088,229.85368611526488,229.88420741844178,229.91472872161864,229.94525002479554,229.9757713279724,230.00629263114928,230.03681393432618,230.06733523750304,230.0978565406799,230.1283778438568,230.15889914703368,230.18942045021058,230.21994175338745,230.2504630565643,230.2809843597412,230.31150566291808,230.34202696609498,230.37254826927185,230.40306957244871,230.4335908756256,230.46411217880248,230.49463348197938,230.52515478515625,230.55567608833312,230.58619739151,230.61671869468688,230.64723999786378,230.67776130104065,230.70828260421752,230.7388039073944,230.76932521057128,230.79984651374815,230.83036781692505,230.86088912010192,230.8914104232788,230.92193172645568,230.95245302963255,230.98297433280945,231.01349563598632,231.0440169391632,231.07453824234008,231.10505954551695,231.13558084869385,231.16610215187072,231.19662345504761,231.22714475822448,231.25766606140135,231.28818736457825,231.31870866775512,231.34922997093202,231.37975127410888,231.41027257728575,231.44079388046265,231.47131518363952,231.50183648681642,231.53235778999328,231.56287909317015,231.59340039634705,231.62392169952392,231.6544430027008,231.68496430587768,231.71548560905455,231.74600691223145,231.77652821540832,231.8070495185852,231.83757082176209,231.86809212493895,231.89861342811585,231.92913473129272,231.9596560344696,231.9901773376465,232.02069864082335,232.05121994400025,232.08174124717712,232.112262550354,232.1427838535309,232.17330515670776,232.20382645988465,232.23434776306152,232.2648690662384,232.2953903694153,232.32591167259216,232.35643297576902,232.38695427894592,232.4174755821228,232.4479968852997,232.47851818847656,232.50903949165343,232.53956079483032,232.5700820980072,232.6006034011841,232.63112470436096,232.66164600753783,232.69216731071472,232.7226886138916,232.7532099170685,232.78373122024536,232.81425252342223,232.84477382659912,232.875295129776,232.9058164329529,232.93633773612976,232.96685903930663,232.99738034248352,233.0279016456604,233.0584229488373,233.08894425201416,233.11946555519103,233.14998685836792,233.1805081615448,233.21102946472166,233.24155076789856,233.27207207107543,233.30259337425233,233.3331146774292,233.36363598060606,233.39415728378296,233.42467858695983,233.45519989013673,233.4857211933136,233.51624249649046,233.54676379966736,233.57728510284423,233.60780640602113,233.638327709198,233.66884901237486,233.69937031555176,233.72989161872863,233.76041292190553,233.7909342250824,233.82145552825926,233.85197683143616,233.88249813461303,233.9130194377899,233.9435407409668,233.97406204414366,234.00458334732056,234.03510465049743,234.0656259536743,234.0961472568512,234.12666856002807,234.15718986320496,234.18771116638183,234.2182324695587,234.2487537727356,234.27927507591247,234.30979637908936,234.34031768226623,234.3708389854431,234.40136028862,234.43188159179687,234.46240289497376,234.49292419815063,234.5234455013275,234.5539668045044,234.58448810768127,234.61500941085814,234.64553071403503,234.6760520172119,234.7065733203888,234.73709462356567,234.76761592674254,234.79813722991943,234.8286585330963,234.8591798362732,234.88970113945007,234.92022244262694,234.95074374580383,234.9812650489807,235.0117863521576,235.04230765533447,235.07282895851134,235.10335026168823,235.1338715648651,235.164392868042,235.19491417121887,235.22543547439574,235.25595677757264,235.2864780807495,235.3169993839264,235.34752068710327,235.37804199028014,235.40856329345704,235.4390845966339,235.46960589981077,235.50012720298767,235.53064850616454,235.56116980934144,235.5916911125183,235.62221241569517,235.65273371887207,235.68325502204894,235.71377632522584,235.7442976284027,235.77481893157957,235.80534023475647,235.83586153793334,235.86638284111024,235.8969041442871,235.92742544746397,235.95794675064087,235.98846805381774,236.01898935699464,236.0495106601715,236.08003196334838,236.11055326652527,236.14107456970214,236.171595872879,236.2021171760559,236.23263847923278,236.26315978240967,236.29368108558654,236.3242023887634,236.3547236919403,236.38524499511718,236.41576629829407,236.44628760147094,236.4768089046478,236.5073302078247,236.53785151100158,236.56837281417847,236.59889411735534,236.6294154205322,236.6599367237091,236.69045802688598,236.72097933006287,236.75150063323974,236.7820219364166,236.8125432395935,236.84306454277038,236.87358584594725,236.90410714912414,236.934628452301,236.9651497554779,236.99567105865478,237.02619236183165,237.05671366500854,237.0872349681854,237.1177562713623,237.14827757453918,237.17879887771605,237.20932018089295,237.2398414840698,237.2703627872467,237.30088409042358,237.33140539360045,237.36192669677735,237.39244799995421,237.4229693031311,237.45349060630798,237.48401190948485,237.51453321266175,237.54505451583861,237.5755758190155,237.60609712219238,237.63661842536925,237.66713972854615,237.69766103172302,237.72818233489988,237.75870363807678,237.78922494125365,237.81974624443055,237.85026754760742,237.88078885078428,237.91131015396118,237.94183145713805,237.97235276031495,238.00287406349182,238.03339536666869,238.06391666984558,238.09443797302245,238.12495927619935,238.15548057937622,238.1860018825531,238.21652318572998,238.24704448890685,238.27756579208375,238.30808709526062,238.3386083984375,238.36912970161438,238.39965100479125,238.43017230796812,238.46069361114502,238.4912149143219,238.52173621749878,238.55225752067565,238.58277882385252,238.61330012702942,238.6438214302063,238.67434273338318,238.70486403656005,238.73538533973692,238.76590664291382,238.7964279460907,238.82694924926759,238.85747055244445,238.88799185562132,238.91851315879822,238.9490344619751,238.97955576515199,239.01007706832885,239.04059837150572,239.07111967468262,239.1016409778595,239.1321622810364,239.16268358421326,239.19320488739012,239.22372619056702,239.2542474937439,239.28476879692076,239.31529010009766,239.34581140327452,239.37633270645142,239.4068540096283,239.43737531280516,239.46789661598206,239.49841791915892,239.52893922233582,239.5594605255127,239.58998182868956,239.62050313186646,239.65102443504333,239.68154573822022,239.7120670413971,239.74258834457396,239.77310964775086,239.80363095092773,239.83415225410462,239.8646735572815,239.89519486045836,239.92571616363526,239.95623746681213,239.986758769989,240.0172800731659,240.04780137634276,240.07832267951966,240.10884398269653,240.1393652858734,240.1698865890503,240.20040789222716,240.23092919540406,240.26145049858093,240.2919718017578,240.3224931049347,240.35301440811156,240.38353571128846,240.41405701446533,240.4445783176422,240.4750996208191,240.50562092399596,240.53614222717286,240.56666353034973,240.5971848335266,240.6277061367035,240.65822743988036,240.68874874305723,240.71927004623413,240.749791349411,240.7803126525879,240.81083395576476,240.84135525894163,240.87187656211853,240.9023978652954,240.9329191684723,240.96344047164916,240.99396177482603,241.02448307800293,241.0550043811798,241.0855256843567,241.11604698753357,241.14656829071043,241.17708959388733,241.2076108970642,241.2381322002411,241.26865350341797,241.29917480659483,241.32969610977173,241.3602174129486,241.3907387161255,241.42126001930237,241.45178132247923,241.48230262565613,241.512823928833,241.54334523200987,241.57386653518677,241.60438783836364,241.63490914154053,241.6654304447174,241.69595174789427,241.72647305107117,241.75699435424804,241.78751565742493,241.8180369606018,241.84855826377867,241.87907956695557,241.90960087013244,241.94012217330933,241.9706434764862,242.00116477966307,242.03168608283997,242.06220738601684,242.09272868919373,242.1232499923706,242.15377129554747,242.18429259872437,242.21481390190124,242.2453352050781,242.275856508255,242.30637781143187,242.33689911460877,242.36742041778564,242.3979417209625,242.4284630241394,242.45898432731627,242.48950563049317,242.52002693367004,242.5505482368469,242.5810695400238,242.61159084320067,242.64211214637757,242.67263344955444,242.7031547527313,242.7336760559082,242.76419735908507,242.79471866226197,242.82523996543884,242.8557612686157,242.8862825717926,242.91680387496947,242.94732517814634,242.97784648132324,243.0083677845001,243.038889087677,243.06941039085388,243.09993169403074,243.13045299720764,243.1609743003845,243.1914956035614,243.22201690673828,243.25253820991514,243.28305951309204,243.3135808162689,243.3441021194458,243.37462342262268,243.40514472579954,243.43566602897644,243.4661873321533,243.4967086353302,243.52722993850708,243.55775124168395,243.58827254486084,243.6187938480377,243.6493151512146,243.67983645439148,243.71035775756835,243.74087906074524,243.7714003639221,243.80192166709898,243.83244297027588,243.86296427345275,243.89348557662964,243.9240068798065,243.95452818298338,243.98504948616028,244.01557078933715,244.04609209251404,244.0766133956909,244.10713469886778,244.13765600204468,244.16817730522155,244.19869860839844,244.2292199115753,244.25974121475218,244.29026251792908,244.32078382110595,244.35130512428285,244.3818264274597,244.41234773063658,244.44286903381348,244.47339033699035,244.50391164016722,244.53443294334411,244.56495424652098,244.59547554969788,244.62599685287475,244.65651815605162,244.68703945922852,244.71756076240538,244.74808206558228,244.77860336875915,244.80912467193602,244.83964597511292,244.87016727828978,244.90068858146668,244.93120988464355,244.96173118782042,244.99225249099732,245.02277379417419,245.05329509735108,245.08381640052795,245.11433770370482,245.14485900688172,245.17538031005859,245.20590161323548,245.23642291641235,245.26694421958922,245.29746552276612,245.327986825943,245.35850812911985,245.38902943229675,245.41955073547362,245.45007203865052,245.4805933418274,245.51111464500426,245.54163594818115,245.57215725135802,245.60267855453492,245.6331998577118,245.66372116088866,245.69424246406555,245.72476376724242,245.75528507041932,245.7858063735962,245.81632767677306,245.84684897994995,245.87737028312682,245.90789158630372,245.9384128894806,245.96893419265746,245.99945549583435,246.02997679901122,246.0604981021881,246.091019405365,246.12154070854186,246.15206201171875,246.18258331489562,246.2131046180725,246.2436259212494,246.27414722442626,246.30466852760316,246.33518983078002,246.3657111339569,246.3962324371338,246.42675374031066,246.45727504348756,246.48779634666442,246.5183176498413,246.5488389530182,246.57936025619506,246.60988155937196,246.64040286254883,246.6709241657257,246.7014454689026,246.73196677207946,246.76248807525633,246.79300937843323,246.8235306816101,246.854051984787,246.88457328796386,246.91509459114073,246.94561589431763,246.9761371974945,247.0066585006714,247.03717980384826,247.06770110702513,247.09822241020203,247.1287437133789,247.1592650165558,247.18978631973266,247.22030762290953,247.25082892608643,247.2813502292633,247.3118715324402,247.34239283561706,247.37291413879393,247.40343544197083,247.4339567451477,247.4644780483246,247.49499935150146,247.52552065467833,247.55604195785523,247.5865632610321,247.61708456420897,247.64760586738586,247.67812717056273,247.70864847373963,247.7391697769165,247.76969108009337,247.80021238327026,247.83073368644713,247.86125498962403,247.8917762928009,247.92229759597777,247.95281889915466,247.98334020233153,248.01386150550843,248.0443828086853,248.07490411186217,248.10542541503906,248.13594671821593,248.16646802139283,248.1969893245697,248.22751062774657,248.25803193092347,248.28855323410033,248.3190745372772,248.3495958404541,248.38011714363097,248.41063844680787,248.44115974998473,248.4716810531616,248.5022023563385,248.53272365951537,248.56324496269227,248.59376626586914,248.624287569046,248.6548088722229,248.68533017539977,248.71585147857667,248.74637278175354,248.7768940849304,248.8074153881073,248.83793669128417,248.86845799446107,248.89897929763794,248.9295006008148,248.9600219039917,248.99054320716857,249.02106451034547,249.05158581352234,249.0821071166992,249.1126284198761,249.14314972305297,249.17367102622984,249.20419232940674,249.2347136325836,249.2652349357605,249.29575623893737,249.32627754211424,249.35679884529114,249.387320148468,249.4178414516449,249.44836275482177,249.47888405799864,249.50940536117554,249.5399266643524,249.5704479675293,249.60096927070617,249.63149057388304,249.66201187705994,249.6925331802368,249.7230544834137,249.75357578659057,249.78409708976744,249.81461839294434,249.8451396961212,249.87566099929808,249.90618230247497,249.93670360565184,249.96722490882874,249.9977462120056,250.02826751518248,250.05878881835937,250.08931012153624,250.11983142471314,250.15035272789,250.18087403106688,250.21139533424378,250.24191663742064,250.27243794059754,250.3029592437744,250.33348054695128,250.36400185012818,250.39452315330504,250.42504445648194,250.4555657596588,250.48608706283568,250.51660836601258,250.54712966918945,250.5776509723663,250.6081722755432,250.63869357872008,250.66921488189698,250.69973618507385,250.73025748825071,250.7607787914276,250.79130009460448,250.82182139778138,250.85234270095825,250.88286400413512,250.913385307312,250.94390661048888,250.97442791366578,251.00494921684265,251.03547052001952,251.0659918231964,251.09651312637328,251.12703442955018,251.15755573272705,251.18807703590392,251.2185983390808,251.24911964225768,251.27964094543458,251.31016224861145,251.34068355178832,251.3712048549652,251.40172615814208,251.43224746131895,251.46276876449585,251.49329006767272,251.52381137084961,251.55433267402648,251.58485397720335,251.61537528038025,251.64589658355712,251.67641788673401,251.70693918991088,251.73746049308775,251.76798179626465,251.79850309944152,251.82902440261842,251.85954570579528,251.89006700897215,251.92058831214905,251.95110961532592,251.98163091850282,252.01215222167968,252.04267352485655,252.07319482803345,252.10371613121032,252.1342374343872,252.16475873756409,252.19528004074095,252.22580134391785,252.25632264709472,252.2868439502716,252.3173652534485,252.34788655662535,252.37840785980225,252.40892916297912,252.439450466156,252.4699717693329,252.50049307250976,252.53101437568665,252.56153567886352,252.5920569820404,252.6225782852173,252.65309958839416,252.68362089157105,252.71414219474792,252.7446634979248,252.7751848011017,252.80570610427856,252.83622740745543,252.86674871063232,252.8972700138092,252.9277913169861,252.95831262016296,252.98883392333983,253.01935522651672,253.0498765296936,253.0803978328705,253.11091913604736,253.14144043922423,253.17196174240112,253.202483045578,253.2330043487549,253.26352565193176,253.29404695510863,253.32456825828552,253.3550895614624,253.3856108646393,253.41613216781616,253.44665347099303,253.47717477416992,253.5076960773468,253.5382173805237,253.56873868370056,253.59925998687743,253.62978129005432,253.6603025932312,253.69082389640806,253.72134519958496,253.75186650276183,253.78238780593873,253.8129091091156,253.84343041229246,253.87395171546936,253.90447301864623,253.93499432182313,253.93499432182313]},{"y":[-0.15352708,-0.17123207,-0.18886322,-0.20641416,-0.22387862,-0.24124995,-0.25852194,-0.27568835,-0.29274294,-0.3096795,-0.3264918,-0.34317383,-0.35971937,-0.37612268,-0.39237756,-0.4084783,-0.42441887,-0.44019377,-0.4557972,-0.4712234,-0.48646683,-0.5015221,-0.5163839,-0.5310466,-0.54550517,-0.55975413,-0.57378876,-0.58760375,-0.6011942,-0.61455524,-0.6276822,-0.6405704,-0.6532151,-0.6656119,-0.6777563,-0.6896442,-0.7012712,-0.7126332,-0.7237262,-0.7345463,-0.7450896,-0.7553525,-0.76533157,-0.7750229,-0.78442335,-0.7935297,-0.8023386,-0.81084716,-0.8190523,-0.82695127,-0.83454126,-0.8418198,-0.8487844,-0.8554325,-0.861762,-0.8677708,-0.8734568,-0.87881815,-0.88385296,-0.8885598,-0.89293706,-0.8969831,-0.900697,-0.9040774,-0.90712315,-0.90983355,-0.9122078,-0.914245,-0.9159449,-0.9173069,-0.91833067,-0.9190162,-0.9193633,-0.91937226,-0.91904294,-0.918376,-0.91737175,-0.9160307,-0.91435367,-0.9123414,-0.9099949,-0.90731514,-0.9043034,-0.9009609,-0.8972892,-0.8932898,-0.8889643,-0.88431466,-0.8793425,-0.87405,-0.86843956,-0.8625128,-0.85627294,-0.84972167,-0.8428621,-0.8356968,-0.82822835,-0.8204601,-0.81239486,-0.80403566,-0.7953861,-0.78644913,-0.7772285,-0.7677278,-0.7579504,-0.74790037,-0.73758125,-0.72699744,-0.7161527,-0.7050511,-0.69369715,-0.68209493,-0.67024904,-0.65816396,-0.64584404,-0.63329434,-0.62051916,-0.6075239,-0.5943131,-0.5808916,-0.5672649,-0.5534377,-0.53941566,-0.5252038,-0.5108073,-0.49623188,-0.48148277,-0.4665657,-0.4514862,-0.43624973,-0.42086232,-0.40532926,-0.3896569,-0.37385082,-0.3579167,-0.3418609,-0.32568917,-0.3094073,-0.29302183,-0.27653843,-0.25996357,-0.2433032,-0.22656336,-0.20975064,-0.19287081,-0.17593054,-0.15893601,-0.1418931,-0.12480864,-0.10768852,-0.090539455,-0.073367566,-0.056178927,-0.038980395,-0.021777749,-0.0045778453,0.012613237,0.029789418,0.046943963,0.06407097,0.081163764,0.098216295,0.115222484,0.13217571,0.1490702,0.1658994,0.18265724,0.19933799,0.21593505,0.23244277,0.2488547,0.26516512,0.28136823,0.2974578,0.3134282,0.3292738,0.34498858,0.36056718,0.37600365,0.39129207,0.40642762,0.42140445,0.43621683,0.45086014,0.4653287,0.479617,0.49372047,0.5076338,0.5213517,0.53486973,0.5481829,0.5612864,0.57417506,0.58684504,0.5992915,0.61150974,0.6234959,0.63524544,0.6467539,0.6580179,0.669033,0.67979527,0.6903008,0.70054626,0.7105279,0.7202419,0.72968537,0.7388547,0.7477465,0.7563582,0.7646865,0.7727282,0.7804811,0.78794223,0.79510915,0.80197895,0.80854994,0.81481963,0.8207856,0.82644624,0.8317995,0.8368435,0.8415769,0.8459978,0.850105,0.85389686,0.8573726,0.8605308,0.8633707,0.8658913,0.868092,0.86997205,0.8715312,0.87276876,0.87368464,0.87427866,0.8745509,0.8745013,0.87413013,0.8734377,0.8724246,0.8710913,0.8694384,0.8674668,0.8651774,0.8625713,0.8596495,0.85641336,0.8528644,0.8490039,0.8448334,0.8403549,0.8355701,0.83048093,0.8250896,0.8193979,0.81340843,0.80712354,0.8005458,0.79367745,0.78652143,0.77908075,0.77135795,0.7633562,0.7550788,0.74652857,0.73770905,0.72862387,0.7192761,0.7096695,0.69980764,0.6896949,0.67933434,0.66873026,0.65788704,0.64680827,0.6354984,0.623962,0.6122029,0.6002258,0.5880357,0.5756364,0.563033,0.55023026,0.53723323,0.5240463,0.5106747,0.49712384,0.48339808,0.46950293,0.45544395,0.44122568,0.42685387,0.41233388,0.39767143,0.38287133,0.3679395,0.35288182,0.33770323,0.32240963,0.30700725,0.291501,0.27589697,0.2602014,0.24441937,0.22855704,0.21262036,0.19661562,0.18054797,0.16442367,0.14824921,0.13202965,0.11577143,0.09948099,0.0831635,0.06682536,0.050472677,0.034111768,0.017747879,0.0013875067,-0.014963031,-0.03129846,-0.04761246,-0.06389853,-0.08015165,-0.0963653,-0.11253327,-0.12865034,-0.1447103,-0.1607072,-0.17663491,-0.19248831,-0.20826125,-0.22394758,-0.23954237,-0.25503957,-0.2704331,-0.2857182,-0.3008889,-0.3159397,-0.3308648,-0.34565938,-0.36031798,-0.37483466,-0.38920495,-0.40342346,-0.41748458,-0.43138385,-0.44511604,-0.4586758,-0.47205874,-0.48525995,-0.49827465,-0.51109815,-0.5237259,-0.5361534,-0.5483761,-0.5603897,-0.5721899,-0.5837724,-0.59513336,-0.6062684,-0.6171737,-0.6278454,-0.6382797,-0.64847296,-0.6584216,-0.6681219,-0.6775707,-0.6867645,-0.69570017,-0.70437455,-0.71278465,-0.7209275,-0.72880024,-0.7364002,-0.7437247,-0.7507712,-0.7575374,-0.76402086,-0.77021945,-0.77613103,-0.78175354,-0.7870852,-0.7921241,-0.7968687,-0.80131733,-0.80546856,-0.80932105,-0.81287366,-0.81612515,-0.8190745,-0.82172084,-0.8240635,-0.82610154,-0.8278347,-0.8292624,-0.83038414,-0.8311999,-0.8317095,-0.831913,-0.8318103,-0.8314019,-0.830688,-0.82966906,-0.8283457,-0.8267185,-0.8247883,-0.82255596,-0.82002246,-0.8171891,-0.8140568,-0.8106271,-0.8069015,-0.80288136,-0.79856855,-0.79396456,-0.78907144,-0.78389126,-0.7784259,-0.77267766,-0.7666487,-0.7603415,-0.7537586,-0.74690264,-0.7397761,-0.7323818,-0.72472286,-0.716802,-0.7086224,-0.70018715,-0.6914997,-0.6825632,-0.67338115,-0.66395706,-0.6542946,-0.6443974,-0.63426936,-0.6239141,-0.61333585,-0.6025385,-0.5915261,-0.580303,-0.5688733,-0.5572414,-0.5454116,-0.5333886,-0.52117676,-0.5087806,-0.496205,-0.4834546,-0.4705343,-0.45744878,-0.4442029,-0.43080187,-0.41725057,-0.4035542,-0.38971758,-0.3757463,-0.36164543,-0.34741992,-0.33307552,-0.31861728,-0.3040508,-0.2893814,-0.27461436,-0.25975564,-0.24481013,-0.22978401,-0.21468249,-0.19951105,-0.18427575,-0.16898176,-0.15363523,-0.13824147,-0.12280607,-0.10733518,-0.09183422,-0.07630879,-0.06076494,-0.045208067,-0.029644221,-0.014078975,0.0014820695,0.01703298,0.032568306,0.048081934,0.06356847,0.07902229,0.09443754,0.10980877,0.12513006,0.140396,0.1556012,0.1707397,0.18580636,0.20079531,0.2157013,0.23051901,0.24524277,0.2598675,0.2743876,0.28879794,0.30309343,0.3172686,0.33131862,0.3452381,0.35902202,0.37266576,0.38616392,0.39951202,0.41270494,0.425738,0.43860674,0.45130613,0.46383184,0.47617954,0.48834437,0.5003224,0.512109,0.52370006,0.53509164,0.5462793,0.55725944,0.56802785,0.57858074,0.5889146,0.5990255,0.60890996,0.6185644,0.62798554,0.6371701,0.6461146,0.65481615,0.66327155,0.6714778,0.6794323,0.687132,0.69457436,0.7017567,0.7086766,0.71533173,0.72171974,0.7278385,0.73368573,0.7392597,0.74455845,0.74958014,0.7543231,0.75878584,0.76296675,0.7668646,0.77047807,0.773806,0.77684736,0.7796011,0.7820666,0.784243,0.7861296,0.78772604,0.78903174,0.7900466,0.79077023,0.7912027,0.79134387,0.7911941,0.7907533,0.790022,0.7890007,0.7876898,0.7860901,0.7842022,0.7820272,0.77956593,0.77681947,0.7737889,0.77047586,0.76688135,0.7630069,0.75885445,0.75442535,0.7497216,0.7447451,0.7394976,0.7339813,0.7281985,0.7221517,0.7158428,0.7092744,0.70244956,0.69537026,0.6880396,0.6804606,0.67263573,0.66456825,0.65626156,0.6477185,0.6389424,0.6299366,0.62070495,0.6112504,0.6015769,0.5916883,0.5815879,0.5712798,0.5607682,0.5500565,0.539149,0.52804995,0.5167638,0.50529414,0.49364567,0.48182315,0.46983027,0.45767203,0.44535312,0.43287772,0.4202507,0.40747714,0.3945613,0.38150817,0.3683227,0.35501024,0.34157497,0.32802227,0.31435758,0.30058527,0.28671086,0.27273977,0.2586766,0.24452686,0.23029587,0.2159892,0.20161152,0.18716848,0.17266572,0.15810794,0.14350095,0.12885052,0.11416116,0.099438846,0.08468935,0.06991726,0.055128545,0.040328592,0.025523156,0.010717034,-0.0040840507,-0.018874168,-0.03364873,-0.048401892,-0.063127846,-0.077822,-0.0924786,-0.1070922,-0.12165713,-0.13616882,-0.15062156,-0.16500975,-0.17932883,-0.19357327,-0.20773742,-0.2218169,-0.23580624,-0.24969989,-0.26349372,-0.27718216,-0.29076034,-0.30422294,-0.3175658,-0.33078372,-0.34387165,-0.3568254,-0.3696401,-0.3823107,-0.39483324,-0.40720305,-0.41941547,-0.43146595,-0.4433507,-0.45506516,-0.46660483,-0.47796616,-0.48914477,-0.50013644,-0.5109378,-0.5215446,-0.53195286,-0.54215944,-0.5521604,-0.56195223,-0.5715312,-0.58089435,-0.5900382,-0.59895927,-0.6076548,-0.61612165,-0.6243565,-0.6323569,-0.6401199,-0.64764285,-0.6549227,-0.6619576,-0.6687447,-0.67528164,-0.68156636,-0.68759656,-0.69337016,-0.6988854,-0.7041402,-0.70913273,-0.71386164,-0.71832514,-0.72252166,-0.72644997,-0.73010874,-0.7334968,-0.736613,-0.7394564,-0.7420262,-0.7443216,-0.74634176,-0.74808633,-0.7495547,-0.75074655,-0.75166154,-0.75229967,-0.75266063,-0.7527446,-0.7525518,-0.75208235,-0.7513366,-0.750315,-0.7490181,-0.74744654,-0.7456012,-0.7434826,-0.741092,-0.7384303,-0.7354986,-0.73229843,-0.7288308,-0.7250972,-0.7210994,-0.71683866,-0.71231705,-0.7075362,-0.7024981,-0.6972047,-0.69165814,-0.68586075,-0.67981446,-0.67352206,-0.6669858,-0.66020817,-0.6531918,-0.64593977,-0.63845444,-0.6307389,-0.6227961,-0.61462927,-0.60624135,-0.59763545,-0.5888152,-0.5797839,-0.57054484,-0.56110156,-0.5514578,-0.5416171,-0.5315833,-0.5213601,-0.5109514,-0.50036114,-0.48959345,-0.47865212,-0.46754158,-0.45626584,-0.44482923,-0.433236,-0.42149046,-0.40959716,-0.39756054,-0.38538498,-0.3730752,-0.36063576,-0.34807122,-0.33538637,-0.322586,-0.30967468,-0.29665744,-0.28353906,-0.27032444,-0.25701842,-0.24362604,-0.23015225,-0.21660203,-0.2029804,-0.18929252,-0.17554331,-0.16173798,-0.14788157,-0.13397929,-0.120036155,-0.106057405,-0.09204823,-0.07801372,-0.06395906,-0.049889475,-0.035810173,-0.02172625,-0.007642895,0.00643456,0.020501167,0.03455159,0.048580706,0.06258342,0.0765546,0.09048894,0.10438165,0.11822751,0.1320214,0.14575826,0.15943322,0.17304122,0.1865773,0.20003642,0.21341379,0.22670455,0.23990385,0.25300688,0.2660088,0.27890497,0.2916908,0.30436152,0.3169126,0.32933947,0.34163755,0.35380265,0.36583018,0.37771583,0.38945526,0.40104443,0.41247895,0.42375487,0.43486816,0.44581458,0.45659047,0.4671919,0.47761506,0.4878562,0.4979117,0.5077779,0.51745147,0.52692884,0.5362066,0.5452815,0.5541504,0.5628101,0.5712576,0.5794898,0.5875039,0.5952971,0.60286665,0.6102099,0.6173242,0.62420714,0.6308564,0.63726956,0.64344454,0.6493791,0.65507126,0.66051906,0.6657206,0.6706742,0.6753782,0.6798309,0.6840309,0.6879767,0.6916673,0.69510114,0.6982774,0.7011949,0.7038527,0.7062502,0.7083864,0.71026087,0.71187294,0.71322227,0.71430856,0.71513146,0.7156909,0.71598685,0.7160193,0.71578836,0.7152945,0.7145378,0.71351886,0.71223813,0.7106963,0.70889395,0.7068322,0.70451164,0.7019335,0.6990987,0.6960087,0.6926646,0.6890678,0.68521976,0.6811221,0.67677665,0.6721848,0.6673486,0.66227,0.6569509,0.6513935,0.6456001,0.63957256,0.63331366,0.62682563,0.62011117,0.61317265,0.60601294,0.5986347,0.59104085,0.5832343,0.57521814,0.56699514,0.5585689,0.54994226,0.5411187,0.53210145,0.522894,0.5135001,0.503923,0.4941663,0.48423406,0.47412965,0.4638572,0.4534203,0.44282308,0.43206957,0.4211635,0.4101095,0.39891136,0.38757324,0.37609962,0.36449462,0.3527628,0.34090832,0.32893568,0.31684953,0.30465406,0.2923541,0.2799542,0.26745874,0.25487274,0.24220054,0.22944711,0.21661715,0.20371515,0.1907463,0.17771506,0.1646266,0.15148556,0.1382967,0.12506518,0.11179575,0.09849313,0.08516258,0.071808666,0.05843669,0.045051068,0.03165734,0.018259794,0.004863769,-0.008525908,-0.021903962,-0.0352661,-0.04860708,-0.061921746,-0.07520586,-0.08845422,-0.10166165,-0.11482388,-0.12793593,-0.14099258,-0.15398975,-0.16692236,-0.1797857,-0.19257475,-0.20528547,-0.21791293,-0.23045231,-0.24289954,-0.2552499,-0.2674985,-0.2796416,-0.29167444,-0.30359268,-0.31539172,-0.32706785,-0.33861655,-0.35003346,-0.36131492,-0.37245667,-0.38345435,-0.3943046,-0.40500316,-0.41554606,-0.42592993,-0.43615088,-0.44620517,-0.456089,-0.46579933,-0.47533244,-0.4846847,-0.4938532,-0.50283456,-0.51162523,-0.5202227,-0.5286236,-0.536825,-0.5448237,-0.55261743,-0.5602031,-0.5675781,-0.5747398,-0.581686,-0.58841383,-0.59492135,-0.60120606,-0.6072658,-0.61309856,-0.6187024,-0.6240753,-0.62921524,-0.6341207,-0.63879013,-0.6432216,-0.6474139,-0.65136576,-0.6550754,-0.65854204,-0.6617644,-0.6647413,-0.667472,-0.6699556,-0.6721914,-0.6741784,-0.67591643,-0.6774049,-0.6786433,-0.67963135,-0.6803689,-0.68085575,-0.681092,-0.6810776,-0.6808127,-0.68029773,-0.6795328,-0.67851853,-0.67725533,-0.67574376,-0.6739847,-0.6719789,-0.66972715,-0.6672305,-0.66449,-0.6615068,-0.65828216,-0.65481734,-0.651114,-0.6471734,-0.64299726,-0.6385872,-0.6339449,-0.6290724,-0.6239716,-0.61864436,-0.6130929,-0.6073193,-0.601326,-0.59511507,-0.58868915,-0.5820508,-0.57520235,-0.5681465,-0.56088626,-0.55342394,-0.54576266,-0.5379054,-0.5298553,-0.521615,-0.51318806,-0.50457764,-0.4957868,-0.4868189,-0.47767776,-0.46836627,-0.45888823,-0.44924742,-0.4394471,-0.42949116,-0.41938335,-0.40912774,-0.39872757,-0.38818726,-0.37751088,-0.36670184,-0.35576463,-0.3447035,-0.33352205,-0.32222486,-0.31081605,-0.29930013,-0.28768092,-0.275963,-0.26415104,-0.25224888,-0.24026121,-0.22819279,-0.21604754,-0.20383024,-0.19154574,-0.17919797,-0.16679189,-0.15433201,-0.14182326,-0.12926972,-0.11667627,-0.104047984,-0.09138879,-0.0787037,-0.06599772,-0.0532749,-0.040540308,-0.027798533,-0.015054584,-0.0023126304,0.010422409,0.023145527,0.03585264,0.048538953,0.061199218,0.07382965,0.086425185,0.09898096,0.11149296,0.12395635,0.13636656,0.14871871,0.16100897,0.17323247,0.18538454,0.19746134,0.20945811,0.2213703,0.23319405,0.24492489,0.25655845,0.2680903,0.27951676,0.29083353,0.30203614,0.31312108,0.3240842,0.3349211,0.3456285,0.3562023,0.36663836,0.3769335,0.38708377,0.39708546,0.40693477,0.41662872,0.4261635,0.43553558,0.44474182,0.45377883,0.4626435,0.47133264,0.47984314,0.488172,0.49631625,0.50427306,0.51203954,0.51961297,0.5269907,0.53417015,0.5411488,0.5479242,0.554494,0.56085587,0.56700754,0.572947,0.5786722,0.5841811,0.58947176,0.5945424,0.5993914,0.604017,0.60841763,0.61259186,0.6165383,0.62025553,0.62374246,0.6269979,0.6300208,0.6328101,0.63536507,0.6376848,0.63976866,0.641616,0.64322615,0.64459884,0.6457337,0.6466304,0.6472888,0.64770865,0.6478902,0.6478332,0.6475382,0.6470052,0.64623463,0.6452268,0.64398235,0.6425019,0.64078605,0.63883555,0.6366514,0.6342345,0.6315858,0.62870646,0.62559766,0.62226075,0.61869705,0.61490804,0.6108951,0.60666,0.60220456,0.59753025,0.5926391,0.58753294,0.5822139,0.57668406,0.57094544,0.5650004,0.55885124,0.55250025,0.54595006,0.5392031,0.53226197,0.52512926,0.51780796,0.5103006,0.50261015,0.4947396,0.48669195,0.47847024,0.47007757,0.46151716,0.4527923,0.4439062,0.43486235,0.42566404,0.41631484,0.40681827,0.39717788,0.38739735,0.37748027,0.36743048,0.35725167,0.3469478,0.33652255,0.3259799,0.31532383,0.30455834,0.29368743,0.2827151,0.2716455,0.26048282,0.24923109,0.23789465,0.22647755,0.2149843,0.20341896,0.1917857,0.18008925,0.16833353,0.15652321,0.14466251,0.13275576,0.12080762,0.10882208,0.09680411,0.084757864,0.072687596,0.060598135,0.048493624,0.03637883,0.024258047,0.012135565,1.6212463e-5,-0.012095809,-0.024196118,-0.036280006,-0.04834324,-0.060381293,-0.07238978,-0.084364414,-0.0963006,-0.10819428,-0.1200407,-0.13183579,-0.1435753,-0.15525475,-0.16687013,-0.17841688,-0.18989098,-0.20128843,-0.21260475,-0.22383612,-0.23497817,-0.24602702,-0.25697878,-0.26782924,-0.2785747,-0.28921106,-0.2997346,-0.31014156,-0.32042804,-0.33059052,-0.34062514,-0.35052833,-0.36029673,-0.36992654,-0.37941456,-0.38875717,-0.3979511,-0.40699324,-0.41588002,-0.4246085,-0.4331756,-0.44157803,-0.44981313,-0.45787767,-0.4657689,-0.47348413,-0.48102045,-0.4883754,-0.49554616,-0.5025303,-0.5093255,-0.5159292,-0.5223391,-0.5285531,-0.5345689,-0.5403845,-0.54599774,-0.55140686,-0.55660987,-0.561605,-0.5663906,-0.570965,-0.5753267,-0.57947403,-0.5834058,-0.58712065,-0.59061736,-0.5938948,-0.5969517,-0.5997873,-0.60240066,-0.6047908,-0.6069572,-0.608899,-0.61061573,-0.6121068,-0.61337197,-0.61441076,-0.61522305,-0.6158085,-0.6161672,-0.6162991,-0.61620426,-0.615883,-0.6153352,-0.6145616,-0.6135625,-0.6123384,-0.6108898,-0.6092175,-0.6073222,-0.60520464,-0.6028658,-0.60030675,-0.5975285,-0.5945322,-0.59131914,-0.5878905,-0.5842478,-0.5803925,-0.57632613,-0.57205033,-0.5675666,-0.5628771,-0.55798334,-0.55288744,-0.5475913,-0.5420971,-0.53640676,-0.53052264,-0.5244472,-0.5181825,-0.5117309,-0.5050954,-0.49827796,-0.49128148,-0.48410878,-0.47676224,-0.4692448,-0.46155962,-0.45370924,-0.4456968,-0.4375253,-0.4291981,-0.42071795,-0.4120883,-0.40331256,-0.39439362,-0.38533515,-0.37614065,-0.36681333,-0.35735673,-0.3477745,-0.33807045,-0.3282478,-0.31831035,-0.30826223,-0.29810658,-0.28784758,-0.2774892,-0.2670348,-0.25648865,-0.24585484,-0.23513685,-0.22433895,-0.2134651,-0.20251969,-0.1915062,-0.18042901,-0.16929251,-0.15810028,-0.14685674,-0.1355663,-0.12423268,-0.11286023,-0.101453245,-0.090016186,-0.07855275,-0.067067415,-0.0555647,-0.04404822,-0.03252265,-0.020992458,-0.009461224,0.0020664334,0.013585985,0.025093824,0.03658533,0.048056483,0.0595026,0.07092017,0.08230473,0.09365174,0.104957685,0.116218135,0.12742865,0.1385858,0.1496852,0.16072273,0.17169413,0.182596,0.19342406,0.20417413,0.2148428,0.22542602,0.23591954,0.24632022,0.25662392,0.2668267,0.27692547,0.2869162,0.29679528,0.30655894,0.3162042,0.32572725,0.33512452,0.34439301,0.3535292,0.3625296,0.3713914,0.38011125,0.38868594,0.39711234,0.40538767,0.41350895,0.42147297,0.42927736,0.4369191,0.44439536,0.4517038,0.45884162,0.46580622,0.47259545,0.47920674,0.4856378,0.49188617,0.49794996,0.503827,0.5095149,0.51501226,0.5203168,0.5254266,0.53034025,0.5350559,0.5395719,0.5438865,0.54799867,0.5519068,0.55560946,0.55910563,0.56239414,0.5654737,0.56834346,0.5710025,0.57344985,0.5756849,0.577707,0.5795152,0.5811094,0.5824888,0.5836532,0.58460224,0.5853357,0.58585346,0.5861555,0.5862417,0.5861124,0.5857676,0.58520764,0.5844327,0.58344346,0.5822402,0.58082354,0.5791942,0.5773529,0.5753002,0.5730374,0.5705652,0.5678847,0.56499696,0.56190324,0.5586048,0.55510294,0.551399,0.54749465,0.5433913,0.53909063,0.5345944,0.52990425,0.52502215,0.51994985,0.5146896,0.5092432,0.5036128,0.49780083,0.49180913,0.48564032,0.4792968,0.4727807,0.46609476,0.45924166,0.45222366,0.44504368,0.43770444,0.43020883,0.42255947,0.41475934,0.4068116,0.39871913,0.39048496,0.3821122,0.3736041,0.3649637,0.35619447,0.3472996,0.33828238,0.32914633,0.3198948,0.31053123,0.30105925,0.29148227,0.28180403,0.272028,0.26215786,0.25219744,0.24215035,0.23202029,0.22181113,0.21152662,0.20117061,0.19074695,0.18025947,0.1697121,0.15910876,0.14845341,0.13774998,0.1270024,0.11621471,0.10539082,0.0945348,0.08365063,0.07274236,0.06181398,0.050869584,0.039913118,0.028948694,0.017980248,0.00701195,-0.003952265,-0.014908344,-0.025852203,-0.03677994,-0.04768744,-0.058570802,-0.06942594,-0.08024889,-0.0910358,-0.101782575,-0.112485394,-0.12314029,-0.13374344,-0.14429085,-0.15477882,-0.16520348,-0.17556107,-0.18584764,-0.19605969,-0.20619345,-0.21624516,-0.22621122,-0.23608798,-0.2458719,-0.2555595,-0.26514715,-0.27463144,-0.28400898,-0.29327637,-0.30243027,-0.31146735,-0.32038438,-0.32917812,-0.3378455,-0.34638333,-0.35478857,-0.3630582,-0.3711893,-0.37917894,-0.38702425,-0.39472252,-0.40227085,-0.40966672,-0.4169074,-0.42399034,-0.43091306,-0.4376731,-0.444268,-0.4506956,-0.45695356,-0.46303958,-0.46895164,-0.47468764,-0.48024562,-0.48562357,-0.49081966,-0.49583212,-0.50065917,-0.5052992,-0.50975055,-0.51401174,-0.5180813,-0.5219579,-0.52564013,-0.5291269,-0.53241694,-0.53550917,-0.5384026,-0.54109627,-0.54358935,-0.545881,-0.5479705,-0.54985726,-0.55154055,-0.5530201,-0.55429536,-0.55536604,-0.5562318,-0.5568925,-0.557348,-0.55759835,-0.5576434,-0.55748343,-0.55711854,-0.55654895,-0.55577505,-0.55479735,-0.55361617,-0.5522321,-0.5506458,-0.54885805,-0.5468695,-0.54468113,-0.5422938,-0.5397084,-0.53692615,-0.53394824,-0.5307757,-0.52741,-0.52385235,-0.5201042,-0.51616716,-0.51204264,-0.5077324,-0.5032381,-0.49856144,-0.49370435,-0.48866862,-0.48345628,-0.4780693,-0.47250986,-0.46678013,-0.46088207,-0.45481825,-0.44859082,-0.44220233,-0.43565506,-0.42895156,-0.42209446,-0.41508627,-0.40792978,-0.40062764,-0.39318258,-0.38559753,-0.37787536,-0.37001887,-0.3620311,-0.35391507,-0.34567392,-0.33731067,-0.3288284,-0.32023048,-0.31151995,-0.3027003,-0.29377466,-0.2847464,-0.27561906,-0.26639572,-0.25708026,-0.24767594,-0.2381861,-0.22861464,-0.21896482,-0.2092405,-0.19944514,-0.18958233,-0.17965592,-0.16966939,-0.15962666,-0.1495314,-0.13938715,-0.12919801,-0.11896743,-0.10869944,-0.09839779,-0.08806604,-0.07770841,-0.06732839,-0.056930035,-0.04651715,-0.036093354,-0.02566278,-0.015229106,-0.0047960877,0.005632192,0.016052186,0.026459783,0.036851525,0.04722315,0.057571337,0.067892,0.078181416,0.088435575,0.098651186,0.10882428,0.11895089,0.12902786,0.13905121,0.14901707,0.15892228,0.16876303,0.17853545,0.1882365,0.19786242,0.20740968,0.21687463,0.22625428,0.23554495,0.24474318,0.253846,0.2628499,0.2717514,0.28054786,0.28923565,0.29781184,0.3062731,0.31461674,0.32283956,0.3309385,0.33891094,0.34675393,0.3544644,0.36204004,0.36947784,0.37677512,0.38392955,0.39093846,0.39779928,0.40450948,0.411067,0.41746935,0.42371413,0.4297994,0.43572295,0.44148245,0.44707632,0.45250228,0.4577586,0.4628432,0.4677546,0.472491,0.47705066,0.4814322,0.48563406,0.48965466,0.49349278,0.49714714,0.5006164,0.50389946,0.50699526,0.50990266,0.51262075,0.51514876,0.51748574,0.51963097,0.5215838,0.52334374,0.52491003,0.52628237,0.52746046,0.5284437,0.529232,0.5298253,0.53022337,0.53042614,0.53043383,0.5302465,0.5298642,0.5292872,0.52851605,0.527551,0.5263925,0.5250411,0.5234975,0.5217624,0.51983637,0.5177204,0.5154154,0.5129221,0.5102418,0.5073756,0.50432444,0.50108963,0.49767262,0.4940747,0.49029726,0.4863417,0.48220992,0.47790316,0.47342342,0.46877226,0.4639516,0.45896313,0.45380908,0.44849125,0.44301167,0.43737254,0.4315761,0.42562437,0.41951978,0.41326478,0.40686145,0.40031245,0.3936204,0.38678747,0.37981653,0.37271014,0.36547118,0.35810208,0.3506058,0.34298536,0.33524325,0.32738253,0.31940648,0.31131762,0.30311918,0.2948145,0.2864063,0.27789786,0.26929244,0.26059344,0.2518037,0.24292675,0.23396613,0.22492465,0.21580599,0.20661381,0.197351,0.18802127,0.17862807,0.16917516,0.15966561,0.1501031,0.14049149,0.13083382,0.12113395,0.11139569,0.101622164,0.091817245,0.08198477,0.07212789,0.06225051,0.052356303,0.042449072,0.03253205,0.022609115,0.012684166,0.0027604103,-0.007158369,-0.017068177,-0.026965931,-0.03684771,-0.04670994,-0.056548715,-0.066360906,-0.07614271,-0.08589032,-0.095600635,-0.10526991,-0.11489427,-0.12447077,-0.13399565,-0.14346519,-0.15287648,-0.16222577,-0.1715097,-0.18072465,-0.18986778,-0.19893545,-0.20792428,-0.21683134,-0.22565323,-0.2343866,-0.24302857,-0.25157595,-0.2600256,-0.26837423,-0.27661932,-0.2847576,-0.29278603,-0.3007021,-0.30850276,-0.31618503,-0.3237465,-0.3311843,-0.33849558,-0.34567812,-0.35272917,-0.35964623,-0.36642653,-0.3730682,-0.37956864,-0.38592538,-0.39213634,-0.3981993,-0.4041121,-0.40987274,-0.4154791,-0.4209293,-0.42622137,-0.43135345,-0.4363238,-0.44113067,-0.44577238,-0.45024735,-0.45455396,-0.45869082,-0.46265653,-0.46644962,-0.4700689,-0.47351313,-0.47678107,-0.47987175,-0.48278406,-0.48551705,-0.4880699,-0.49044162,-0.49263155,-0.494639,-0.49646336,-0.49810404,-0.49956053,-0.50083244,-0.5019194,-0.50282115,-0.50353736,-0.504068,-0.504413,-0.5045723,-0.5045459,-0.50433403,-0.5039368,-0.50335455,-0.5025875,-0.50163615,-0.50050086,-0.49918222,-0.49768084,-0.4959974,-0.49413255,-0.4920871,-0.48986197,-0.4874581,-0.4848764,-0.48211798,-0.47918397,-0.47607553,-0.4727939,-0.46934044,-0.46571648,-0.46192354,-0.45796296,-0.45383647,-0.4495455,-0.44509193,-0.44047743,-0.4357037,-0.43077272,-0.42568624,-0.4204464,-0.41505516,-0.40951455,-0.40382677,-0.3979939,-0.39201826,-0.38590217,-0.37964782,-0.37325773,-0.3667342,-0.36007994,-0.35329723,-0.34638873,-0.3393571,-0.33220497,-0.32493505,-0.3175501,-0.3100528,-0.30244613,-0.29473284,-0.28691596,-0.2789982,-0.2709828,-0.26287258,-0.25467065,-0.24638015,-0.23800401,-0.22954552,-0.2210077,-0.21239395,-0.20370728,-0.19495097,-0.18612836,-0.17724268,-0.16829728,-0.1592954,-0.1502404,-0.14113578,-0.13198473,-0.12279078,-0.11355722,-0.10428764,-0.094985366,-0.08565368,-0.07629636,-0.066916585,-0.05751802,-0.048104003,-0.03867796,-0.029243618,-0.01980406,-0.010363162,-0.0009241998,0.008509472,0.017934129,0.027346566,0.036743045,0.0461203,0.055475056,0.06480351,0.07410245,0.0833686,0.09259835,0.10178846,0.11093548,0.12003611,0.12908714,0.13808507,0.14702684,0.15590899,0.16472837,0.1734819,0.18216622,0.19077834,0.19931494,0.20777303,0.21614967,0.22444159,0.23264605,0.24075983,0.24878015,0.25670415,0.26452884,0.2722516,0.2798694,0.28737968,0.29477975,0.30206683,0.30923843,0.31629193,0.32322475,0.3300346,0.33671886,0.34327525,0.34970137,0.35599497,0.36215386,0.36817577,0.37405863,0.3798004,0.38539892,0.3908524,0.39615873,0.40131617,0.40632293,0.41117716,0.4158773,0.4204216,0.42480847,0.42903653,0.43310422,0.43701014,0.44075298,0.44433147,0.44774437,0.45099056,0.45406893,0.45697844,0.45971808,0.46228707,0.46468446,0.46690953,0.46896154,0.4708398,0.47254384,0.474073,0.47542697,0.47660524,0.47760752,0.47843358,0.47908324,0.4795563,0.47985268,0.47997248,0.47991568,0.47968245,0.47927296,0.47868747,0.47792634,0.47698987,0.47587863,0.47459304,0.47313374,0.47150123,0.4696964,0.4677199,0.46557277,0.46325555,0.4607695,0.45811552,0.4552946,0.45230806,0.449157,0.44584268,0.44236636,0.43872964,0.4349337,0.43098012,0.42687047,0.42260644,0.41818953,0.41362146,0.4089042,0.40403938,0.39902896,0.39387494,0.38857913,0.3831436,0.37757054,0.37186217,0.36602038,0.36004755,0.35394612,0.34771812,0.34136602,0.33489245,0.3282995,0.3215898,0.31476617,0.30783075,0.30078638,0.29363567,0.28638154,0.27902633,0.271573,0.26402456,0.25638342,0.24865271,0.24083541,0.23293416,0.22495206,0.21689212,0.20875752,0.20055091,0.19227552,0.18393475,0.17553121,0.16706826,0.1585492,0.14997685,0.14135459,0.13268581,0.12397331,0.11522053,0.10643074,0.097607374,0.08875328,0.07987197,0.070966914,0.062041,0.05309768,0.044140518,0.035172388,0.026196778,0.017217025,0.008236632,-0.0007414967,-0.009713903,-0.018677056,-0.027628094,-0.0365635,-0.04547973,-0.0543741,-0.063243,-0.072083026,-0.080891386,-0.08966458,-0.098399445,-0.10709262,-0.11574128,-0.12434216,-0.13289182,-0.14138761,-0.14982621,-0.15820435,-0.16651942,-0.1747682,-0.18294768,-0.19105463,-0.19908662,-0.20704047,-0.21491316,-0.22270216,-0.23040459,-0.23801734,-0.24553815,-0.25296405,-0.26029217,-0.26752037,-0.27464575,-0.28166574,-0.2885777,-0.29537952,-0.30206856,-0.30864227,-0.3150986,-0.32143518,-0.3276495,-0.33373967,-0.33970344,-0.34553862,-0.35124302,-0.35681495,-0.36225224,-0.36755285,-0.37271523,-0.37773734,-0.3826174,-0.38735396,-0.39194506,-0.39638916,-0.4006849,-0.4048307,-0.40882507,-0.41266656,-0.416354,-0.41988614,-0.4232616,-0.4264795,-0.42953852,-0.43243772,-0.43517613,-0.43775284,-0.44016704,-0.4424178,-0.44450456,-0.44642663,-0.44818324,-0.44977406,-0.4511985,-0.45245612,-0.45354658,-0.4544696,-0.45522493,-0.4558124,-0.45623192,-0.45648336,-0.4565668,-0.4564823,-0.45622998,-0.45581007,-0.4552228,-0.45446843,-0.45354742,-0.45246017,-0.45120722,-0.44978908,-0.44820645,-0.4464599,-0.44455028,-0.44247836,-0.44024494,-0.43785104,-0.4352976,-0.43258554,-0.4297161,-0.42669043,-0.42350966,-0.4201751,-0.41668808,-0.41304997,-0.40926212,-0.40532607,-0.4012435,-0.39701575,-0.39264458,-0.38813183,-0.38347894,-0.37868792,-0.37376052,-0.36869884,-0.36350447,-0.35817963,-0.35272652,-0.3471468,-0.34144288,-0.335617,-0.3296711,-0.32360762,-0.31742898,-0.31113723,-0.30473492,-0.29822442,-0.2916084,-0.284889,-0.27806893,-0.2711509,-0.26413742,-0.25703102,-0.2498345,-0.24255046,-0.23518167,-0.22773094,-0.22020097,-0.21259464,-0.20491475,-0.19716422,-0.1893459,-0.18146273,-0.17351764,-0.16551359,-0.15745357,-0.14934053,-0.14117755,-0.13296765,-0.12471384,-0.11641918,-0.10808681,-0.09971978,-0.091321185,-0.08289413,-0.074441716,-0.06596708,-0.05747339,-0.04896374,-0.040441275,-0.031909138,-0.02337046,-0.014828414,-0.0062861145,0.0022532642,0.010786623,0.019310772,0.027822673,0.036319077,0.044797003,0.053253263,0.061684757,0.070088476,0.078461245,0.08680007,0.09510188,0.10336366,0.11158243,0.119755074,0.12787874,0.1359504,0.14396714,0.15192601,0.1598242,0.16765873,0.17542689,0.18312581,0.19075267,0.19830468,0.2057792,0.21317354,0.22048491,0.22771074,0.23484844,0.24189544,0.24884918,0.2557072,0.2624669,0.26912606,0.27568215,0.28213286,0.2884759,0.294709,0.30082986,0.30683643,0.31272647,0.31849796,0.3241487,0.32967693,0.33508044,0.3403575,0.3455062,0.35052463,0.35541114,0.360164,0.3647815,0.369262,0.37360403,0.37780595,0.38186646,0.38578406,0.38955736,0.3931851,0.39666608,0.39999908,0.40318292,0.4062166,0.409099,0.4118292,0.41440636,0.4168295,0.4190979,0.4212108,0.42316747,0.42496738,0.42660993,0.42809457,0.42942095,0.43058854,0.4315971,0.43244633,0.43313605,0.43366602,0.43403625,0.4342466,0.4342971,0.43418795,0.43391916,0.433491,0.43290365,0.43215752,0.4312529,0.43019024,0.42897004,0.4275928,0.42605925,0.42436987,0.42252555,0.42052695,0.4183749,0.41607034,0.41361415,0.41100743,0.40825114,0.4053464,0.40229434,0.39909625,0.39575335,0.39226693,0.38863844,0.38486916,0.3809607,0.3769146,0.37273228,0.36841547,0.3639658,0.35938507,0.35467497,0.34983724,0.34487388,0.33978668,0.33457768,0.32924888,0.3238021,0.3182397,0.3125636,0.3067761,0.3008793,0.29487538,0.2887668,0.2825556,0.27624446,0.26983556,0.26333126,0.25673413,0.2500467,0.24327126,0.23641057,0.2294671,0.22244355,0.21534248,0.20816645,0.20091838,0.19360073,0.18621647,0.17876822,0.17125869,0.16369085,0.15606731,0.14839119,0.14066517,0.13289201,0.12507483,0.11721635,0.10931967,0.101387575,0.093422964,0.08542895,0.077408314,0.069364175,0.06129946,0.053216994,0.04512003,0.03701131,0.028894007,0.020771056,0.012645289,0.0045199543,-0.003602177,-0.011717945,-0.01982443,-0.027918786,-0.035997838,-0.044058725,-0.052098602,-0.06011431,-0.068103105,-0.07606192,-0.083988056,-0.091878295,-0.099730134,-0.10754047,-0.11530654,-0.12302525,-0.13069423,-0.13831045,-0.14587094,-0.15337339,-0.16081485,-0.16819245,-0.17550388,-0.18274634,-0.18991697,-0.19701356,-0.20403337,-0.2109739,-0.21783242,-0.2246068,-0.23129444,-0.2378928,-0.24439982,-0.25081298,-0.25712982,-0.26334846,-0.2694664,-0.27548152,-0.28139156,-0.28719464,-0.29288852,-0.29847115,-0.3039407,-0.3092952,-0.31453255,-0.31965113,-0.324649,-0.32952437,-0.33427572,-0.33890125,-0.3433993,-0.3477682,-0.35200664,-0.35611314,-0.360086,-0.3639241,-0.3676261,-0.3711905,-0.37461635,-0.37790233,-0.38104734,-0.38405022,-0.38691008,-0.38962594,-0.39219683,-0.3946219,-0.39690048,-0.3990316,-0.40101475,-0.40284926,-0.4045344,-0.4060698,-0.40745497,-0.4086894,-0.4097728,-0.41070488,-0.41148534,-0.41211402,-0.41259068,-0.41291547,-0.41308808,-0.41310877,-0.41297752,-0.4126944,-0.41225976,-0.41167378,-0.41093677,-0.41004908,-0.40901113,-0.40782344,-0.4064865,-0.40500084,-0.40336722,-0.40158623,-0.39965862,-0.39758527,-0.3953669,-0.39300463,-0.39049917,-0.38785166,-0.38506317,-0.3821347,-0.37906754,-0.37586293,-0.37252197,-0.36904603,-0.3654365,-0.3616949,-0.35782248,-0.3538208,-0.34969157,-0.3454362,-0.34105638,-0.33655387,-0.3319303,-0.32718745,-0.3223273,-0.3173515,-0.312262,-0.30706078,-0.3017499,-0.29633123,-0.29080686,-0.28517905,-0.27944967,-0.27362105,-0.26769552,-0.26167494,-0.2555619,-0.24935855,-0.24306747,-0.23669067,-0.23023072,-0.2236902,-0.21707126,-0.21037655,-0.2036087,-0.19676998,-0.18986303,-0.18289065,-0.17585513,-0.1687592,-0.16160557,-0.15439706,-0.14713591,-0.13982517,-0.13246764,-0.12506568,-0.11762226,-0.110140316,-0.102622226,-0.09507103,-0.087489456,-0.07988052,-0.07224667,-0.064590916,-0.056916237,-0.049225137,-0.041520655,-0.033805773,-0.026082978,-0.01835531,-0.010625809,-0.00289689,0.0048283488,0.012547091,0.020256355,0.027953625,0.035635933,0.043300256,0.050944135,0.058564648,0.06615879,0.07372415,0.08125776,0.08875692,0.09621869,0.10364066,0.11102001,0.11835384,0.12563986,0.13287528,0.14005718,0.14718342,0.15425113,0.16125765,0.16820079,0.1750778,0.18188626,0.18862349,0.19528745,0.20187548,0.2083851,0.21481429,0.22116058,0.22742149,0.2335951,0.23967907,0.24567114,0.2515691,0.25737107,0.26307485,0.26867828,0.2741796,0.2795768,0.28486773,0.29005077,0.29512402,0.3000855,0.30493376,0.3096669,0.3142833,0.31878114,0.32315916,0.32741567,0.3315491,0.3355581,0.3394412,0.34319717,0.34682462,0.3503223,0.35368907,0.3569237,0.36002508,0.3629922,0.365824,0.36851957,0.371078,0.37349835,0.37577993,0.37792194,0.37992364,0.38178438,0.38350365,0.3850808,0.3865154,0.387807,0.38895518,0.38995966,0.39082012,0.39153633,0.39210808,0.39253533,0.39281797,0.39295602,0.39294943,0.39279842,0.39250296,0.3920634,0.3914799,0.39075285,0.3898825,0.38886935,0.3877138,0.38641638,0.38497767,0.38339823,0.3816788,0.37982005,0.37782276,0.37568778,0.37341592,0.37100813,0.36846536,0.36578867,0.36297914,0.3600378,0.35696587,0.35376453,0.3504351,0.34697884,0.34339708,0.3396912,0.3358627,0.331913,0.3278437,0.32365626,0.3193524,0.31493375,0.31040195,0.30575877,0.301006,0.29614544,0.29117897,0.28610843,0.2809358,0.27566296,0.27029198,0.26482493,0.25926384,0.25361076,0.24786787,0.24203737,0.23612142,0.23012221,0.22404206,0.21788324,0.21164808,0.20533887,0.19895798,0.19250785,0.18599084,0.17940947,0.17276607,0.16606322,0.1593034,0.15248913,0.14562295,0.13870738,0.13174504,0.124738485,0.11769041,0.110603295,0.10347981,0.09632265,0.089134455,0.08191787,0.07467554,0.067410156,0.060124457,0.052821025,0.045502722,0.03817205,0.030831903,0.0234849,0.016133636,0.008781061,0.0014296323,-0.0059177577,-0.013258487,-0.020589963,-0.027909249,-0.035213962,-0.04250115,-0.049768254,-0.057012722,-0.06423171,-0.07142277,-0.07858306,-0.08571011,-0.09280141,-0.09985411,-0.10686581,-0.11383404,-0.120756075,-0.1276295,-0.1344518,-0.14122044,-0.14793311,-0.15458721,-0.1611805,-0.16771036,-0.17417464,-0.18057093,-0.18689689,-0.19315033,-0.19932881,-0.20543027,-0.21145251,-0.21739325,-0.22325052,-0.22902203,-0.2347058,-0.24029985,-0.24580207,-0.2512106,-0.2565234,-0.26173863,-0.26685447,-0.271869,-0.27678058,-0.2815873,-0.28628752,-0.29087973,-0.29536206,-0.29973307,-0.3039912,-0.30813488,-0.31216282,-0.31607345,-0.31986547,-0.32353762,-0.32708842,-0.3305169,-0.3338217,-0.3370017,-0.34005585,-0.34298313,-0.3457825,-0.34845296,-0.3509936,-0.35340375,-0.35568237,-0.35782886,-0.35984245,-0.36172247,-0.36346835,-0.3650795,-0.3665554,-0.3678956,-0.36909968,-0.37016734,-0.37109825,-0.3718921,-0.3725487,-0.3730679,-0.3734496,-0.37369373,-0.37380034,-0.37376934,-0.373601,-0.3732953,-0.37285256,-0.372273,-0.37155688,-0.37070456,-0.3697164,-0.36859298,-0.36733463,-0.365942,-0.36441565,-0.3627562,-0.36096442,-0.35904092,-0.3569866,-0.3548022,-0.35248867,-0.35004693,-0.34747803,-0.34478283,-0.34196252,-0.33901823,-0.335951,-0.33276206,-0.3294528,-0.32602435,-0.3224781,-0.31881547,-0.3150378,-0.31114656,-0.30714324,-0.30302954,-0.29880685,-0.29447678,-0.2900412,-0.28550157,-0.2808597,-0.27611753,-0.2712766,-0.26633883,-0.26130614,-0.25618055,-0.25096378,-0.24565786,-0.24026501,-0.23478696,-0.2292259,-0.22358409,-0.21786335,-0.21206595,-0.2061943,-0.20025024,-0.19423617,-0.18815435,-0.1820072,-0.1757967,-0.16952536,-0.16319565,-0.15680966,-0.15036987,-0.14387888,-0.1373388,-0.13075218,-0.12412152,-0.11744941,-0.11073802,-0.10398999,-0.09720802,-0.09039427,-0.08355144,-0.076682225,-0.06978882,-0.06287399,-0.05594042,-0.048990324,-0.042026475,-0.03505139,-0.028067857,-0.021078095,-0.014084846,-0.0070908517,-9.8377466e-5,0.0068899095,0.013871208,0.020843312,0.02780351,0.03474921,0.041677743,0.048586875,0.05547394,0.062336236,0.06917159,0.07597734,0.0827508,0.08948989,0.09619196,0.102854386,0.109475106,0.116051495,0.12258122,0.1290617,0.13549095,0.14186648,0.14818574,0.1544468,0.16064726,0.1667847,0.17285724,0.17886251,0.18479833,0.19066238,0.19645292,0.20216767,0.20780447,0.21336153,0.21883677,0.22422802,0.2295337,0.23475169,0.23988004,0.24491723,0.24986124,0.25471035,0.25946268,0.26411685,0.26867107,0.27312356,0.27747303,0.2817178,0.2858563,0.2898872,0.29380912,0.29762053,0.30132014,0.3049067,0.30837896,0.31173563,0.31497574,0.31809795,0.32110128,0.3239848,0.32674733,0.329388,0.33190596,0.33430034,0.33657035,0.33871514,0.34073406,0.3426265,0.34439176,0.34602934,0.34753862,0.34891918,0.3501706,0.3512925,0.35228452,0.35314637,0.3538778,0.35447875,0.3549489,0.35528827,0.35549676,0.3555744,0.3555212,0.35533732,0.35502288,0.35457808,0.3540032,0.35329843,0.3524642,0.35150084,0.3504088,0.34918863,0.34784073,0.34636575,0.34476435,0.34303707,0.34118474,0.33920804,0.33710787,0.33488494,0.33254027,0.33007473,0.32748932,0.32478502,0.321963,0.31902424,0.31596994,0.31280142,0.3095197,0.30612618,0.30262217,0.29900905,0.29528812,0.29146087,0.28752887,0.2834934,0.27935618,0.2751189,0.27078283,0.2663499,0.2618217,0.2572001,0.25248665,0.24768317,0.24279171,0.23781377,0.23275147,0.22760679,0.2223814,0.21707742,0.21169698,0.20624186,0.20071422,0.19511615,0.18944985,0.18371724,0.17792055,0.17206207,0.1661439,0.16016823,0.15413731,0.14805341,0.14191875,0.13573568,0.12950645,0.12323339,0.11691885,0.11056516,0.10417469,0.09774983,0.09129292,0.0848064,0.07829263,0.071754046,0.06519307,0.058612138,0.052013643,0.04540007,0.038773835,0.032137394,0.02549316,0.018843621,0.012191191,0.0055383593,-0.0011124462,-0.007758796,-0.014398232,-0.021028325,-0.027646646,-0.03425075,-0.04083824,-0.04740669,-0.053953692,-0.06047684,-0.06697379,-0.07344213,-0.07987955,-0.086283654,-0.0926521,-0.09898262,-0.10527285,-0.11152054,-0.11772339,-0.12387922,-0.12998572,-0.13604063,-0.14204189,-0.14798722,-0.15387449,-0.15970159,-0.16546641,-0.17116684,-0.17680088,-0.18236643,-0.18786156,-0.19328423,-0.19863251,-0.20390452,-0.20909832,-0.21421205,-0.21924387,-0.224192,-0.2290547,-0.23383018,-0.23851676,-0.24311277,-0.24761659,-0.25202662,-0.25634122,-0.26055896,-0.2646783,-0.26869783,-0.27261606,-0.27643168,-0.28014332,-0.28374964,-0.28724948,-0.2906415,-0.29392463,-0.29709756,-0.3001594,-0.30310896,-0.3059453,-0.30866736,-0.31127423,-0.31376505,-0.31613904,-0.3183953,-0.32053307,-0.32255167,-0.32445043,-0.3262287,-0.327886,-0.32942164,-0.33083522,-0.3321263,-0.33329445,-0.33433932,-0.33526063,-0.33605808,-0.33673143,-0.33728054,-0.33770534,-0.33800566,-0.33818156,-0.33823293,-0.33815992,-0.33796257,-0.33764112,-0.33719563,-0.3366265,-0.33593386,-0.33511814,-0.3341797,-0.33311892,-0.3319363,-0.33063233,-0.32920757,-0.32766265,-0.32599813,-0.32421482,-0.3223133,-0.32029444,-0.31815904,-0.31590796,-0.31354207,-0.31106234,-0.3084697,-0.3057652,-0.30294997,-0.30002505,-0.2969916,-0.29385072,-0.2906037,-0.2872519,-0.2837964,-0.2802387,-0.2765801,-0.27282202,-0.268966,-0.26501328,-0.26096562,-0.2568244,-0.25259134,-0.24826796,-0.24385586,-0.23935685,-0.23477252,-0.23010468,-0.22535512,-0.22052549,-0.21561779,-0.21063372,-0.20557532,-0.20044439,-0.19524284,-0.18997271,-0.18463586,-0.17923447,-0.17377046,-0.1682458,-0.16266273,-0.15702325,-0.1513294,-0.14558342,-0.13978736,-0.1339435,-0.12805396,-0.12212084,-0.116146535,-0.11013305,-0.10408285,-0.09799804,-0.091880836,-0.08573366,-0.07955862,-0.07335818,-0.06713455,-0.060889937,-0.054626845,-0.04834739,-0.04205408,-0.03574913,-0.029434815,-0.023113608,-0.016787693,-0.0104595125,-0.0041313767,0.0021945238,0.008515656,0.014829889,0.02113472,0.027427942,0.033707336,0.039970413,0.046215042,0.052438796,0.05863945,0.06481483,0.070962556,0.07708042,0.08316629,0.08921779,0.09523286,0.10120917,0.107144736,0.11303717,0.118884556,0.12468467,0.13043538,0.1361345,0.14178021,0.14737032,0.1529027,0.15837562,0.16378695,0.16913462,0.17441693,0.17963192,0.18477753,0.18985215,0.1948539,0.1997809,0.20463134,0.20940366,0.21409607,0.21870679,0.22323436,0.2276771,0.23203325,0.23630159,0.24048036,0.24456818,0.24856347,0.252465,0.25627127,0.25998098,0.26359287,0.2671056,0.2705179,0.2738287,0.27703676,0.28014094,0.2831403,0.2860337,0.28882012,0.29149857,0.29406825,0.29652825,0.29887763,0.30111572,0.30324173,0.30525488,0.30715457,0.30894017,0.31061107,0.3121667,0.31360656,0.31493026,0.3161373,0.31722736,0.31820014,0.3190553,0.31979257,0.3204118,0.32091287,0.32129556,0.32155994,0.32170585,0.3217334,0.32164255,0.32143354,0.32110646,0.32066143,0.32009885,0.31941885,0.31862178,0.31770808,0.31667805,0.3155322,0.31427103,0.31289506,0.31140488,0.30980107,0.30808434,0.3062554,0.30431485,0.30226362,0.30010253,0.29783237,0.29545406,0.29296854,0.29037684,0.2876799,0.28487885,0.2819748,0.2789687,0.2758619,0.2726556,0.26935095,0.26594922,0.2624518,0.25886008,0.25517526,0.25139883,0.24753237,0.24357715,0.23953483,0.23540689,0.23119485,0.22690037,0.22252515,0.2180707,0.21353874,0.20893103,0.2042494,0.1994954,0.19467095,0.18977799,0.18481807,0.17979324,0.17470549,0.16955645,0.16434821,0.15908271,0.15376207,0.14838797,0.14296259,0.1374881,0.13196626,0.12639922,0.120789275,0.11513819,0.109448195,0.10372156,0.09796016,0.09216623,0.08634196,0.08048963,0.07461112,0.06870878,0.0627849,0.056841403,0.05088064,0.044904947,0.03891623,0.03291688,0.026909068,0.020895168,0.0148771405,0.008857295,0.0028380007,-0.00317882,-0.009190783,-0.015195534,-0.021191195,-0.027175412,-0.033145815,-0.039100558,-0.045037292,-0.050953813,-0.056847863,-0.06271755,-0.06856059,-0.07437471,-0.080158055,-0.08590841,-0.09162353,-0.09730162,-0.10294044,-0.10853797,-0.11409204,-0.119600885,-0.12506239,-0.13047445,-0.13583533,-0.14114305,-0.14639543,-0.15159094,-0.15672751,-0.16180319,-0.16681641,-0.17176521,-0.17664784,-0.18146238,-0.18620741,-0.19088104,-0.19548152,-0.20000744,-0.204457,-0.20882861,-0.21312079,-0.21733205,-0.22146079,-0.22550544,-0.22946483,-0.23333743,-0.23712173,-0.24081661,-0.24442074,-0.24793264,-0.25135133,-0.25467548,-0.2579039,-0.26103556,-0.26406935,-0.26700416,-0.2698389,-0.2725728,-0.27520475,-0.27773383,-0.2801593,-0.28248024,-0.28469586,-0.28680545,-0.2888083,-0.2907037,-0.29249108,-0.29416978,-0.2957393,-0.2971991,-0.2985487,-0.2997877,-0.30091572,-0.3019324,-0.30283743,-0.3036305,-0.30431145,-0.3048801,-0.30533627,-0.30567995,-0.30591094,-0.30602932,-0.30603507,-0.3059283,-0.30570906,-0.30537757,-0.30493397,-0.3043785,-0.30371144,-0.30293316,-0.3020439,-0.30104414,-0.29993424,-0.29871476,-0.29738617,-0.29594904,-0.29440394,-0.29275155,-0.2909925,-0.2891275,-0.28715733,-0.28508276,-0.28290462,-0.2806238,-0.27824116,-0.27575767,-0.27317426,-0.27049196,-0.26771188,-0.26483503,-0.26186255,-0.2587956,-0.25563532,-0.25238302,-0.24903989,-0.24560718,-0.24208626,-0.23847848,-0.23478521,-0.23100784,-0.22714783,-0.22320664,-0.21918581,-0.2150868,-0.21091121,-0.2066606,-0.20233658,-0.19794084,-0.19347495,-0.18894066,-0.18433964,-0.17967364,-0.17494445,-0.17015378,-0.16530347,-0.16039532,-0.15543124,-0.15041298,-0.14534248,-0.14022161,-0.13505234,-0.12983654,-0.1245762,-0.119273216,-0.11392963,-0.10854741,-0.10312859,-0.097675115,-0.09218906,-0.08667245,-0.081127316,-0.0755558,-0.069959834,-0.064341575,-0.058703065,-0.053046465,-0.04737377,-0.0416871,-0.03598859,-0.030280337,-0.024564438,-0.018842965,-0.013118051,-0.0073918477,-0.0016663596,0.0040561855,0.009773813,0.015484288,0.021185592,0.026875705,0.032552354,0.038213663,0.04385741,0.04948157,0.05508417,0.060663015,0.06621625,0.071741655,0.07723729,0.08270128,0.08813143,0.093525924,0.09888266,0.104199775,0.10947541,0.11470748,0.11989418,0.1250337,0.13012403,0.13516347,0.1401501,0.14508212,0.14995782,0.15477538,0.15953311,0.16422921,0.1688621,0.17343007,0.17793146,0.18236472,0.18672815,0.19102025,0.19523956,0.19938442,0.20345351,0.20744523,0.21135825,0.21519117,0.2189426,0.22261128,0.22619578,0.22969498,0.23310757,0.23643231,0.23966815,0.24281387,0.2458683,0.24883056,0.25169945,0.25447404,0.25715336,0.25973648,0.2622225,0.2646106,0.26689988,0.26908973,0.27117917,0.2731677,0.2750545,0.27683908,0.2785207,0.28009892,0.28157318,0.28294295,0.28420785,0.28536752,0.28642148,0.2873695,0.28821126,0.2889465,0.28957507,0.29009676,0.2905115,0.2908191,0.29101956,0.29111293,0.29109916,0.29097837,0.29075065,0.29041612,0.28997505,0.28942758,0.28877404,0.28801468,0.2871499,0.28618002,0.28510553,0.28392684,0.28264445,0.28125894,0.2797708,0.27818075,0.27648932,0.27469727,0.2728053,0.27081412,0.26872465,0.26653755,0.26425385,0.26187426,0.25939986,0.25683156,0.25417048,0.25141743,0.24857366,0.24564028,0.24261826,0.23950887,0.23631337,0.23303285,0.22966865,0.22622211,0.22269441,0.21908697,0.21540114,0.21163848,0.20780018,0.20388778,0.19990289,0.19584686,0.19172126,0.18752778,0.1832678,0.17894301,0.17455506,0.17010573,0.16559643,0.16102895,0.15640521,0.15172665,0.14699513,0.14221257,0.13738051,0.13250087,0.1275756,0.12260633,0.117594995,0.11254346,0.10745374,0.1023275,0.09716676,0.09197356,0.08674958,0.08149689,0.07621756,0.070913315,0.065586194,0.06023822,0.0548715,0.049487725,0.044089034,0.03867758,0.033255056,0.027823627,0.022385411,0.016942129,0.01149597,0.006049007,0.00060302764,-0.004839845,-0.010277636,-0.015708178,-0.021129772,-0.026540287,-0.0319376,-0.037320003,-0.04268542,-0.048031725,-0.05335722,-0.058659866,-0.06393769,-0.06918865,-0.07441107,-0.07960297,-0.08476231,-0.089887455,-0.0949764,-0.100027196,-0.10503825,-0.110007614,-0.114933364,-0.11981399,-0.12464755,-0.12943235,-0.13416648,-0.13884854,-0.14347665,-0.14804907,-0.15256438,-0.1570208,-0.16141668,-0.16575062,-0.17002097,-0.1742262,-0.17836463,-0.1824351,-0.18643597,-0.19036576,-0.19422321,-0.19800696,-0.20171541,-0.20534755,-0.20890196,-0.21237727,-0.21577248,-0.21908626,-0.22231741,-0.22546479,-0.22852741,-0.23150411,-0.23439382,-0.23719563,-0.2399085,-0.2425314,-0.2450636,-0.24750414,-0.24985215,-0.25210682,-0.25426745,-0.25633323,-0.25830346,-0.26017758,-0.2619548,-0.26363465,-0.26521653,-0.2666999,-0.26808426,-0.2693692,-0.27055436,-0.2716393,-0.2726236,-0.27350706,-0.27428943,-0.27497047,-0.27554998,-0.2760278,-0.2764038,-0.27667794,-0.27685016,-0.2769205,-0.2768889,-0.27675554,-0.27652052,-0.2761839,-0.27574593,-0.27520686,-0.2745669,-0.27382633,-0.27298552,-0.27204487,-0.27100474,-0.26986557,-0.26862785,-0.26729214,-0.26585895,-0.2643288,-0.26270247,-0.2609805,-0.25916356,-0.25725248,-0.25524792,-0.25315073,-0.25096172,-0.24868181,-0.24631178,-0.24385265,-0.24130538,-0.23867086,-0.2359502,-0.23314449,-0.23025468,-0.22728196,-0.22422753,-0.22109246,-0.21787801,-0.2145854,-0.21121591,-0.20777078,-0.20425132,-0.200659,-0.19699498,-0.19326076,-0.18945785,-0.18558748,-0.18165123,-0.17765059,-0.17358716,-0.16946226,-0.16527757,-0.16103476,-0.1567352,-0.15238065,-0.14797282,-0.14351314,-0.13900343,-0.13444546,-0.1298407,-0.12519102,-0.12049814,-0.11576392,-0.110989906,-0.106177986,-0.10133004,-0.096447796,-0.091533065,-0.08658767,-0.08161346,-0.07661226,-0.07158595,-0.06653639,-0.06146542,-0.05637496,-0.051266875,-0.046143044,-0.04100538,-0.03585577,-0.030696116,-0.02552832,-0.020354278,-0.015175931,-0.009995155,-0.004813865,0.00036603957,0.005542636,0.010714047,0.015878357,0.021033682,0.026178122,0.031309806,0.036426827,0.04152733,0.04660946,0.05167134,0.056711152,0.061727017,0.066717125,0.071679644,0.0766128,0.08151473,0.08638374,0.09121797,0.09601575,0.10077528,0.10549483,0.11017271,0.11480725,0.1193967,0.12393947,0.1284339,0.13287836,0.1372712,0.14161092,0.1458959,0.15012461,0.15429553,0.15840718,0.16245803,0.16644672,0.17037174,0.17423172,0.17802525,0.18175103,0.18540771,0.18899396,0.19250852,0.19595015,0.1993176,0.20260975,0.20582536,0.2089633,0.21202251,0.21500188,0.21790038,0.22071697,0.22345068,0.22610052,0.22866565,0.23114511,0.23353806,0.23584366,0.23806113,0.2401897,0.24222866,0.24417733,0.24603495,0.247801,0.24947485,0.25105593,0.25254375,0.25393778,0.25523752,0.2564427,0.2575528,0.2585675,0.25948653,0.26030955,0.26103637,0.26166674,0.2622005,0.26263753,0.2629777,0.263221,0.26336733,0.2634167,0.2633692,0.26322484,0.2629838,0.2626462,0.26221222,0.2616821,0.26105607,0.26033443,0.25951746,0.2586056,0.25759917,0.25649866,0.25530446,0.2540171,0.25263718,0.25116515,0.24960166,0.24794735,0.24620286,0.24436893,0.24244621,0.24043557,0.23833768,0.23615345,0.23388371,0.23152938,0.2290913,0.22657049,0.22396785,0.22128451,0.21852142,0.21567965,0.2127603,0.2097645,0.20669338,0.20354816,0.20032996,0.19704008,0.19367972,0.19025025,0.18675289,0.18318895,0.17955986,0.17586693,0.17211162,0.16829531,0.16441938,0.16048542,0.1564948,0.1524491,0.14834982,0.14419843,0.13999662,0.13574581,0.13144776,0.12710397,0.12271605,0.11828573,0.113814555,0.109304324,0.10475664,0.10017317,0.09555571,0.09090592,0.086225495,0.08151626,0.07677988,0.0720182,0.06723295,0.062425837,0.057598773,0.052753396,0.047891654,0.04301525,0.038125955,0.033225685,0.028316103,0.023399197,0.01847668,0.013550296,0.008622006,0.0036934912,-0.001233302,-0.0061566457,-0.011074781,-0.01598578,-0.020887963,-0.025779426,-0.030658409,-0.035523213,-0.040371917,-0.04520288,-0.050014205,-0.054804206,-0.0595712,-0.064313315,-0.06902894,-0.073716246,-0.07837359,-0.08299931,-0.08759165,-0.092148975,-0.09666968,-0.10115203,-0.1055945,-0.10999538,-0.114353225,-0.11866627,-0.12293312,-0.12715217,-0.13132189,-0.13544069,-0.13950725,-0.14352003,-0.14747748,-0.1513784,-0.15522125,-0.15900457,-0.16272722,-0.16638777,-0.16998479,-0.1735172,-0.17698365,-0.1803829,-0.18371366,-0.18697488,-0.19016537,-0.19328392,-0.19632955,-0.19930114,-0.20219752,-0.2050179,-0.20776111,-0.21042627,-0.21301238,-0.21551861,-0.21794404,-0.22028783,-0.22254921,-0.2247274,-0.22682154,-0.22883105,-0.23075515,-0.23259322,-0.23434466,-0.23600887,-0.23758525,-0.23907328,-0.2404725,-0.24178246,-0.24300265,-0.24413279,-0.24517246,-0.24612129,-0.24697909,-0.24774551,-0.24842037,-0.24900346,-0.24949461,-0.24989372,-0.2502007,-0.25041544,-0.25053805,-0.2505684,-0.25050658,-0.25035268,-0.25010684,-0.24976914,-0.24933982,-0.24881905,-0.24820712,-0.24750426,-0.24671084,-0.24582718,-0.24485362,-0.24379066,-0.24263869,-0.24139819,-0.24006966,-0.23865363,-0.23715076,-0.23556158,-0.23388672,-0.23212692,-0.2302828,-0.22835512,-0.2263447,-0.22425218,-0.2220785,-0.21982452,-0.21749105,-0.21507901,-0.21258932,-0.21002308,-0.20738108,-0.20466444,-0.20187426,-0.19901146,-0.19607726,-0.1930728,-0.1899991,-0.18685739,-0.1836489,-0.18037489,-0.1770365,-0.173635,-0.17017186,-0.16664812,-0.1630653,-0.15942474,-0.15572771,-0.15197566,-0.14817011,-0.14431232,-0.14040379,-0.13644603,-0.1324406,-0.12838879,-0.124292254,-0.12015262,-0.11597122,-0.11174973,-0.10748982,-0.103192866,-0.0988606,-0.09449462,-0.09009667,-0.08566815,-0.08121084,-0.07672648,-0.07221655,-0.0676828,-0.06312705,-0.05855075,-0.053955708,-0.049343746,-0.044716336,-0.040075306,-0.035422377,-0.030759372,-0.026087768,-0.021409452,-0.016726218,-0.012039572,-0.0073513687,-0.0026634336,0.0020227358,0.006705299,0.011382543,0.016052634,0.020714074,0.025365062,0.030003779,0.034628734,0.039238133,0.04383018,0.048403412,0.052956052,0.057486333,0.06199284,0.066473775,0.07092752,0.07535239,0.07974694,0.08410949,0.08843834,0.09273211,0.09698917,0.10120788,0.10538688,0.10952459,0.11361949,0.11767002,0.12167488,0.12563257,0.12954153,0.13340057,0.13720825,0.14096299,0.14466372,0.14830899,0.1518974,0.15542787,0.15889901,0.1623096,0.16565834,0.16894421,0.17216592,0.1753223,0.17841235,0.1814349,0.18438883,0.18727319,0.19008698,0.1928291,0.19549859,0.19809459,0.2006162,0.20306242,0.2054325,0.20772566,0.20994093,0.2120777,0.21413517,0.21611261,0.2180094,0.21982488,0.22155842,0.22320935,0.22477727,0.22626154,0.22766168,0.22897726,0.23020783,0.231353,0.2324124,0.23338565,0.23427252,0.2350727,0.23578595,0.23641203,0.23695084,0.23740214,0.23776588,0.23804195,0.23823033,0.23833102,0.23834397,0.23826927,0.23810703,0.23785727,0.23752025,0.23709606,0.23658495,0.23598716,0.23530294,0.23453261,0.2336765,0.232735,0.23170848,0.23059738,0.22940217,0.22812334,0.22676137,0.22531685,0.22379038,0.22218253,0.22049397,0.21872534,0.21687736,0.21495077,0.21294631,0.21086475,0.20870693,0.20647368,0.20416585,0.20178437,0.19933014,0.19680409,0.19420722,0.19154051,0.18880501,0.18600175,0.18313181,0.18019626,0.17719626,0.17413291,0.17100742,0.16782093,0.16457468,0.1612699,0.15790783,0.15448973,0.15101689,0.1474907,0.14391237,0.14028332,0.13660489,0.13287848,0.1291055,0.12528731,0.121425405,0.11752118,0.11357613,0.109591745,0.105569474,0.10151084,0.09741733,0.09329054,0.08913194,0.084943086,0.080725566,0.07648093,0.07221078,0.06791667,0.06360019,0.059262972,0.05490659,0.050532714,0.046142895,0.041738793,0.037322022,0.032894216,0.028457057,0.024012107,0.019561041,0.015105493,0.01064714,0.006187573,0.0017284378,-0.0027285963,-0.0071819127,-0.01162985,-0.01607082,-0.02050317,-0.024925254,-0.029335514,-0.03373225,-0.03811396,-0.042478904,-0.046825588,-0.051152445,-0.055457786,-0.059740163,-0.06399792,-0.06822954,-0.072433546,-0.07660828,-0.08075237,-0.08486417,-0.088942245,-0.0929852,-0.09699142,-0.100959584,-0.10488816,-0.108775765,-0.112621054,-0.116422504,-0.120178856,-0.12388876,-0.1275508,-0.13116372,-0.1347262,-0.13823694,-0.14169475,-0.1450983,-0.14844646,-0.15173793,-0.15497163,-0.15814638,-0.161261,-0.16431446,-0.16730559,-0.1702334,-0.17309684,-0.17589484,-0.17862651,-0.18129078,-0.18388674,-0.18641354,-0.1888702,-0.19125597,-0.1935699,-0.19581127,-0.19797926,-0.20007311,-0.20209213,-0.2040356,-0.20590281,-0.20769323,-0.20940612,-0.211041,-0.21259728,-0.2140744,-0.21547194,-0.21678936,-0.21802625,-0.21918225,-0.2202569,-0.22124992,-0.222161,-0.22298978,-0.22373608,-0.22439966,-0.22498031,-0.22547787,-0.22589219,-0.22622323,-0.22647087,-0.22663504,-0.22671582,-0.22671317,-0.22662711,-0.22645782,-0.22620532,-0.22586982,-0.22545144,-0.22495043,-0.22436701,-0.22370142,-0.22295398,-0.22212502,-0.22121486,-0.22022393,-0.21915261,-0.21800137,-0.21677066,-0.21546097,-0.21407287,-0.21260688,-0.21106362,-0.2094437,-0.2077477,-0.2059764,-0.20413041,-0.20221049,-0.20021737,-0.1981518,-0.1960147,-0.19380675,-0.19152893,-0.189182,-0.18676694,-0.18428469,-0.18173623,-0.17912242,-0.17644438,-0.17370312,-0.1708996,-0.16803493,-0.16511029,-0.16212665,-0.15908521,-0.1559872,-0.15283364,-0.14962581,-0.1463649,-0.14305225,-0.13968892,-0.13627627,-0.13281569,-0.12930828,-0.12575547,-0.12215868,-0.11851907,-0.11483808,-0.11111711,-0.10735765,-0.10356091,-0.09972839,-0.09586164,-0.091961905,-0.08803073,-0.084069684,-0.08008003,-0.07606336,-0.072021276,-0.06795508,-0.06386638,-0.059756666,-0.0556276,-0.0514805,-0.047316995,-0.043138728,-0.03894705,-0.03474361,-0.030530054,-0.02630775,-0.022078332,-0.017843388,-0.013604574,-0.009363227,-0.00512103,-0.00087964535,0.0033595785,0.0075949878,0.011824906,0.016048007,0.020262606,0.024467103,0.028660133,0.032840066,0.03700538,0.041154422,0.045285914,0.04939822,0.053489767,0.057559222,0.06160506,0.06562565,0.06961976,0.07358584,0.07752241,0.08142801,0.085301355,0.08914097,0.09294538,0.09671338,0.10044351,0.10413432,0.1077847,0.1113932,0.11495845,0.11847935,0.12195451,0.12538272,0.12876263,0.13209322,0.1353732,0.13860132,0.14177656,0.14489776,0.14796367,0.15097338,0.15392573,0.15681969,0.15965411,0.16242819,0.16514082,0.16779102,0.17037794,0.17290069,0.17535818,0.1777498,0.18007457,0.18233162,0.18452036,0.18663988,0.18868944,0.19066834,0.19257596,0.1944116,0.19617459,0.19786438,0.19948041,0.20102204,0.20248884,0.2038803,0.20519592,0.20643526,0.20759794,0.20868358,0.2096918,0.2106223,0.21147478,0.21224897,0.21294466,0.21356158,0.21409959,0.21455856,0.21493834,0.21523887,0.21546003,0.21560182,0.21566427,0.21564735,0.21555115,0.21537574,0.21512124,0.21478778,0.21437553,0.21388471,0.21331555,0.21266827,0.21194318,0.2111406,0.21026087,0.20930433,0.20827144,0.20716257,0.20597818,0.20471881,0.20338489,0.201977,0.20049569,0.19894159,0.19731523,0.19561732,0.19384854,0.19200951,0.190101,0.18812379,0.18607855,0.18396614,0.18178737,0.17954312,0.17723416,0.17486146,0.17242594,0.16992845,0.16736999,0.16475162,0.16207416,0.15933876,0.15654649,0.1536983,0.15079533,0.14783867,0.14482951,0.14176887,0.13865796,0.13549803,0.13229012,0.12903553,0.12573555,0.12239127,0.11900402,0.115575075,0.1121058,0.10859734,0.10505107,0.10146844,0.09785057,0.09419894,0.09051499,0.08679991,0.083055176,0.07928228,0.07548242,0.07165714,0.067807846,0.06393604,0.06004301,0.05613027,0.052199345,0.04825162,0.04428856,0.040311635,0.036322318,0.032322064,0.02831238,0.02429473,0.02027059,0.016241457,0.012208812,0.008174125,0.0041389056,0.0001046285,-0.003927231,-0.00795519,-0.011977769,-0.01599348,-0.020000853,-0.023998436,-0.027984757,-0.03195834,-0.03591776,-0.039861552,-0.04378828,-0.047696512,-0.051584817,-0.055451773,-0.05929598,-0.063116044,-0.06691055,-0.07067816,-0.07441747,-0.07812713,-0.081805795,-0.08545213,-0.08906482,-0.09264256,-0.09618403,-0.09968799,-0.103153154,-0.106578246,-0.10996208,-0.113303415,-0.11660102,-0.11985375,-0.123060435,-0.1262199,-0.129331,-0.13239267,-0.13540378,-0.13836324,-0.14127003,-0.14412309,-0.1469214,-0.14966398,-0.15234987,-0.15497808,-0.15754768,-0.16005781,-0.16250755,-0.16489603,-0.16722238,-0.16948587,-0.17168562,-0.17382091,-0.17589097,-0.17789508,-0.17983256,-0.18170272,-0.18350495,-0.18523857,-0.18690301,-0.18849772,-0.19002216,-0.19147576,-0.19285807,-0.19416861,-0.19540697,-0.19657269,-0.19766542,-0.19868484,-0.19963053,-0.20050226,-0.2012997,-0.20202264,-0.20267086,-0.20324413,-0.20374231,-0.2041653,-0.20451295,-0.20478515,-0.20498191,-0.20510314,-0.2051489,-0.2051192,-0.20501408,-0.20483363,-0.20457794,-0.20424722,-0.20384158,-0.20336123,-0.2028064,-0.2021773,-0.20147425,-0.20069756,-0.19984752,-0.19892451,-0.19792895,-0.19686118,-0.19572167,-0.1945109,-0.19322932,-0.19187748,-0.1904559,-0.18896514,-0.18740582,-0.18577851,-0.18408392,-0.18232265,-0.1804954,-0.17860292,-0.17664587,-0.1746251,-0.17254134,-0.17039537,-0.1681881,-0.16592032,-0.16359288,-0.1612067,-0.15876271,-0.15626183,-0.15370505,-0.15109326,-0.14842753,-0.14570881,-0.1429382,-0.14011672,-0.13724542,-0.13432543,-0.13135777,-0.12834367,-0.12528422,-0.12218052,-0.11903381,-0.11584522,-0.11261603,-0.10934739,-0.106040485,-0.10269664,-0.09931705,-0.095903024,-0.092455834,-0.088976696,-0.085467,-0.08192798,-0.078361034,-0.07476745,-0.07114852,-0.06750567,-0.06384019,-0.060153514,-0.05644696,-0.052721865,-0.048979707,-0.04522182,-0.041449554,-0.037664384,-0.033867635,-0.030060789,-0.026245221,-0.022422275,-0.018593475,-0.014760114,-0.010923721,-0.0070856437,-0.0032472648,0.00058992207,0.0044246055,0.008255266,0.01208055,0.015899114,0.01970945,0.023510259,0.027300052,0.031077504,0.03484126,0.03858986,0.042322032,0.04603632,0.049731407,0.05340601,0.05705867,0.060688175,0.064293094,0.067872174,0.07142416,0.07494767,0.078441516,0.08190434,0.08533493,0.088732064,0.09209448,0.09542099,0.098710395,0.10196146,0.10517309,0.10834406,0.111473314,0.114559606,0.11760193,0.120599166,0.123550236,0.126454,0.12930955,0.13211581,0.13487169,0.13757639,0.14022882,0.142828,0.14537315,0.14786328,0.15029745,0.15267493,0.15499482,0.15725629,0.15945849,0.16160077,0.16368228,0.16570233,0.16766024,0.1695553,0.17138681,0.17315422,0.17485686,0.17649417,0.17806555,0.17957051,0.1810085,0.18237907,0.18368174,0.18491606,0.1860816,0.18717805,0.18820494,0.18916202,0.19004896,0.19086549,0.1916113,0.1922862,0.19288997,0.19342247,0.19388348,0.19427292,0.19459069,0.19483669,0.19501092,0.19511332,0.19514391,0.19510272,0.19498979,0.1948052,0.19454914,0.19422166,0.193823,0.19335327,0.19281271,0.1922016,0.19152018,0.19076875,0.18994762,0.18905713,0.18809769,0.18706962,0.1859734,0.1848095,0.18357831,0.18228036,0.1809162,0.17948632,0.17799132,0.17643175,0.17480828,0.17312151,0.1713721,0.16956076,0.16768813,0.165755,0.16376214,0.16171019,0.15960006,0.15743257,0.15520845,0.15292862,0.15059394,0.14820537,0.1457637,0.1432699,0.14072499,0.13812983,0.13548547,0.13279296,0.1300532,0.12726727,0.12443625,0.121561274,0.11864327,0.11568341,0.11268289,0.10964269,0.106564045,0.10344814,0.100296035,0.09710897,0.09388821,0.090634815,0.08735008,0.08403522,0.08069155,0.07732018,0.07392243,0.07049966,0.06705296,0.06358371,0.060093276,0.05658279,0.053053644,0.049507134,0.045944672,0.0423674,0.038776733,0.035174087,0.031560615,0.027937734,0.02430689,0.02066923,0.01702619,0.013379198,0.00972943,0.006078299,0.002427172,-0.001222536,-0.0048696585,-0.008512758,-0.012150418,-0.015781485,-0.019404527,-0.023018133,-0.026621155,-0.030212186,-0.03378992,-0.03735296,-0.040900175,-0.04443019,-0.04794162,-0.051433366,-0.054904062,-0.058352366,-0.061777197,-0.0651772,-0.06855109,-0.07189782,-0.07521604,-0.07850458,-0.08176217,-0.08498779,-0.08818017,-0.09133812,-0.09446059,-0.09754644,-0.100594476,-0.103603736,-0.10657303,-0.10950134,-0.11238754,-0.11523068,-0.11802974,-0.12078361,-0.12349144,-0.12615225,-0.12876493,-0.13132875,-0.1338427,-0.13630582,-0.13871741,-0.14107649,-0.14338228,-0.14563385,-0.14783058,-0.14997154,-0.15205604,-0.15408342,-0.15605286,-0.15796371,-0.1598153,-0.16160703,-0.1633382,-0.16500823,-0.1666166,-0.1681627,-0.169646,-0.17106602,-0.1724223,-0.17371431,-0.17494164,-0.17610393,-0.1772007,-0.17823169,-0.17919649,-0.18009481,-0.18092631,-0.18169081,-0.18238802,-0.18301773,-0.18357976,-0.18407393,-0.1845001,-0.18485817,-0.18514805,-0.18536966,-0.18552299,-0.18560797,-0.18562466,-0.1855731,-0.18545328,-0.18526538,-0.18500945,-0.18468565,-0.18429413,-0.18383507,-0.18330869,-0.18271525,-0.18205495,-0.18132813,-0.18053505,-0.17967609,-0.17875157,-0.17776188,-0.17670742,-0.17558861,-0.17440593,-0.17315984,-0.17185083,-0.17047943,-0.16904618,-0.16755162,-0.16599637,-0.16438104,-0.16270623,-0.16097263,-0.15918085,-0.15733166,-0.15542574,-0.15346384,-0.15144669,-0.14937508,-0.1472498,-0.14507167,-0.14284153,-0.14056022,-0.1382286,-0.13584758,-0.13341807,-0.13094097,-0.12841725,-0.12584783,-0.123233706,-0.120575875,-0.11787531,-0.11513305,-0.11235011,-0.10952759,-0.1066665,-0.103767924,-0.100832954,-0.0978627,-0.09485829,-0.091820806,-0.088751435,-0.08565127,-0.08252152,-0.079363346,-0.076177895,-0.07296638,-0.069729984,-0.06646992,-0.063187435,-0.059883695,-0.056559943,-0.053217426,-0.049857397,-0.04648107,-0.043089703,-0.03968456,-0.036266908,-0.032838024,-0.029399134,-0.02595153,-0.022496492,-0.019035285,-0.0155692175,-0.01209951,-0.008627474,-0.005154388,-0.0016815215,0.0017898194,0.0052584074,0.008722942,0.012182165,0.015634768,0.019079529,0.022515185,0.025940455,0.029354095,0.032754853,0.036141492,0.03951278,0.04286747,0.04620438,0.04952222,0.052819878,0.056096043,0.059349597,0.06257937,0.06578412,0.06896276,0.07211408,0.07523694,0.07833027,0.08139287,0.08442372,0.08742162,0.09038554,0.093314484,0.09620726,0.09906294,0.10188041,0.104658686,0.10739683,0.11009376,0.11274858,0.11536035,0.117928065,0.12045088,0.12292783,0.12535806,0.12774074,0.13007498,0.13235997,0.13459487,0.13677892,0.13891135,0.14099139,0.14301834,0.14499141,0.14690998,0.14877339,0.15058091,0.152332,0.15402597,0.15566227,0.15724032,0.1587596,0.16021958,0.16161972,0.16295959,0.16423874,0.16545668,0.16661306,0.16770747,0.1687395,0.16970891,0.17061527,0.17145835,0.17223787,0.17295358,0.17360526,0.17419268,0.1747157,0.17517416,0.1755679,0.17589685,0.17616093,0.17636007,0.17649421,0.1765634,0.1765676,0.17650688,0.17638125,0.17619088,0.17593583,0.17561622,0.17523225,0.17478406,0.17427187,0.17369592,0.17305642,0.1723537,0.17158802,0.17075972,0.16986912,0.16891661,0.16790254,0.16682738,0.1656915,0.16449541,0.16323954,0.1619244,0.16055055,0.15911846,0.15762877,0.15608199,0.15447879,0.15281975,0.15110552,0.14933679,0.14751421,0.14563848,0.14371036,0.14173055,0.13969985,0.13761897,0.13548881,0.13331005,0.13108362,0.12881033,0.12649113,0.12412676,0.121718206,0.119266406,0.11677218,0.11423653,0.111660495,0.109044895,0.106390804,0.10369927,0.10097117,0.09820761,0.09540962,0.092578314,0.08971463,0.08681969,0.08389467,0.080940515,0.077958405,0.07494951,0.071914814,0.068855524,0.06577278,0.06266781,0.059541613,0.05639542,0.053230494,0.05004784,0.04684873,0.043634422,0.04040595,0.037164584,0.033911612,0.030648077,0.027375264,0.024094377,0.020806713,0.017513324,0.014215505,0.010914553,0.0076115187,0.0043077003,0.0010043979,-0.002297338,-0.0055962205,-0.008891027,-0.012180474,-0.015463516,-0.018738873,-0.022005249,-0.025261622,-0.028506726,-0.03173928,-0.034958273,-0.03816244,-0.041350536,-0.04452157,-0.04767429,-0.050807565,-0.053920165,-0.057011105,-0.060079195,-0.06312324,-0.06614229,-0.06913519,-0.07210075,-0.07503806,-0.077946,-0.08082348,-0.083669424,-0.08648292,-0.08926291,-0.09200831,-0.09471826,-0.097391725,-0.10002768,-0.1026253,-0.10518362,-0.10770161,-0.11017853,-0.112613425,-0.11500541,-0.117353596,-0.11965725,-0.12191549,-0.12412748,-0.1262925,-0.12840979,-0.13047847,-0.13249801,-0.13446754,-0.13638645,-0.13825399,-0.14006959,-0.14183256,-0.14354226,-0.14519817,-0.1467997,-0.14834619,-0.14983726,-0.1512723,-0.15265079,-0.15397237,-0.1552365,-0.15644276,-0.15759073,-0.15868008,-0.15971042,-0.16068137,-0.16159266,-0.162444,-0.16323501,-0.16396554,-0.16463536,-0.1652442,-0.1657919,-0.16627832,-0.16670327,-0.16706666,-0.16736841,-0.16760841,-0.16778664,-0.16790308,-0.16795765,-0.16795047,-0.1678815,-0.16775087,-0.16755861,-0.16730486,-0.16698971,-0.16661337,-0.16617598,-0.16567776,-0.1651189,-0.1644997,-0.16382033,-0.16308115,-0.16228247,-0.16142459,-0.16050786,-0.15953268,-0.15849943,-0.15740852,-0.15626037,-0.1550555,-0.15379432,-0.15247734,-0.15110512,-0.14967814,-0.14819701,-0.14666227,-0.14507456,-0.14343445,-0.14174259,-0.13999967,-0.1382063,-0.1363632,-0.1344711,-0.13253067,-0.13054271,-0.12850794,-0.1264272,-0.12430118,-0.12213078,-0.11991682,-0.11766006,-0.11536142,-0.11302182,-0.110642,-0.10822296,-0.10576566,-0.10327092,-0.10073971,-0.098173,-0.09557181,-0.09293701,-0.09026963,-0.08757076,-0.08484125,-0.08208223,-0.07929476,-0.07647976,-0.07363837,-0.07077163,-0.067880675,-0.064966455,-0.06203012,-0.05907285,-0.05609557,-0.05309949,-0.050085787,-0.047055423,-0.04400961,-0.040949546,-0.03787621,-0.03479083,-0.031694535,-0.028588546,-0.02547387,-0.02235172,-0.019223314,-0.016089747,-0.012952176,-0.009811757,-0.006669646,-0.0035270005,-0.0003849771,0.0027552713,0.0058925934,0.009025829,0.012153838,0.015275469,0.018389575,0.021495016,0.024590664,0.027675379,0.030748041,0.03380751,0.036852684,0.039882448,0.042895697,0.045891337,0.04886826,0.051825408,0.054761693,0.057676047,0.06056742,0.06343474,0.06627699,0.06909314,0.07188215,0.074643046,0.0773748,0.08007643,0.08274696,0.08538544,0.0879909,0.090562426,0.093099065,0.09559994,0.09806413,0.10049074,0.10287893,0.10522783,0.107536584,0.1098044,0.11203047,0.114213966,0.116354115,0.11845018,0.12050142,0.12250708,0.12446647,0.1263789,0.12824367,0.13006015,0.13182771,0.13354573,0.13521354,0.13683064,0.13839644,0.1399104,0.14137197,0.14278066,0.14413598,0.1454375,0.14668472,0.14787725,0.14901467,0.1500966,0.15112267,0.15209255,0.1530059,0.15386242,0.15466185,0.15540393,0.15608838,0.15671504,0.15728368,0.15779413,0.15824623,0.15863992,0.15897498,0.15925139,0.15946907,0.15962797,0.15972808,0.15976942,0.15975192,0.15967573,0.15954088,0.1593474,0.15909548,0.15878518,0.1584167,0.15799017,0.15750583,0.15696386,0.15636449,0.15570799,0.15499462,0.15422472,0.15339856,0.15251648,0.15157887,0.15058608,0.14953855,0.14843662,0.14728083,0.14607157,0.1448093,0.1434946,0.1421279,0.1407098,0.1392408,0.13772148,0.13615248,0.13453433,0.13286772,0.13115326,0.12939161,0.12758349,0.12572952,0.12383047,0.12188703,0.119899936,0.117869996,0.115797944,0.11368456,0.11153067,0.10933707,0.107104614,0.10483415,0.10252649,0.10018256,0.0978032,0.095389344,0.092941895,0.09046172,0.08794983,0.08540711,0.08283454,0.080233105,0.07760371,0.07494742,0.07226515,0.06955798,0.06682689,0.064072855,0.061296962,0.0585002,0.055683665,0.052848373,0.04999534,0.047125697,0.044240445,0.04134072,0.038427558,0.035502013,0.03256523,0.029618226,0.026662167,0.023698108,0.020727107,0.017750334,0.01476885,0.011783719,0.00879611,0.005807055,0.002817724,-0.00017081574,-0.0031575095,-0.00614118,-0.009120813,-0.012095228,-0.015063388,-0.018024232,-0.020976601,-0.023919499,-0.026851764,-0.029772364,-0.032680273,-0.035574354,-0.03845362,-0.041316956,-0.04416335,-0.046991795,-0.049801204,-0.05259063,-0.05535897,-0.05810526,-0.06082855,-0.06352777,-0.06620202,-0.06885026,-0.07147156,-0.074065015,-0.076629624,-0.07916451,-0.08166871,-0.08414135,-0.08658157,-0.08898844,-0.09136111,-0.09369878,-0.096000515,-0.09826558,-0.10049311,-0.10268237,-0.104832485,-0.10694279,-0.10901247,-0.111040816,-0.113027036,-0.11497052,-0.116870545,-0.11872637,-0.120537475,-0.12230314,-0.12402269,-0.12569565,-0.12732135,-0.12889922,-0.13042875,-0.13190937,-0.1333406,-0.13472186,-0.13605279,-0.13733287,-0.13856164,-0.13973872,-0.14086372,-0.14193618,-0.14295584,-0.14392228,-0.14483522,-0.14569433,-0.14649934,-0.14724998,-0.14794603,-0.14858724,-0.14917342,-0.14970437,-0.15017997,-0.15060002,-0.15096445,-0.15127315,-0.15152603,-0.15172303,-0.15186411,-0.15194927,-0.15197851,-0.1519518,-0.15186927,-0.15173092,-0.15153687,-0.15128721,-0.15098207,-0.15062158,-0.15020594,-0.14973532,-0.14920989,-0.14862995,-0.14799567,-0.14730738,-0.14656535,-0.14576983,-0.14492123,-0.14401984,-0.14306605,-0.14206022,-0.14100274,-0.1398941,-0.13873467,-0.1375249,-0.13626537,-0.13495642,-0.13359869,-0.13219266,-0.13073885,-0.12923785,-0.12769023,-0.12609664,-0.12445762,-0.12277383,-0.121045955,-0.11927457,-0.11746043,-0.11560424,-0.11370661,-0.111768335,-0.10979019,-0.10777282,-0.10571706,-0.10362367,-0.10149351,-0.099327266,-0.09712583,-0.094890065,-0.0926207,-0.09031868,-0.08798491,-0.08562015,-0.08322533,-0.08080138,-0.07834926,-0.07586976,-0.07336386,-0.07083258,-0.06827674,-0.06569736,-0.063095436,-0.060471848,-0.05782762,-0.0551638,-0.052481264,-0.04978106,-0.0470642,-0.04433175,-0.041584607,-0.038823843,-0.036050558,-0.033265635,-0.030470181,-0.027665298,-0.024851881,-0.022031046,-0.019203827,-0.016371341,-0.013534496,-0.010694402,-0.007852183,-0.0050087376,-0.0021651834,0.00067735836,0.0035179872,0.0063555874,0.009189051,0.012017475,0.014839755,0.017654857,0.020461677,0.02325933,0.026046716,0.028822761,0.031586584,0.034337103,0.037073247,0.03979415,0.04249876,0.0451861,0.047855105,0.050504956,0.05313462,0.05574307,0.0583295,0.060892895,0.063432276,0.06594683,0.06843561,0.07089764,0.07333216,0.07573823,0.07811497,0.08046149,0.08277704,0.08506072,0.0873117,0.089529224,0.09171249,0.09386063,0.095973015,0.09804881,0.10008728,0.102087654,0.1040493,0.1059715,0.10785351,0.10969474,0.11149454,0.11325217,0.11496714,0.11663877,0.11826644,0.1198497,0.121387884,0.12288052,0.12432698,0.12572691,0.12707974,0.12838498,0.12964225,0.13085108,0.13201101,0.1331217,0.1341828,0.13519388,0.1361546,0.1370647,0.13792384,0.13873172,0.13948809,0.14019273,0.14084536,0.14144579,0.14199385,0.14248936,0.14293216,0.14332215,0.14365919,0.14394318,0.14417408,0.14435181,0.14447635,0.14454769,0.14456582,0.14453079,0.14444262,0.1443014,0.14410721,0.14386013,0.1435603,0.14320786,0.142803,0.14234583,0.14183663,0.14127555,0.1406629,0.13999887,0.13928375,0.13851787,0.13770153,0.13683502,0.13591875,0.13495305,0.13393831,0.13287494,0.13176335,0.13060398,0.1293973,0.12814377,0.12684388,0.12549815,0.12410707,0.122671224,0.12119114,0.11966738,0.11810055,0.11649125,0.11484009,0.11314771,0.11141476,0.10964189,0.10782979,0.10597914,0.10409064,0.10216501,0.100203,0.09820534,0.09617279,0.09410609,0.092006065,0.08987349,0.087709166,0.08551391,0.08328855,0.081033915,0.07875088,0.07644026,0.07410294,0.07173979,0.069351725,0.0669396,0.064504325,0.06204682,0.059567995,0.057068795,0.05455012,0.052012928,0.049458146,0.046886742,0.04429968,0.04169789,0.03908236,0.03645405,0.03381394,0.031163018,0.028502243,0.025832608,0.023155104,0.020470735,0.01778046,0.015085289,0.012386215,0.009684234,0.0069803568,0.004275545,0.0015708134,-0.0011328468,-0.0038344394,-0.006532958,-0.009227443,-0.011916892,-0.014600316,-0.017276734,-0.019945148,-0.022604614,-0.025254153,-0.027892783,-0.03051953,-0.033133466,-0.03573362,-0.03831905,-0.040888812,-0.04344196,-0.04597758,-0.04849475,-0.050992537,-0.05347008,-0.055926416,-0.058360714,-0.06077204,-0.06315955,-0.0655224,-0.06785969,-0.07017061,-0.07245431,-0.074709974,-0.076936804,-0.07913396,-0.0813007,-0.0834362,-0.085539706,-0.08761051,-0.0896478,-0.09165092,-0.09361907,-0.095551595,-0.097447835,-0.09930705,-0.10112863,-0.102911934,-0.104656264,-0.10636107,-0.108025715,-0.10964961,-0.11123222,-0.11277294,-0.11427127,-0.115726635,-0.117138565,-0.11850657,-0.119830154,-0.12110888,-0.12234226,-0.12352992,-0.12467143,-0.12576638,-0.12681445,-0.12781522,-0.12876837,-0.1296736,-0.1305306,-0.13133907,-0.13209873,-0.13280939,-0.13347074,-0.13408263,-0.13464484,-0.13515718,-0.1356195,-0.1360317,-0.13639359,-0.13670513,-0.1369662,-0.13717674,-0.13733672,-0.13744608,-0.13750483,-0.13751301,-0.13747057,-0.13737763,-0.13723423,-0.13704047,-0.1367964,-0.1365022,-0.13615797,-0.1357639,-0.13532013,-0.13482685,-0.13428433,-0.13369274,-0.13305236,-0.13236344,-0.13162625,-0.13084112,-0.13000835,-0.12912829,-0.12820129,-0.1272277,-0.12620792,-0.12514234,-0.12403141,-0.122875534,-0.12167518,-0.12043083,-0.119142935,-0.11781202,-0.11643861,-0.11502319,-0.11356636,-0.112068646,-0.110530645,-0.10895295,-0.10733611,-0.10568082,-0.10398768,-0.10225731,-0.10049041,-0.09868761,-0.09684966,-0.09497716,-0.093070924,-0.091131575,-0.0891599,-0.08715663,-0.0851226,-0.08305844,-0.08096502,-0.07884314,-0.076693505,-0.07451698,-0.07231444,-0.07008659,-0.06783433,-0.06555856,-0.063260004,-0.060939595,-0.05859819,-0.056236725,-0.053855963,-0.051456843,-0.049040325,-0.04660719,-0.0441584,-0.041694928,-0.03921756,-0.036727287,-0.034225024,-0.03171177,-0.029188322,-0.026655678,-0.024114843,-0.02156663,-0.019012038,-0.016452074,-0.013887564,-0.011319507,-0.008748921,-0.0061766235,-0.0036036228,-0.001030867,0.0015406338,0.0041100616,0.0066764113,0.009238677,0.011796042,0.014347511,0.01689208,0.019428954,0.02195713,0.024475688,0.026983649,0.02948022,0.03196443,0.034435295,0.036892056,0.039333757,0.04175944,0.044168342,0.04655953,0.048932087,0.051285252,0.053618133,0.055929862,0.05821956,0.060486507,0.06272983,0.064948656,0.06714229,0.06930992,0.07145067,0.07356389,0.07564878,0.07770456,0.07973047,0.08172586,0.083689995,0.08562211,0.0875216,0.089387745,0.091219835,0.09301731,0.094779484,0.09650567,0.098195374,0.09984793,0.10146276,0.10303925,0.10457693,0.10607521,0.107533544,0.108951464,0.11032846,0.111664005,0.112957716,0.114209086,0.1154177,0.116583094,0.11770494,0.11878281,0.119816326,0.12080517,0.121749,0.122647434,0.12350026,0.12430714,0.1250678,0.12578203,0.12644956,0.12707017,0.12764366,0.1281699,0.12864865,0.12907982,0.12946324,0.12979886,0.1300865,0.13032612,0.13051772,0.13066117,0.13075648,0.13080366,0.1308027,0.13075365,0.13065656,0.13051145,0.13031845,0.13007766,0.12978916,0.12945311,0.12906966,0.12863898,0.12816127,0.12763673,0.12706552,0.12644798,0.12578431,0.12507479,0.12431969,0.12351936,0.12267408,0.121784195,0.12085008,0.11987211,0.118850626,0.11778607,0.116678864,0.1155294,0.11433817,0.11310563,0.11183223,0.11051848,0.109164916,0.107772,0.10634032,0.10487039,0.103362836,0.10181815,0.10023696,0.09861993,0.09696756,0.09528056,0.09355958,0.0918052,0.09001814,0.08819906,0.0863487,0.084467664,0.08255673,0.080616646,0.07864805,0.07665174,0.0746285,0.072579,0.070504054,0.06840451,0.06628104,0.06413449,0.061965674,0.059775434,0.057564504,0.05533375,0.053084068,0.05081617,0.04853099,0.0462294,0.043912157,0.04158018,0.039234344,0.03687556,0.0345046,0.0321224,0.029729899,0.027327862,0.024917247,0.022498999,0.02007389,0.017642882,0.015206927,0.012766807,0.010323482,0.007877852,0.0054308763,0.0029833377,0.0005361941,-0.0019096094,-0.0043532182,-0.0067937355,-0.009230264,-0.011661913,-0.014087789,-0.016507003,-0.01891867,-0.021321913,-0.023715843,-0.026099596,-0.028472293,-0.030833075,-0.033181075,-0.035515442,-0.037835326,-0.040139887,-0.04242827,-0.044699658,-0.046953224,-0.049188152,-0.05140362,-0.05359884,-0.05577301,-0.05792534,-0.06005506,-0.062161393,-0.06424358,-0.06630088,-0.06833254,-0.070337825,-0.07231603,-0.074266426,-0.07618833,-0.07808104,-0.07994388,-0.08177619,-0.083577305,-0.08534659,-0.08708342,-0.08878716,-0.0904572,-0.09209297,-0.09369388,-0.095259346,-0.09678883,-0.0982818,-0.099737704,-0.10115604,-0.10253632,-0.10387805,-0.105180755,-0.106444,-0.10766732,-0.1088503,-0.109992534,-0.11109363,-0.112153195,-0.11317086,-0.1141463,-0.11507918,-0.11596916,-0.116815954,-0.117619276,-0.11837885,-0.11909445,-0.11976579,-0.12039269,-0.120974936,-0.12151234,-0.12200474,-0.12245197,-0.12285389,-0.123210385,-0.12352137,-0.12378674,-0.12400642,-0.12418038,-0.12430856,-0.12439094,-0.124427535,-0.12441836,-0.12436343,-0.12426281,-0.12411654,-0.12392474,-0.12368747,-0.12340487,-0.123077035,-0.12270418,-0.12228642,-0.12182393,-0.12131694,-0.12076564,-0.12017028,-0.11953107,-0.11884832,-0.11812227,-0.11735322,-0.1165415,-0.115687415,-0.11479131,-0.11385354,-0.11287446,-0.111854486,-0.11079399,-0.109693415,-0.108553156,-0.1073737,-0.10615547,-0.10489892,-0.10360461,-0.10227294,-0.10090452,-0.0994998,-0.09805935,-0.09658374,-0.09507348,-0.09352921,-0.09195149,-0.0903409,-0.08869809,-0.087023646,-0.085318245,-0.0835825,-0.08181707,-0.08002264,-0.07819989,-0.076349474,-0.07447212,-0.07256852,-0.0706394,-0.068685494,-0.06670751,-0.064706214,-0.062682316,-0.060636632,-0.0585699,-0.056482866,-0.05437636,-0.05225112,-0.050107982,-0.047947735,-0.04577114,-0.04357907,-0.041372288,-0.03915167,-0.036918,-0.0346721,-0.032414842,-0.030147014,-0.027869513,-0.025583155,-0.023288755,-0.020987218,-0.018679341,-0.016366031,-0.014048116,-0.01172642,-0.009401857,-0.007075227,-0.0047474434,-0.002419335,-9.172864e-5,0.0022344624,0.0045584124,0.006879296,0.009196205,0.011508347,0.013814819,0.016114801,0.018407485,0.020691969,0.022967482,0.025233129,0.027488114,0.029731646,0.03196285,0.03418096,0.036385123,0.038574558,0.040748503,0.04290611,0.04504665,0.04716929,0.049273286,0.051357906,0.053422347,0.05546591,0.0574878,0.059487313,0.061463762,0.06341638,0.0653445,0.06724739,0.0691244,0.07097487,0.07279808,0.07459344,0.07636025,0.07809789,0.07980578,0.08148326,0.08312975,0.0847447,0.08632746,0.087877534,0.089394346,0.09087738,0.09232606,0.09373992,0.09511846,0.09646119,0.0977676,0.09903727,0.10026976,0.10146458,0.1026214,0.103739776,0.10481928,0.105859615,0.10686039,0.10782123,0.10874186,0.10962194,0.11046117,0.111259244,0.11201594,0.11273097,0.113404095,0.11403513,0.11462385,0.11517003,0.11567355,0.11613421,0.11655189,0.11692646,0.11725779,0.1175458,0.11779041,0.11799156,0.1181492,0.11826328,0.11833382,0.11836077,0.1183442,0.11828412,0.11818059,0.11803364,0.11784339,0.11760991,0.11733334,0.117013775,0.11665138,0.11624631,0.115798734,0.11530886,0.114776865,0.11420299,0.11358749,0.112930566,0.112232514,0.11149364,0.1107142,0.10989452,0.109034956,0.10813578,0.107197404,0.1062202,0.1052045,0.10415074,0.103059314,0.10193069,0.10076524,0.09956345,0.09832581,0.097052716,0.095744744,0.094402365,0.09302607,0.09161641,0.0901739,0.088699155,0.08719267,0.085655026,0.08408686,0.08248868,0.080861166,0.07920494,0.07752055,0.07580868,0.07407003,0.07230515,0.07051477,0.06869953,0.0668602,0.06499735,0.06311173,0.06120411,0.05927509,0.057325456,0.05535598,0.053367306,0.051360205,0.04933545,0.047293838,0.045236032,0.043162834,0.04107509,0.038973466,0.036858793,0.0347319,0.03259349,0.030444391,0.028285466,0.026117401,0.023941059,0.021757236,0.0195668,0.01737045,0.015169052,0.012963477,0.010754424,0.008542765,0.006329368,0.0041149394,0.0019003497,-0.00031358778,-0.0025260039,-0.004736196,-0.006943298,-0.009146444,-0.011344938,-0.013537916,-0.015724527,-0.017904073,-0.020075703,-0.022238575,-0.024392,-0.026535144,-0.028667223,-0.030787399,-0.032895017,-0.034989253,-0.03706929,-0.03913448,-0.041184016,-0.043217108,-0.04523311,-0.047231253,-0.049210813,-0.051171012,-0.053111248,-0.05503077,-0.056928836,-0.058804855,-0.060658105,-0.062487867,-0.064293586,-0.06607456,-0.06783009,-0.06955967,-0.07126261,-0.07293829,-0.0745861,-0.076205514,-0.07779591,-0.07935669,-0.08088738,-0.08238738,-0.083856136,-0.085293196,-0.086698,-0.08807009,-0.08940891,-0.09071405,-0.091985054,-0.093221426,-0.09442277,-0.0955887,-0.096718706,-0.09781249,-0.09886964,-0.09988975,-0.10087255,-0.10181764,-0.102724716,-0.10359343,-0.10442355,-0.10521476,-0.105966784,-0.10667939,-0.10735234,-0.10798538,-0.10857833,-0.10913101,-0.10964321,-0.11011476,-0.110545546,-0.11093541,-0.11128425,-0.11159193,-0.11185842,-0.11208359,-0.11226741,-0.11240984,-0.11251083,-0.1125704,-0.112588525,-0.11256525,-0.11250057,-0.112394586,-0.11224732,-0.11205888,-0.11182933,-0.11155881,-0.111247435,-0.11089532,-0.11050266,-0.11006961,-0.109596334,-0.10908304,-0.10852997,-0.1079373,-0.10730531,-0.106634244,-0.10592438,-0.105176,-0.10438939,-0.10356488,-0.10270279,-0.10180345,-0.100867234,-0.099894494,-0.09888561,-0.09784099,-0.09676101,-0.09564611,-0.09449673,-0.09331329,-0.09209626,-0.09084611,-0.08956332,-0.08824837,-0.08690178,-0.085524045,-0.08411571,-0.08267728,-0.081209354,-0.07971244,-0.07818714,-0.07663402,-0.07505366,-0.07344666,-0.07181364,-0.0701552,-0.06847198,-0.066764615,-0.065033734,-0.063279994,-0.06150405,-0.059706576,-0.057888247,-0.05604974,-0.054191746,-0.052314956,-0.050420087,-0.048507817,-0.04657888,-0.04463399,-0.042673886,-0.040699273,-0.038710907,-0.036709506,-0.034695834,-0.032670643,-0.03063466,-0.02858866,-0.02653339,-0.024469621,-0.022398124,-0.02031964,-0.018234957,-0.016144836,-0.014050055,-0.011951399,-0.009849617,-0.007745493,-0.0056398064,-0.0035333443,-0.0014268546,0.0006788736,0.002783068,0.0048849555,0.0069837496,0.009078709,0.01116905,0.013254009,0.015332822,0.017404716,0.019468956,0.02152478,0.023571433,0.025608167,0.027634231,0.029648907,0.031651452,0.03364114,0.035617225,0.03757902,0.0395258,0.041456856,0.043371487,0.045268998,0.04714871,0.049009934,0.050851993,0.05267425,0.054475997,0.056256637,0.058015484,0.059751928,0.061465353,0.06315511,0.06482063,0.06646129,0.0680765,0.0696657,0.0712283,0.072763786,0.074271545,0.07575107,0.077201866,0.07862336,0.0800151,0.081376545,0.082707234,0.08400671,0.085274495,0.086510144,0.08771324,0.08888333,0.09002004,0.09112294,0.09219166,0.09322584,0.094225086,0.095189095,0.09611748,0.09700998,0.09786625,0.098686025,0.099469,0.100214906,0.10092352,0.1015946,0.10222788,0.102823205,0.10338035,0.103899136,0.1043794,0.10482099,0.105223775,0.105587594,0.10591239,0.10619801,0.10644443,0.10665155,0.10681933,0.10694771,0.10703671,0.10708628,0.10709643,0.10706721,0.10699863,0.10689074,0.10674362,0.106557325,0.106331974,0.106067635,0.10576448,0.1054226,0.105042174,0.10462333,0.1041663,0.10367122,0.103138335,0.10256784,0.10195997,0.10131499,0.10063313,0.09991471,0.09915997,0.09836921,0.09754278,0.09668098,0.09578416,0.094852656,0.09388683,0.09288709,0.09185378,0.09078735,0.089688174,0.08855667,0.08739332,0.08619853,0.08497277,0.08371652,0.08243023,0.08111444,0.079769604,0.07839626,0.07699495,0.07556614,0.07411045,0.07262839,0.0711205,0.0695874,0.06802962,0.06644781,0.064842485,0.06321433,0.061563887,0.05989181,0.058198728,0.056485318,0.054752138,0.052999895,0.051229265,0.04944083,0.047635302,0.045813408,0.043975737,0.04212301,0.04025597,0.038375225,0.03648151,0.034575533,0.03265806,0.030729696,0.028791208,0.02684336,0.024886783,0.022922251,0.020950535,0.01897227,0.016988233,0.0149991615,0.013005836,0.011008897,0.009009127,0.007007312,0.005004095,0.0030002585,0.0009965925,-0.0010062684,-0.0030075358,-0.005006427,-0.007002307,-0.008994393,-0.0109819565,-0.012964221,-0.014940554,-0.016910188,-0.018872354,-0.020826431,-0.022771657,-0.024707269,-0.026632668,-0.028547097,-0.03044986,-0.032340214,-0.034217574,-0.036081202,-0.037930377,-0.03976452,-0.041582927,-0.043384884,-0.04516983,-0.04693707,-0.048685938,-0.050415874,-0.05212622,-0.05381635,-0.055485617,-0.057133496,-0.05875936,-0.060362592,-0.061942674,-0.06349904,-0.065031044,-0.06653824,-0.06802006,-0.06947594,-0.07090536,-0.07230786,-0.07368293,-0.075030014,-0.07634872,-0.07763856,-0.07889902,-0.08012973,-0.081330225,-0.08250003,-0.08363884,-0.08474618,-0.08582168,-0.08686495,-0.08787565,-0.088853434,-0.08979791,-0.090708815,-0.0915858,-0.09242856,-0.093236834,-0.09401033,-0.09474877,-0.09545191,-0.09611954,-0.0967514,-0.09734729,-0.09790702,-0.09843044,-0.09891729,-0.099367514,-0.0997809,-0.10015732,-0.100496724,-0.10079894,-0.10106391,-0.10129154,-0.10148178,-0.10163461,-0.10174995,-0.10182781,-0.10186818,-0.10187106,-0.10183647,-0.10176447,-0.10165507,-0.10150837,-0.101324424,-0.10110333,-0.100845195,-0.10055014,-0.10021826,-0.09984977,-0.09944476,-0.09900342,-0.09852596,-0.09801256,-0.097463414,-0.096878774,-0.09625887,-0.09560392,-0.094914235,-0.094190076,-0.093431704,-0.09263944,-0.09181361,-0.09095449,-0.090062454,-0.08913785,-0.08818105,-0.08719237,-0.086172245,-0.08512108,-0.08403922,-0.082927115,-0.081785224,-0.080613926,-0.0794137,-0.07818503,-0.076928325,-0.075644106,-0.07433283,-0.07299508,-0.07163125,-0.07024192,-0.068827644,-0.06738889,-0.065926224,-0.06444024,-0.06293143,-0.061400414,-0.05984774,-0.058274038,-0.05667983,-0.055065762,-0.053432465,-0.051780473,-0.05011045,-0.04842306,-0.046718843,-0.04499849,-0.043262683,-0.041511986,-0.03974709,-0.03796865,-0.036177382,-0.034373857,-0.03255879,-0.030732907,-0.028896786,-0.027051166,-0.025196765,-0.023334183,-0.02146416,-0.019587385,-0.017704597,-0.015816402,-0.013923541,-0.0120267635,-0.010126671,-0.008224016,-0.0063195466,-0.004413866,-0.0025077262,-0.0006018742,0.0013030828,0.0032063983,0.005107374,0.007005263,0.008899465,0.010789205,0.012673825,0.014552636,0.016424946,0.018290076,0.02014734,0.021996062,0.02383557,0.025665188,0.027484251,0.0292921,0.031088073,0.032871515,0.03464178,0.036398232,0.038140226,0.039867137,0.041578323,0.04327318,0.04495109,0.04661145,0.048253648,0.049877103,0.05148123,0.05306544,0.054629177,0.056171864,0.057692952,0.059191905,0.060668167,0.062121224,0.06355056,0.06495564,0.06633598,0.06769108,0.06902047,0.07032366,0.0716002,0.072849624,0.074071504,0.0752654,0.07643089,0.077567555,0.07867501,0.079752855,0.08080071,0.08181822,0.08280503,0.08376077,0.08468513,0.085577786,0.08643843,0.08726676,0.08806249,0.088825345,0.089555085,0.09025145,0.09091419,0.0915431,0.092137955,0.09269858,0.09322477,0.09371635,0.09417317,0.09459508,0.09498196,0.09533366,0.09565009,0.095931165,0.09617678,0.096386895,0.096561424,0.09670034,0.096803606,0.09687123,0.09690316,0.096899465,0.096860126,0.096785195,0.09667471,0.09652875,0.0963474,0.096130714,0.09587881,0.095591806,0.09526982,0.094913,0.0945215,0.09409546,0.093635105,0.09314059,0.09261212,0.09204992,0.09145421,0.090825245,0.090163246,0.08946852,0.0887413,0.087981895,0.0871906,0.08636773,0.0855136,0.084628545,0.0837129,0.08276703,0.08179131,0.08078612,0.07975181,0.07868883,0.07759756,0.07647839,0.07533182,0.074158214,0.07295808,0.071731836,0.07047996,0.069202945,0.06790123,0.06657537,0.06522584,0.06385313,0.062457792,0.06104032,0.05960129,0.05814121,0.056660622,0.055160128,0.053640265,0.052101586,0.050544698,0.048970163,0.047378596,0.045770578,0.044146698,0.04250759,0.040853824,0.039186068,0.037504923,0.035810996,0.034104947,0.032387376,0.030658966,0.028920341,0.027172118,0.025414988,0.023649562,0.021876547,0.020096563,0.018310256,0.016518325,0.014721393,0.012920167,0.011115287,0.009307402,0.0074972184,0.0056853583,0.0038725352,0.0020593973,0.00024658442,-0.00156519,-0.0033753058,-0.005183054,-0.0069877924,-0.008788882,-0.010585619,-0.012377366,-0.014163492,-0.015943294,-0.017716173,-0.019481432,-0.02123845,-0.022986606,-0.024725223,-0.026453707,-0.028171388,-0.029877659,-0.031571925,-0.03325353,-0.034921896,-0.036576383,-0.03821641,-0.039841402,-0.04145073,-0.04304386,-0.044620164,-0.0461791,-0.04772012,-0.049242634,-0.050746135,-0.052230034,-0.053693816,-0.055136986,-0.056558978,-0.057959326,-0.05933748,-0.06069298,-0.062025353,-0.063334085,-0.064618744,-0.06587884,-0.06711394,-0.06832363,-0.069507435,-0.07066496,-0.07179581,-0.07289955,-0.07397582,-0.075024225,-0.076044425,-0.077036016,-0.07799868,-0.078932084,-0.0798359,-0.080709785,-0.08155346,-0.082366645,-0.083149016,-0.08390036,-0.08462039,-0.085308835,-0.085965514,-0.086590186,-0.087182604,-0.08774263,-0.08827004,-0.08876466,-0.089226335,-0.08965492,-0.09005027,-0.09041227,-0.0907408,-0.091035776,-0.09129707,-0.091524646,-0.09171841,-0.09187834,-0.09200439,-0.09209652,-0.09215472,-0.092179015,-0.09216938,-0.09212587,-0.0920485,-0.09193733,-0.09179241,-0.09161384,-0.091401674,-0.091156036,-0.09087702,-0.09056476,-0.090219386,-0.089841045,-0.0894299,-0.088986106,-0.08850987,-0.08800138,-0.08746084,-0.08688845,-0.086284466,-0.08564913,-0.08498267,-0.08428536,-0.08355751,-0.08279935,-0.082011215,-0.08119342,-0.080346234,-0.07947003,-0.07856515,-0.07763191,-0.076670706,-0.07568187,-0.07466585,-0.07362295,-0.07255363,-0.071458295,-0.070337325,-0.06919119,-0.06802032,-0.06682513,-0.065606095,-0.06436367,-0.06309837,-0.061810613,-0.060500905,-0.059169777,-0.057817675,-0.056445137,-0.055052716,-0.053640857,-0.05221014,-0.05076113,-0.0492943,-0.04781024,-0.046309505,-0.044792693,-0.043260295,-0.04171292,-0.040151194,-0.038575612,-0.03698681,-0.03538542,-0.033771947,-0.032147042,-0.030511307,-0.02886539,-0.027209826,-0.025545258,-0.023872357,-0.022191655,-0.020503823,-0.018809516,-0.01710929,-0.015403806,-0.013693745,-0.011979645,-0.010262188,-0.008542005,-0.0068197716,-0.0050960407,-0.0033714846,-0.001646786,7.750746e-5,0.0018007224,0.00352218,0.0052413344,0.006957513,0.008670084,0.010378381,0.012081861,0.013779858,0.015471708,0.01715688,0.018834714,0.020504557,0.022165883,0.023818038,0.025460392,0.027092416,0.028713487,0.03032301,0.031920355,0.033505026,0.03507641,0.0366339,0.038177006,0.03970513,0.041217685,0.042714193,0.04419408,0.04565681,0.04710183,0.04852868,0.04993681,0.051325686,0.052694872,0.05404384,0.055372085,0.05667919,0.05796464,0.059227973,0.060468785,0.0616866,0.062880985,0.0640515,0.065197766,0.066319354,0.06741585,0.06848689,0.06953212,0.070551105,0.071543545,0.07250908,0.07344735,0.07435802,0.075240806,0.0760954,0.076921456,0.07771874,0.07848698,0.079225846,0.07993514,0.08061462,0.08126402,0.08188316,0.08247181,0.08302977,0.08355684,0.084052876,0.084517695,0.08495115,0.0853531,0.08572342,0.08606199,0.0863687,0.08664347,0.08688621,0.08709684,0.087275326,0.087421596,0.08753564,0.08761741,0.08766693,0.08768417,0.08766915,0.087621905,0.08754247,0.08743088,0.08728722,0.08711154,0.08690394,0.0866645,0.08639334,0.08609059,0.08575635,0.08539078,0.08499404,0.08456628,0.08410769,0.08361845,0.083098754,0.08254882,0.081968874,0.081359126,0.080719836,0.08005126,0.079353645,0.07862728,0.07787244,0.07708943,0.07627855,0.07544011,0.07457444,0.07368188,0.072762765,0.07181746,0.07084632,0.06984971,0.06882803,0.067781664,0.066711016,0.06561647,0.064498484,0.06335746,0.062193833,0.061008036,0.059800535,0.05857178,0.057322238,0.056052368,0.054762676,0.053453624,0.05212572,0.050779454,0.049415335,0.04803388,0.046635598,0.04522103,0.043790687,0.042345114,0.040884856,0.039410457,0.037922464,0.036421433,0.034907926,0.033382505,0.031845752,0.030298214,0.028740479,0.027173124,0.025596747,0.024011908,0.022419207,0.020819232,0.019212577,0.017599847,0.015981622,0.0143585075,0.0127310995,0.011100008,0.009465838,0.007829172,0.0061906297,0.004550808,0.0029103132,0.0012697615,-0.00037026685,-0.002009159,-0.0036463114,-0.005281114,-0.0069129867,-0.008541321,-0.010165522,-0.011784994,-0.0133991325,-0.01500737,-0.016609106,-0.01820376,-0.019790743,-0.021369472,-0.022939388,-0.024499912,-0.026050474,-0.02759051,-0.02911945,-0.03063676,-0.03214188,-0.033634257,-0.03511335,-0.036578633,-0.038029574,-0.039465643,-0.040886324,-0.042291097,-0.04367947,-0.045050927,-0.046404976,-0.047741152,-0.049058937,-0.050357897,-0.05163753,-0.052897394,-0.05413705,-0.055356026,-0.056553915,-0.057730272,-0.058884673,-0.060016733,-0.061126016,-0.062212165,-0.063274756,-0.06431343,-0.06532784,-0.06631758,-0.06728236,-0.06822178,-0.06913555,-0.07002334,-0.07088484,-0.07171974,-0.07252778,-0.073308624,-0.07406206,-0.07478779,-0.07548557,-0.076155186,-0.07679638,-0.07740894,-0.07799265,-0.078547336,-0.0790728,-0.07956886,-0.080035366,-0.08047214,-0.08087907,-0.08125601,-0.081602834,-0.08191945,-0.08220573,-0.08246161,-0.08268702,-0.082881875,-0.083046146,-0.08317977,-0.08328273,-0.083354995,-0.08339657,-0.08340745,-0.08338765,-0.083337195,-0.08325613,-0.0831445,-0.08300236,-0.08282979,-0.08262686,-0.08239367,-0.08213033,-0.08183694,-0.08151365,-0.08116056,-0.08077786,-0.08036568,-0.0799242,-0.079453595,-0.07895407,-0.07842581,-0.07786904,-0.077283956,-0.07667083,-0.076029874,-0.07536134,-0.07466553,-0.073942676,-0.07319306,-0.072417,-0.07161477,-0.07078671,-0.06993312,-0.06905433,-0.068150684,-0.06722253,-0.066270225,-0.06529413,-0.06429461,-0.06327208,-0.062226884,-0.06115945,-0.060070194,-0.05895948,-0.057827793,-0.056675516,-0.055503108,-0.054311007,-0.053099647,-0.05186952,-0.050621066,-0.049354743,-0.04807106,-0.04677046,-0.04545348,-0.044120558,-0.042772256,-0.04140901,-0.04003137,-0.038639847,-0.037235003,-0.035817284,-0.034387268,-0.032945514,-0.031492483,-0.030028753,-0.028554916,-0.027071442,-0.025578916,-0.024077931,-0.02256897,-0.021052632,-0.019529475,-0.018000107,-0.016465014,-0.014924803,-0.013380078,-0.011831341,-0.010279198,-0.00872426,-0.0071670236,-0.0056081032,-0.004048071,-0.0024875384,-0.0009270087,0.000632911,0.0021916088,0.0037485864,0.005303237,0.0068549486,0.008403232,0.00994748,0.011487088,0.013021572,0.014550331,0.016072806,0.017588403,0.019096646,0.020596946,0.022088718,0.023571495,0.025044698,0.026507754,0.027960207,0.029401492,0.030831087,0.032248434,0.033653095,0.03504452,0.03642218,0.037785627,0.03913436,0.040467836,0.041785654,0.043087304,0.04437228,0.045640185,0.046890534,0.04812288,0.049336743,0.05053175,0.051707447,0.052863386,0.053999197,0.055114478,0.056208767,0.05728175,0.05833302,0.059362184,0.060368873,0.061352767,0.062313505,0.06325071,0.06416412,0.065053366,0.06591813,0.06675814,0.0675731,0.06836268,0.069126666,0.069864765,0.07057672,0.07126227,0.07192121,0.07255331,0.07315831,0.073736064,0.07428635,0.07480897,0.07530378,0.07577058,0.07620924,0.07661959,0.07700153,0.077354915,0.077679634,0.077975586,0.078242704,0.07848086,0.07869004,0.07887014,0.07902111,0.07914295,0.07923561,0.07929907,0.079333335,0.079338394,0.079314284,0.07926102,0.07917863,0.07906719,0.07892674,0.07875734,0.07855909,0.078332074,0.078076385,0.07779214,0.07747946,0.07713849,0.07676935,0.0763722,0.075947225,0.07549458,0.07501443,0.074507,0.07397248,0.07341108,0.072823025,0.07220856,0.07156789,0.07090131,0.070209086,0.06949143,0.06874867,0.067981094,0.06718897,0.066372626,0.06553237,0.06466854,0.06378145,0.062871434,0.061938882,0.060984097,0.060007468,0.059009396,0.057990205,0.056950305,0.05589013,0.05481002,0.05371042,0.05259173,0.051454414,0.05029884,0.049125474,0.047934793,0.04672718,0.04550312,0.044263106,0.04300753,0.04173692,0.040451728,0.039152477,0.03783959,0.036513597,0.035175007,0.033824272,0.03246192,0.031088497,0.02970444,0.02831031,0.026906652,0.025493927,0.024072684,0.022643454,0.021206807,0.019763205,0.018313214,0.016857408,0.015396256,0.013930338,0.0124602225,0.010986387,0.009509413,0.008029842,0.0065482557,0.005065132,0.003581049,0.0020965915,0.00061223283,-0.0008714469,-0.002353862,-0.0038345442,-0.0053129126,-0.0067883884,-0.008260504,-0.009728685,-0.011192391,-0.012651051,null],"type":"scatter","name":"Im{S(t)}","hovertemplate":"(%{x:.4f} ms, %{y:.3f} a.u.)","x":[3.935,3.96552130317688,3.9960426063537597,4.02656390953064,4.05708521270752,4.087606515884399,4.11812781906128,4.148649122238159,4.179170425415039,4.209691728591919,4.240213031768799,4.270734334945679,4.301255638122559,4.331776941299439,4.362298244476318,4.392819547653199,4.423340850830078,4.453862154006958,4.484383457183838,4.514904760360718,4.545426063537597,4.575947366714478,4.606468669891358,4.636989973068237,4.667511276245117,4.698032579421997,4.728553882598877,4.759075185775757,4.789596488952637,4.820117792129516,4.850639095306397,4.881160398483276,4.911681701660156,4.942203004837037,4.972724308013916,5.0032456111907955,5.033766914367676,5.064288217544556,5.0948095207214354,5.125330823898316,5.155852127075195,5.186373430252075,5.216894733428955,5.247416036605835,5.277937339782715,5.308458642959595,5.338979946136474,5.3695012493133545,5.400022552490235,5.430543855667114,5.4610651588439945,5.491586462020874,5.522107765197754,5.5526290683746335,5.583150371551514,5.613671674728393,5.6441929779052735,5.674714281082153,5.705235584259033,5.7357568874359135,5.766278190612793,5.796799493789672,5.827320796966553,5.857842100143433,5.888363403320312,5.918884706497193,5.949406009674073,5.979927312850952,6.010448616027832,6.040969919204712,6.071491222381592,6.102012525558472,6.132533828735351,6.163055131912231,6.193576435089112,6.224097738265991,6.254619041442871,6.285140344619752,6.315661647796631,6.34618295097351,6.376704254150391,6.407225557327271,6.43774686050415,6.46826816368103,6.49878946685791,6.52931077003479,6.55983207321167,6.590353376388549,6.62087467956543,6.65139598274231,6.681917285919189,6.712438589096069,6.74295989227295,6.773481195449829,6.8040024986267085,6.834523801803589,6.865045104980469,6.8955664081573484,6.926087711334228,6.956609014511109,6.987130317687988,7.017651620864868,7.048172924041748,7.078694227218628,7.109215530395508,7.139736833572387,7.1702581367492675,7.200779439926148,7.231300743103027,7.261822046279907,7.292343349456787,7.322864652633667,7.3533859558105465,7.383907258987427,7.414428562164307,7.4449498653411865,7.475471168518066,7.505992471694946,7.5365137748718265,7.567035078048706,7.597556381225585,7.628077684402466,7.658598987579346,7.689120290756225,7.719641593933106,7.750162897109986,7.780684200286865,7.811205503463745,7.841726806640625,7.872248109817505,7.902769412994385,7.933290716171264,7.963812019348145,7.994333322525025,8.024854625701904,8.055375928878783,8.085897232055665,8.116418535232544,8.146939838409423,8.177461141586303,8.207982444763184,8.238503747940063,8.269025051116943,8.299546354293824,8.330067657470703,8.360588960647583,8.391110263824462,8.421631567001343,8.452152870178223,8.482674173355102,8.513195476531981,8.543716779708863,8.574238082885742,8.604759386062621,8.635280689239503,8.665801992416382,8.696323295593261,8.72684459877014,8.757365901947022,8.787887205123901,8.81840850830078,8.84892981147766,8.879451114654541,8.90997241783142,8.9404937210083,8.971015024185181,9.00153632736206,9.03205763053894,9.06257893371582,9.0931002368927,9.12362154006958,9.15414284324646,9.184664146423339,9.21518544960022,9.2457067527771,9.276228055953979,9.30674935913086,9.33727066230774,9.367791965484619,9.398313268661498,9.42883457183838,9.459355875015259,9.489877178192138,9.520398481369018,9.550919784545899,9.581441087722778,9.611962390899658,9.642483694076539,9.673004997253418,9.703526300430298,9.734047603607177,9.764568906784058,9.795090209960938,9.825611513137817,9.856132816314696,9.886654119491578,9.917175422668457,9.947696725845336,9.978218029022218,10.008739332199097,10.039260635375976,10.069781938552856,10.100303241729737,10.130824544906616,10.161345848083496,10.191867151260375,10.222388454437256,10.252909757614136,10.283431060791015,10.313952363967894,10.344473667144776,10.374994970321655,10.405516273498534,10.436037576675416,10.466558879852295,10.497080183029174,10.527601486206054,10.558122789382935,10.588644092559814,10.619165395736694,10.649686698913573,10.680208002090454,10.710729305267334,10.741250608444213,10.771771911621094,10.802293214797974,10.832814517974853,10.863335821151733,10.893857124328614,10.924378427505493,10.954899730682373,10.985421033859252,11.015942337036133,11.046463640213013,11.076984943389892,11.107506246566773,11.138027549743653,11.168548852920532,11.199070156097411,11.229591459274292,11.260112762451172,11.290634065628051,11.32115536880493,11.351676671981812,11.382197975158691,11.41271927833557,11.443240581512452,11.473761884689331,11.50428318786621,11.53480449104309,11.565325794219971,11.59584709739685,11.62636840057373,11.65688970375061,11.68741100692749,11.71793231010437,11.74845361328125,11.77897491645813,11.80949621963501,11.84001752281189,11.870538825988769,11.90106012916565,11.93158143234253,11.962102735519409,11.99262403869629,12.02314534187317,12.053666645050049,12.084187948226928,12.11470925140381,12.145230554580689,12.175751857757568,12.20627316093445,12.236794464111329,12.267315767288208,12.297837070465087,12.328358373641969,12.358879676818848,12.389400979995727,12.419922283172607,12.450443586349488,12.480964889526367,12.511486192703247,12.542007495880128,12.572528799057007,12.603050102233887,12.633571405410766,12.664092708587647,12.694614011764527,12.725135314941406,12.755656618118286,12.786177921295167,12.816699224472046,12.847220527648926,12.877741830825807,12.908263134002686,12.938784437179566,12.969305740356445,12.999827043533326,13.030348346710205,13.060869649887085,13.091390953063964,13.121912256240845,13.152433559417725,13.182954862594604,13.213476165771485,13.243997468948365,13.274518772125244,13.305040075302124,13.335561378479005,13.366082681655884,13.396603984832764,13.427125288009643,13.457646591186524,13.488167894363404,13.518689197540283,13.549210500717164,13.579731803894044,13.610253107070923,13.640774410247802,13.671295713424684,13.701817016601563,13.732338319778442,13.762859622955322,13.793380926132203,13.823902229309082,13.854423532485962,13.884944835662843,13.915466138839722,13.945987442016602,13.976508745193481,14.007030048370362,14.037551351547242,14.068072654724121,14.098593957901,14.129115261077882,14.159636564254761,14.19015786743164,14.22067917060852,14.251200473785401,14.28172177696228,14.31224308013916,14.342764383316041,14.37328568649292,14.4038069896698,14.43432829284668,14.46484959602356,14.49537089920044,14.52589220237732,14.556413505554199,14.58693480873108,14.61745611190796,14.647977415084839,14.67849871826172,14.709020021438599,14.739541324615479,14.770062627792358,14.800583930969239,14.831105234146118,14.861626537322998,14.892147840499877,14.922669143676758,14.953190446853638,14.983711750030517,15.014233053207398,15.044754356384278,15.075275659561157,15.105796962738037,15.136318265914918,15.166839569091797,15.197360872268677,15.227882175445556,15.258403478622437,15.288924781799317,15.319446084976196,15.349967388153077,15.380488691329957,15.411009994506836,15.441531297683715,15.472052600860597,15.502573904037476,15.533095207214355,15.563616510391235,15.594137813568116,15.624659116744995,15.655180419921875,15.685701723098756,15.716223026275635,15.746744329452515,15.777265632629394,15.807786935806275,15.838308238983155,15.868829542160034,15.899350845336913,15.929872148513795,15.960393451690674,15.990914754867553,16.021436058044433,16.051957361221312,16.08247866439819,16.11299996757507,16.143521270751954,16.174042573928833,16.204563877105713,16.235085180282592,16.26560648345947,16.29612778663635,16.32664908981323,16.35717039299011,16.387691696166993,16.418212999343872,16.44873430252075,16.47925560569763,16.50977690887451,16.54029821205139,16.57081951522827,16.601340818405152,16.63186212158203,16.66238342475891,16.69290472793579,16.72342603111267,16.75394733428955,16.78446863746643,16.81498994064331,16.84551124382019,16.87603254699707,16.90655385017395,16.93707515335083,16.96759645652771,16.998117759704588,17.028639062881467,17.05916036605835,17.08968166923523,17.12020297241211,17.15072427558899,17.181245578765868,17.211766881942747,17.242288185119627,17.27280948829651,17.30333079147339,17.33385209465027,17.364373397827148,17.394894701004027,17.425416004180907,17.455937307357786,17.48645861053467,17.51697991371155,17.547501216888428,17.578022520065307,17.608543823242186,17.639065126419066,17.669586429595945,17.700107732772825,17.730629035949708,17.761150339126587,17.791671642303466,17.822192945480346,17.852714248657225,17.883235551834105,17.913756855010984,17.944278158187867,17.974799461364746,18.005320764541626,18.035842067718505,18.066363370895385,18.096884674072264,18.127405977249143,18.157927280426026,18.188448583602906,18.218969886779785,18.249491189956665,18.280012493133544,18.310533796310423,18.341055099487303,18.371576402664182,18.402097705841065,18.432619009017944,18.463140312194824,18.493661615371703,18.524182918548583,18.554704221725462,18.58522552490234,18.615746828079224,18.646268131256104,18.676789434432983,18.707310737609863,18.737832040786742,18.76835334396362,18.7988746471405,18.82939595031738,18.859917253494263,18.890438556671143,18.920959859848022,18.9514811630249,18.98200246620178,19.01252376937866,19.04304507255554,19.073566375732423,19.104087678909302,19.13460898208618,19.16513028526306,19.19565158843994,19.22617289161682,19.2566941947937,19.287215497970582,19.31773680114746,19.34825810432434,19.37877940750122,19.4093007106781,19.43982201385498,19.47034331703186,19.500864620208738,19.53138592338562,19.5619072265625,19.59242852973938,19.62294983291626,19.65347113609314,19.683992439270018,19.714513742446897,19.74503504562378,19.77555634880066,19.80607765197754,19.836598955154418,19.867120258331298,19.897641561508177,19.928162864685056,19.958684167861936,19.989205471038815,20.019726774215698,20.050248077392578,20.080769380569457,20.111290683746336,20.141811986923216,20.172333290100095,20.202854593276975,20.233375896453854,20.263897199630737,20.294418502807616,20.324939805984496,20.355461109161375,20.385982412338254,20.416503715515134,20.447025018692013,20.477546321868896,20.508067625045776,20.538588928222655,20.569110231399534,20.599631534576414,20.630152837753293,20.660674140930173,20.691195444107056,20.721716747283935,20.752238050460814,20.782759353637694,20.813280656814573,20.843801959991453,20.874323263168332,20.90484456634521,20.935365869522094,20.965887172698974,20.996408475875853,21.026929779052733,21.057451082229612,21.08797238540649,21.11849368858337,21.149014991760254,21.179536294937133,21.210057598114012,21.240578901290892,21.27110020446777,21.30162150764465,21.33214281082153,21.362664113998413,21.393185417175292,21.423706720352172,21.45422802352905,21.48474932670593,21.51527062988281,21.54579193305969,21.57631323623657,21.606834539413452,21.63735584259033,21.66787714576721,21.69839844894409,21.72891975212097,21.75944105529785,21.789962358474728,21.82048366165161,21.85100496482849,21.88152626800537,21.91204757118225,21.94256887435913,21.973090177536008,22.003611480712888,22.034132783889767,22.06465408706665,22.09517539024353,22.12569669342041,22.156217996597288,22.186739299774167,22.217260602951047,22.247781906127926,22.27830320930481,22.30882451248169,22.339345815658568,22.369867118835447,22.400388422012327,22.430909725189206,22.461431028366086,22.49195233154297,22.522473634719848,22.552994937896727,22.583516241073607,22.614037544250486,22.644558847427366,22.675080150604245,22.705601453781124,22.736122756958007,22.766644060134887,22.797165363311766,22.827686666488646,22.858207969665525,22.888729272842404,22.919250576019284,22.949771879196167,22.980293182373046,23.010814485549925,23.041335788726805,23.071857091903684,23.102378395080564,23.132899698257443,23.163421001434326,23.193942304611205,23.224463607788085,23.254984910964964,23.285506214141844,23.316027517318723,23.346548820495602,23.377070123672482,23.407591426849365,23.438112730026244,23.468634033203124,23.499155336380003,23.529676639556882,23.560197942733762,23.59071924591064,23.621240549087524,23.651761852264404,23.682283155441283,23.712804458618162,23.74332576179504,23.77384706497192,23.8043683681488,23.834889671325683,23.865410974502563,23.895932277679442,23.92645358085632,23.9569748840332,23.98749618721008,24.01801749038696,24.04853879356384,24.079060096740722,24.1095813999176,24.14010270309448,24.17062400627136,24.20114530944824,24.23166661262512,24.262187915802,24.29270921897888,24.32323052215576,24.35375182533264,24.38427312850952,24.4147944316864,24.44531573486328,24.475837038040158,24.506358341217037,24.53687964439392,24.5674009475708,24.59792225074768,24.62844355392456,24.658964857101438,24.689486160278317,24.720007463455197,24.75052876663208,24.78105006980896,24.81157137298584,24.842092676162718,24.872613979339597,24.903135282516477,24.933656585693356,24.96417788887024,24.99469919204712,25.025220495223998,25.055741798400877,25.086263101577757,25.116784404754636,25.147305707931515,25.177827011108395,25.208348314285278,25.238869617462157,25.269390920639037,25.299912223815916,25.330433526992795,25.360954830169675,25.391476133346554,25.421997436523437,25.452518739700317,25.483040042877196,25.513561346054075,25.544082649230955,25.574603952407834,25.605125255584714,25.635646558761596,25.666167861938476,25.696689165115355,25.727210468292235,25.757731771469114,25.788253074645993,25.818774377822873,25.849295680999752,25.879816984176635,25.910338287353515,25.940859590530394,25.971380893707273,26.001902196884153,26.032423500061032,26.06294480323791,26.093466106414795,26.123987409591674,26.154508712768553,26.185030015945433,26.215551319122312,26.24607262229919,26.27659392547607,26.30711522865295,26.337636531829833,26.368157835006713,26.398679138183592,26.42920044136047,26.45972174453735,26.49024304771423,26.52076435089111,26.551285654067993,26.581806957244872,26.61232826042175,26.64284956359863,26.67337086677551,26.70389216995239,26.73441347312927,26.764934776306152,26.79545607948303,26.82597738265991,26.85649868583679,26.88701998901367,26.91754129219055,26.94806259536743,26.978583898544308,27.00910520172119,27.03962650489807,27.07014780807495,27.10066911125183,27.13119041442871,27.161711717605588,27.192233020782467,27.22275432395935,27.25327562713623,27.28379693031311,27.31431823348999,27.344839536666868,27.375360839843747,27.405882143020627,27.43640344619751,27.46692474937439,27.49744605255127,27.527967355728148,27.558488658905027,27.589009962081906,27.619531265258786,27.650052568435665,27.68057387161255,27.711095174789428,27.741616477966307,27.772137781143186,27.802659084320066,27.833180387496945,27.863701690673825,27.894222993850708,27.924744297027587,27.955265600204466,27.985786903381346,28.016308206558225,28.046829509735105,28.077350812911984,28.107872116088867,28.138393419265746,28.168914722442626,28.199436025619505,28.229957328796385,28.260478631973264,28.290999935150143,28.321521238327023,28.352042541503906,28.382563844680785,28.413085147857664,28.443606451034544,28.474127754211423,28.504649057388303,28.535170360565182,28.565691663742065,28.596212966918944,28.626734270095824,28.657255573272703,28.687776876449583,28.718298179626462,28.74881948280334,28.77934078598022,28.809862089157104,28.840383392333983,28.870904695510863,28.901425998687742,28.93194730186462,28.9624686050415,28.99298990821838,29.023511211395263,29.054032514572143,29.084553817749022,29.1150751209259,29.14559642410278,29.17611772727966,29.20663903045654,29.237160333633422,29.267681636810302,29.29820293998718,29.32872424316406,29.35924554634094,29.38976684951782,29.4202881526947,29.45080945587158,29.48133075904846,29.51185206222534,29.54237336540222,29.5728946685791,29.60341597175598,29.63393727493286,29.664458578109738,29.69497988128662,29.7255011844635,29.75602248764038,29.78654379081726,29.817065093994138,29.847586397171018,29.878107700347897,29.90862900352478,29.93915030670166,29.96967160987854,30.000192913055418,30.030714216232298,30.061235519409177,30.091756822586056,30.122278125762936,30.15279942893982,30.183320732116698,30.213842035293577,30.244363338470457,30.274884641647336,30.305405944824216,30.335927248001095,30.366448551177978,30.396969854354857,30.427491157531737,30.458012460708616,30.488533763885496,30.519055067062375,30.549576370239254,30.580097673416137,30.610618976593017,30.641140279769896,30.671661582946776,30.702182886123655,30.732704189300534,30.763225492477414,30.793746795654293,30.824268098831176,30.854789402008056,30.885310705184935,30.915832008361814,30.946353311538694,30.976874614715573,31.007395917892453,31.037917221069335,31.068438524246215,31.098959827423094,31.129481130599974,31.160002433776853,31.190523736953732,31.221045040130612,31.25156634330749,31.282087646484374,31.312608949661254,31.343130252838133,31.373651556015012,31.404172859191892,31.43469416236877,31.46521546554565,31.495736768722534,31.526258071899413,31.556779375076292,31.587300678253172,31.61782198143005,31.64834328460693,31.67886458778381,31.709385890960693,31.739907194137572,31.77042849731445,31.80094980049133,31.83147110366821,31.86199240684509,31.89251371002197,31.92303501319885,31.95355631637573,31.98407761955261,32.01459892272949,32.04512022590637,32.07564152908325,32.10616283226013,32.13668413543701,32.16720543861389,32.197726741790774,32.22824804496765,32.25876934814453,32.28929065132141,32.31981195449829,32.35033325767517,32.38085456085205,32.41137586402893,32.44189716720581,32.47241847038269,32.50293977355957,32.53346107673645,32.56398237991333,32.59450368309021,32.62502498626709,32.65554628944397,32.68606759262085,32.71658889579773,32.74711019897461,32.777631502151486,32.80815280532837,32.83867410850525,32.86919541168213,32.89971671485901,32.93023801803589,32.96075932121277,32.991280624389645,33.02180192756653,33.052323230743404,33.08284453392029,33.11336583709717,33.143887140274046,33.17440844345093,33.204929746627805,33.23545104980469,33.265972352981564,33.29649365615845,33.32701495933533,33.357536262512205,33.38805756568909,33.418578868865964,33.44910017204285,33.47962147521972,33.510142778396606,33.54066408157349,33.571185384750365,33.60170668792725,33.63222799110412,33.66274929428101,33.69327059745788,33.723791900634765,33.75431320381165,33.784834506988524,33.81535581016541,33.84587711334228,33.876398416519166,33.90691971969604,33.937441022872925,33.96796232604981,33.99848362922668,34.029004932403566,34.05952623558044,34.090047538757325,34.1205688419342,34.151090145111084,34.18161144828797,34.21213275146484,34.242654054641726,34.2731753578186,34.303696660995485,34.33421796417236,34.36473926734924,34.39526057052612,34.425781873703,34.456303176879885,34.48682448005676,34.517345783233644,34.54786708641052,34.5783883895874,34.60890969276428,34.63943099594116,34.669952299118044,34.70047360229492,34.7309949054718,34.76151620864868,34.79203751182556,34.82255881500244,34.85308011817932,34.883601421356204,34.91412272453308,34.94464402770996,34.97516533088684,35.00568663406372,35.0362079372406,35.06672924041748,35.09725054359436,35.12777184677124,35.15829314994812,35.188814453125,35.21933575630188,35.24985705947876,35.28037836265564,35.31089966583252,35.3414209690094,35.37194227218628,35.40246357536316,35.43298487854004,35.463506181716916,35.4940274848938,35.524548788070675,35.55507009124756,35.58559139442444,35.61611269760132,35.6466340007782,35.677155303955075,35.70767660713196,35.738197910308834,35.76871921348572,35.7992405166626,35.829761819839476,35.86028312301636,35.890804426193235,35.92132572937012,35.951847032547,35.982368335723876,36.01288963890076,36.043410942077635,36.07393224525452,36.1044535484314,36.13497485160828,36.16549615478516,36.196017457962036,36.22653876113892,36.257060064315795,36.28758136749268,36.31810267066956,36.348623973846436,36.37914527702332,36.409666580200195,36.44018788337708,36.470709186553954,36.50123048973084,36.53175179290771,36.562273096084596,36.59279439926148,36.623315702438354,36.65383700561524,36.68435830879211,36.714879611968996,36.74540091514587,36.775922218322755,36.80644352149964,36.836964824676514,36.8674861278534,36.89800743103027,36.928528734207156,36.95905003738403,36.989571340560914,37.0200926437378,37.05061394691467,37.081135250091556,37.11165655326843,37.142177856445315,37.17269915962219,37.203220462799074,37.23374176597596,37.26426306915283,37.294784372329715,37.32530567550659,37.355826978683474,37.38634828186035,37.41686958503723,37.447390888214116,37.47791219139099,37.508433494567875,37.53895479774475,37.569476100921634,37.59999740409851,37.63051870727539,37.66104001045227,37.69156131362915,37.722082616806034,37.75260391998291,37.78312522315979,37.81364652633667,37.84416782951355,37.87468913269043,37.90521043586731,37.93573173904419,37.96625304222107,37.99677434539795,38.02729564857483,38.05781695175171,38.08833825492859,38.11885955810547,38.14938086128235,38.17990216445923,38.21042346763611,38.24094477081299,38.27146607398987,38.301987377166746,38.33250868034363,38.36302998352051,38.39355128669739,38.42407258987427,38.45459389305115,38.48511519622803,38.515636499404906,38.54615780258179,38.57667910575867,38.60720040893555,38.63772171211243,38.668243015289306,38.69876431846619,38.729285621643065,38.75980692481995,38.79032822799683,38.82084953117371,38.85137083435059,38.881892137527466,38.91241344070435,38.942934743881224,38.97345604705811,39.00397735023498,39.034498653411866,39.06501995658875,39.095541259765625,39.12606256294251,39.156583866119384,39.18710516929627,39.21762647247314,39.248147775650025,39.27866907882691,39.309190382003784,39.33971168518067,39.37023298835754,39.400754291534426,39.4312755947113,39.461796897888185,39.49231820106507,39.522839504241944,39.55336080741883,39.5838821105957,39.614403413772585,39.64492471694946,39.675446020126344,39.70596732330323,39.7364886264801,39.767009929656986,39.79753123283386,39.828052536010745,39.85857383918762,39.8890951423645,39.919616445541386,39.95013774871826,39.980659051895145,40.01118035507202,40.041701658248904,40.07222296142578,40.10274426460266,40.13326556777954,40.16378687095642,40.194308174133305,40.22482947731018,40.25535078048706,40.28587208366394,40.31639338684082,40.3469146900177,40.37743599319458,40.407957296371464,40.43847859954834,40.46899990272522,40.4995212059021,40.53004250907898,40.56056381225586,40.59108511543274,40.62160641860962,40.6521277217865,40.68264902496338,40.71317032814026,40.74369163131714,40.77421293449402,40.8047342376709,40.83525554084778,40.86577684402466,40.89629814720154,40.92681945037842,40.9573407535553,40.987862056732176,41.01838335990906,41.04890466308594,41.07942596626282,41.1099472694397,41.14046857261658,41.17098987579346,41.201511178970335,41.23203248214722,41.2625537853241,41.29307508850098,41.32359639167786,41.354117694854736,41.38463899803162,41.415160301208495,41.44568160438538,41.476202907562254,41.50672421073914,41.53724551391602,41.567766817092895,41.59828812026978,41.628809423446654,41.65933072662354,41.68985202980041,41.720373332977296,41.75089463615418,41.781415939331055,41.81193724250794,41.84245854568481,41.872979848861696,41.90350115203857,41.934022455215455,41.96454375839234,41.995065061569214,42.0255863647461,42.05610766792297,42.086628971099856,42.11715027427673,42.147671577453615,42.1781928806305,42.20871418380737,42.239235486984256,42.26975679016113,42.300278093338015,42.33079939651489,42.361320699691774,42.39184200286866,42.42236330604553,42.452884609222416,42.48340591239929,42.513927215576174,42.54444851875305,42.57496982192993,42.60549112510681,42.63601242828369,42.666533731460575,42.69705503463745,42.727576337814334,42.75809764099121,42.78861894416809,42.81914024734497,42.84966155052185,42.880182853698734,42.91070415687561,42.94122546005249,42.97174676322937,43.00226806640625,43.03278936958313,43.06331067276001,43.093831975936894,43.12435327911377,43.15487458229065,43.18539588546753,43.21591718864441,43.24643849182129,43.27695979499817,43.30748109817505,43.33800240135193,43.36852370452881,43.39904500770569,43.42956631088257,43.46008761405945,43.49060891723633,43.52113022041321,43.55165152359009,43.58217282676697,43.61269412994385,43.64321543312073,43.673736736297606,43.70425803947449,43.73477934265137,43.76530064582825,43.79582194900513,43.826343252182006,43.85686455535889,43.887385858535765,43.91790716171265,43.948428464889524,43.97894976806641,44.00947107124329,44.039992374420166,44.07051367759705,44.101034980773925,44.13155628395081,44.16207758712768,44.192598890304566,44.22312019348145,44.253641496658325,44.28416279983521,44.314684103012084,44.34520540618897,44.37572670936584,44.406248012542726,44.43676931571961,44.467290618896484,44.49781192207337,44.52833322525024,44.558854528427126,44.589375831604,44.619897134780885,44.65041843795777,44.680939741134644,44.71146104431153,44.7419823474884,44.772503650665286,44.80302495384216,44.833546257019044,44.86406756019593,44.8945888633728,44.925110166549686,44.95563146972656,44.986152772903445,45.01667407608032,45.047195379257204,45.07771668243408,45.10823798561096,45.138759288787845,45.16928059196472,45.199801895141604,45.23032319831848,45.26084450149536,45.29136580467224,45.32188710784912,45.352408411026005,45.38292971420288,45.413451017379764,45.44397232055664,45.47449362373352,45.5050149269104,45.53553623008728,45.566057533264164,45.59657883644104,45.62710013961792,45.6576214427948,45.68814274597168,45.71866404914856,45.74918535232544,45.77970665550232,45.8102279586792,45.84074926185608,45.87127056503296,45.90179186820984,45.93231317138672,45.9628344745636,45.99335577774048,46.02387708091736,46.05439838409424,46.08491968727112,46.115440990448,46.145962293624876,46.17648359680176,46.20700489997864,46.23752620315552,46.2680475063324,46.29856880950928,46.32909011268616,46.359611415863036,46.39013271903992,46.420654022216794,46.45117532539368,46.48169662857056,46.512217931747436,46.54273923492432,46.573260538101195,46.60378184127808,46.634303144454954,46.66482444763184,46.69534575080872,46.725867053985596,46.75638835716248,46.786909660339354,46.81743096351624,46.84795226669311,46.878473569869996,46.90899487304688,46.939516176223755,46.97003747940064,47.000558782577514,47.0310800857544,47.06160138893127,47.092122692108155,47.12264399528504,47.153165298461914,47.1836866016388,47.21420790481567,47.244729207992556,47.27525051116943,47.305771814346315,47.3362931175232,47.366814420700074,47.39733572387696,47.42785702705383,47.458378330230715,47.48889963340759,47.519420936584474,47.54994223976135,47.58046354293823,47.610984846115116,47.64150614929199,47.672027452468875,47.70254875564575,47.73307005882263,47.76359136199951,47.79411266517639,47.824633968353275,47.85515527153015,47.885676574707034,47.91619787788391,47.94671918106079,47.97724048423767,48.00776178741455,48.038283090591435,48.06880439376831,48.09932569694519,48.12984700012207,48.16036830329895,48.19088960647583,48.22141090965271,48.251932212829594,48.28245351600647,48.31297481918335,48.34349612236023,48.37401742553711,48.40453872871399,48.43506003189087,48.46558133506775,48.49610263824463,48.52662394142151,48.55714524459839,48.58766654777527,48.61818785095215,48.64870915412903,48.679230457305906,48.70975176048279,48.74027306365967,48.77079436683655,48.80131567001343,48.831836973190306,48.86235827636719,48.892879579544065,48.92340088272095,48.95392218589783,48.98444348907471,49.01496479225159,49.045486095428465,49.07600739860535,49.106528701782224,49.13705000495911,49.16757130813599,49.198092611312866,49.22861391448975,49.259135217666625,49.28965652084351,49.320177824020384,49.35069912719727,49.38122043037415,49.411741733551025,49.44226303672791,49.472784339904784,49.50330564308167,49.53382694625854,49.564348249435426,49.59486955261231,49.625390855789185,49.65591215896607,49.68643346214294,49.71695476531983,49.7474760684967,49.777997371673585,49.80851867485047,49.839039978027344,49.86956128120423,49.9000825843811,49.930603887557986,49.96112519073486,49.991646493911745,50.02216779708862,50.0526891002655,50.083210403442386,50.11373170661926,50.144253009796145,50.17477431297302,50.205295616149904,50.23581691932678,50.26633822250366,50.296859525680546,50.32738082885742,50.357902132034305,50.38842343521118,50.41894473838806,50.44946604156494,50.47998734474182,50.510508647918705,50.54102995109558,50.571551254272464,50.60207255744934,50.63259386062622,50.6631151638031,50.69363646697998,50.724157770156864,50.75467907333374,50.78520037651062,50.8157216796875,50.84624298286438,50.87676428604126,50.90728558921814,50.937806892395024,50.9683281955719,50.99884949874878,51.02937080192566,51.05989210510254,51.09041340827942,51.1209347114563,51.151456014633176,51.18197731781006,51.21249862098694,51.24301992416382,51.2735412273407,51.30406253051758,51.33458383369446,51.365105136871335,51.39562644004822,51.4261477432251,51.45666904640198,51.48719034957886,51.517711652755736,51.54823295593262,51.578754259109495,51.60927556228638,51.63979686546326,51.67031816864014,51.70083947181702,51.731360774993895,51.76188207817078,51.792403381347654,51.82292468452454,51.85344598770142,51.883967290878296,51.91448859405518,51.945009897232055,51.97553120040894,52.00605250358581,52.036573806762696,52.06709510993958,52.097616413116455,52.12813771629334,52.158659019470214,52.1891803226471,52.21970162582397,52.250222929000856,52.28074423217774,52.311265535354615,52.3417868385315,52.37230814170837,52.402829444885256,52.43335074806213,52.463872051239015,52.49439335441589,52.524914657592774,52.55543596076966,52.58595726394653,52.616478567123416,52.64699987030029,52.677521173477174,52.70804247665405,52.73856377983093,52.769085083007816,52.79960638618469,52.830127689361575,52.86064899253845,52.891170295715334,52.92169159889221,52.95221290206909,52.982734205245976,53.01325550842285,53.043776811599734,53.07429811477661,53.10481941795349,53.13534072113037,53.16586202430725,53.196383327484135,53.22690463066101,53.257425933837894,53.28794723701477,53.31846854019165,53.34898984336853,53.37951114654541,53.410032449722294,53.44055375289917,53.47107505607605,53.50159635925293,53.53211766242981,53.56263896560669,53.59316026878357,53.62368157196045,53.65420287513733,53.68472417831421,53.71524548149109,53.74576678466797,53.77628808784485,53.80680939102173,53.837330694198606,53.86785199737549,53.89837330055237,53.92889460372925,53.95941590690613,53.989937210083006,54.02045851325989,54.050979816436765,54.08150111961365,54.11202242279053,54.14254372596741,54.17306502914429,54.203586332321166,54.23410763549805,54.264628938674925,54.29515024185181,54.32567154502869,54.356192848205566,54.38671415138245,54.417235454559325,54.44775675773621,54.478278060913084,54.50879936408997,54.53932066726685,54.569841970443726,54.60036327362061,54.630884576797484,54.66140587997437,54.69192718315124,54.722448486328126,54.75296978950501,54.783491092681885,54.81401239585877,54.844533699035644,54.87505500221253,54.9055763053894,54.936097608566286,54.96661891174316,54.997140214920044,55.02766151809693,55.0581828212738,55.088704124450686,55.11922542762756,55.149746730804445,55.18026803398132,55.210789337158204,55.24131064033509,55.27183194351196,55.302353246688845,55.33287454986572,55.363395853042604,55.39391715621948,55.42443845939636,55.454959762573246,55.48548106575012,55.516002368927005,55.54652367210388,55.577044975280764,55.60756627845764,55.63808758163452,55.668608884811405,55.69913018798828,55.729651491165164,55.76017279434204,55.79069409751892,55.8212154006958,55.85173670387268,55.882258007049565,55.91277931022644,55.94330061340332,55.9738219165802,56.00434321975708,56.03486452293396,56.06538582611084,56.09590712928772,56.1264284324646,56.15694973564148,56.18747103881836,56.21799234199524,56.24851364517212,56.279034948349,56.309556251525876,56.34007755470276,56.37059885787964,56.40112016105652,56.4316414642334,56.46216276741028,56.49268407058716,56.523205373764036,56.55372667694092,56.5842479801178,56.61476928329468,56.64529058647156,56.675811889648436,56.70633319282532,56.736854496002195,56.76737579917908,56.79789710235596,56.82841840553284,56.85893970870972,56.889461011886596,56.91998231506348,56.950503618240354,56.98102492141724,57.01154622459412,57.042067527770996,57.07258883094788,57.103110134124755,57.13363143730164,57.164152740478514,57.1946740436554,57.22519534683228,57.255716650009155,57.28623795318604,57.316759256362914,57.3472805595398,57.37780186271667,57.408323165893556,57.43884446907043,57.469365772247315,57.4998870754242,57.530408378601074,57.56092968177796,57.59145098495483,57.621972288131715,57.65249359130859,57.683014894485474,57.71353619766236,57.74405750083923,57.774578804016116,57.80510010719299,57.835621410369875,57.86614271354675,57.89666401672363,57.927185319900516,57.95770662307739,57.988227926254275,58.01874922943115,58.049270532608034,58.07979183578491,58.11031313896179,58.140834442138676,58.17135574531555,58.201877048492435,58.23239835166931,58.26291965484619,58.29344095802307,58.32396226119995,58.354483564376835,58.38500486755371,58.415526170730594,58.44604747390747,58.47656877708435,58.50709008026123,58.53761138343811,58.56813268661499,58.59865398979187,58.62917529296875,58.65969659614563,58.69021789932251,58.72073920249939,58.75126050567627,58.78178180885315,58.81230311203003,58.84282441520691,58.87334571838379,58.90386702156067,58.93438832473755,58.96490962791443,58.995430931091306,59.02595223426819,59.05647353744507,59.08699484062195,59.11751614379883,59.14803744697571,59.17855875015259,59.209080053329465,59.23960135650635,59.27012265968323,59.30064396286011,59.33116526603699,59.361686569213866,59.39220787239075,59.422729175567625,59.45325047874451,59.48377178192139,59.51429308509827,59.54481438827515,59.575335691452025,59.60585699462891,59.636378297805784,59.66689960098267,59.69742090415955,59.727942207336426,59.75846351051331,59.788984813690185,59.81950611686707,59.85002742004394,59.880548723220826,59.9110700263977,59.941591329574585,59.97211263275147,60.002633935928344,60.03315523910523,60.0636765422821,60.094197845458986,60.12471914863586,60.155240451812745,60.18576175498963,60.2162830581665,60.246804361343386,60.27732566452026,60.307846967697145,60.33836827087402,60.368889574050904,60.39941087722779,60.42993218040466,60.460453483581546,60.49097478675842,60.521496089935304,60.55201739311218,60.58253869628906,60.613059999465946,60.64358130264282,60.674102605819705,60.70462390899658,60.735145212173464,60.76566651535034,60.79618781852722,60.826709121704106,60.85723042488098,60.887751728057864,60.91827303123474,60.94879433441162,60.9793156375885,61.00983694076538,61.04035824394226,61.07087954711914,61.101400850296024,61.1319221534729,61.16244345664978,61.19296475982666,61.22348606300354,61.25400736618042,61.2845286693573,61.31504997253418,61.34557127571106,61.37609257888794,61.40661388206482,61.4371351852417,61.46765648841858,61.49817779159546,61.52869909477234,61.55922039794922,61.5897417011261,61.62026300430298,61.65078430747986,61.681305610656736,61.71182691383362,61.7423482170105,61.77286952018738,61.80339082336426,61.833912126541136,61.86443342971802,61.894954732894895,61.92547603607178,61.95599733924866,61.98651864242554,62.01703994560242,62.047561248779296,62.07808255195618,62.108603855133055,62.13912515830994,62.16964646148681,62.200167764663696,62.23068906784058,62.261210371017455,62.29173167419434,62.322252977371214,62.3527742805481,62.38329558372497,62.413816886901856,62.44433819007874,62.474859493255614,62.5053807964325,62.53590209960937,62.566423402786256,62.59694470596313,62.627466009140015,62.6579873123169,62.688508615493774,62.71902991867066,62.74955122184753,62.780072525024416,62.81059382820129,62.841115131378174,62.87163643455506,62.90215773773193,62.932679040908816,62.96320034408569,62.993721647262575,63.02424295043945,63.054764253616334,63.08528555679322,63.11580685997009,63.146328163146975,63.17684946632385,63.207370769500734,63.23789207267761,63.26841337585449,63.298934679031376,63.32945598220825,63.359977285385135,63.39049858856201,63.421019891738894,63.45154119491577,63.48206249809265,63.51258380126953,63.54310510444641,63.573626407623294,63.60414771080017,63.63466901397705,63.66519031715393,63.69571162033081,63.72623292350769,63.75675422668457,63.78727552986145,63.81779683303833,63.84831813621521,63.87883943939209,63.90936074256897,63.93988204574585,63.97040334892273,64.00092465209961,64.03144595527648,64.06196725845336,64.09248856163025,64.12300986480713,64.153531167984,64.18405247116088,64.21457377433777,64.24509507751465,64.27561638069153,64.3061376838684,64.33665898704528,64.36718029022217,64.39770159339905,64.42822289657593,64.4587441997528,64.48926550292968,64.51978680610657,64.55030810928345,64.58082941246032,64.6113507156372,64.64187201881408,64.67239332199097,64.70291462516785,64.73343592834472,64.7639572315216,64.79447853469848,64.82499983787537,64.85552114105224,64.88604244422912,64.916563747406,64.94708505058288,64.97760635375977,65.00812765693664,65.03864896011352,65.0691702632904,65.09969156646729,65.13021286964417,65.16073417282104,65.19125547599792,65.2217767791748,65.25229808235169,65.28281938552855,65.31334068870544,65.34386199188232,65.3743832950592,65.40490459823609,65.43542590141296,65.46594720458984,65.49646850776672,65.5269898109436,65.55751111412049,65.58803241729736,65.61855372047424,65.64907502365112,65.679596326828,65.71011763000487,65.74063893318176,65.77116023635864,65.80168153953552,65.8322028427124,65.86272414588927,65.89324544906616,65.92376675224304,65.95428805541992,65.98480935859679,66.01533066177367,66.04585196495056,66.07637326812744,66.10689457130432,66.13741587448119,66.16793717765808,66.19845848083496,66.22897978401184,66.25950108718872,66.29002239036559,66.32054369354248,66.35106499671936,66.38158629989624,66.41210760307311,66.44262890625,66.47315020942688,66.50367151260376,66.53419281578064,66.56471411895751,66.5952354221344,66.62575672531128,66.65627802848816,66.68679933166504,66.71732063484191,66.7478419380188,66.77836324119568,66.80888454437256,66.83940584754943,66.86992715072631,66.9004484539032,66.93096975708008,66.96149106025696,66.99201236343383,67.02253366661071,67.0530549697876,67.08357627296448,67.11409757614135,67.14461887931823,67.17514018249511,67.205661485672,67.23618278884888,67.26670409202575,67.29722539520263,67.32774669837951,67.3582680015564,67.38878930473328,67.41931060791015,67.44983191108703,67.48035321426391,67.5108745174408,67.54139582061767,67.57191712379455,67.60243842697143,67.63295973014831,67.6634810333252,67.69400233650207,67.72452363967895,67.75504494285583,67.78556624603272,67.8160875492096,67.84660885238647,67.87713015556335,67.90765145874023,67.93817276191712,67.968694065094,67.99921536827087,68.02973667144775,68.06025797462463,68.09077927780152,68.1213005809784,68.15182188415527,68.18234318733215,68.21286449050903,68.24338579368592,68.2739070968628,68.30442840003967,68.33494970321655,68.36547100639343,68.39599230957032,68.42651361274719,68.45703491592407,68.48755621910095,68.51807752227784,68.54859882545472,68.57912012863159,68.60964143180847,68.64016273498535,68.67068403816224,68.70120534133912,68.73172664451599,68.76224794769287,68.79276925086975,68.82329055404664,68.8538118572235,68.88433316040039,68.91485446357727,68.94537576675415,68.97589706993104,69.0064183731079,69.03693967628479,69.06746097946167,69.09798228263855,69.12850358581542,69.1590248889923,69.18954619216919,69.22006749534607,69.25058879852295,69.28111010169982,69.3116314048767,69.34215270805359,69.37267401123047,69.40319531440736,69.43371661758422,69.46423792076111,69.49475922393799,69.52528052711487,69.55580183029174,69.58632313346862,69.61684443664551,69.64736573982239,69.67788704299927,69.70840834617614,69.73892964935303,69.76945095252991,69.79997225570679,69.83049355888367,69.86101486206054,69.89153616523743,69.92205746841431,69.95257877159119,69.98310007476806,70.01362137794494,70.04414268112183,70.07466398429871,70.10518528747559,70.13570659065246,70.16622789382934,70.19674919700623,70.22727050018311,70.25779180335998,70.28831310653686,70.31883440971374,70.34935571289063,70.37987701606751,70.41039831924438,70.44091962242126,70.47144092559815,70.50196222877503,70.53248353195191,70.56300483512878,70.59352613830566,70.62404744148255,70.65456874465943,70.6850900478363,70.71561135101318,70.74613265419006,70.77665395736695,70.80717526054383,70.8376965637207,70.86821786689758,70.89873917007446,70.92926047325135,70.95978177642823,70.9903030796051,71.02082438278198,71.05134568595886,71.08186698913575,71.11238829231262,71.1429095954895,71.17343089866638,71.20395220184326,71.23447350502015,71.26499480819702,71.2955161113739,71.32603741455078,71.35655871772767,71.38708002090453,71.41760132408142,71.4481226272583,71.47864393043518,71.50916523361207,71.53968653678893,71.57020783996582,71.6007291431427,71.63125044631958,71.66177174949647,71.69229305267334,71.72281435585022,71.7533356590271,71.78385696220398,71.81437826538085,71.84489956855774,71.87542087173462,71.9059421749115,71.93646347808838,71.96698478126525,71.99750608444214,72.02802738761902,72.0585486907959,72.08906999397279,72.11959129714965,72.15011260032654,72.18063390350342,72.2111552066803,72.24167650985717,72.27219781303405,72.30271911621094,72.33324041938782,72.3637617225647,72.39428302574157,72.42480432891846,72.45532563209534,72.48584693527222,72.5163682384491,72.54688954162597,72.57741084480286,72.60793214797974,72.63845345115662,72.66897475433349,72.69949605751037,72.73001736068726,72.76053866386414,72.79105996704102,72.82158127021789,72.85210257339477,72.88262387657166,72.91314517974854,72.94366648292541,72.97418778610229,73.00470908927917,73.03523039245606,73.06575169563294,73.09627299880981,73.12679430198669,73.15731560516357,73.18783690834046,73.21835821151734,73.24887951469421,73.27940081787109,73.30992212104798,73.34044342422486,73.37096472740173,73.40148603057861,73.4320073337555,73.46252863693238,73.49304994010926,73.52357124328613,73.55409254646301,73.5846138496399,73.61513515281678,73.64565645599366,73.67617775917053,73.70669906234741,73.7372203655243,73.76774166870118,73.79826297187805,73.82878427505493,73.85930557823181,73.8898268814087,73.92034818458558,73.95086948776245,73.98139079093933,74.01191209411621,74.0424333972931,74.07295470046996,74.10347600364685,74.13399730682373,74.16451861000061,74.1950399131775,74.22556121635436,74.25608251953125,74.28660382270813,74.31712512588501,74.3476464290619,74.37816773223877,74.40868903541565,74.43921033859253,74.46973164176941,74.50025294494628,74.53077424812317,74.56129555130005,74.59181685447693,74.62233815765381,74.65285946083068,74.68338076400757,74.71390206718445,74.74442337036133,74.77494467353822,74.80546597671508,74.83598727989197,74.86650858306885,74.89702988624573,74.9275511894226,74.95807249259948,74.98859379577637,75.01911509895325,75.04963640213013,75.080157705307,75.11067900848388,75.14120031166077,75.17172161483765,75.20224291801452,75.2327642211914,75.26328552436829,75.29380682754517,75.32432813072205,75.35484943389892,75.3853707370758,75.41589204025269,75.44641334342957,75.47693464660645,75.50745594978332,75.5379772529602,75.56849855613709,75.59901985931397,75.62954116249084,75.66006246566772,75.6905837688446,75.72110507202149,75.75162637519837,75.78214767837524,75.81266898155212,75.843190284729,75.87371158790589,75.90423289108277,75.93475419425964,75.96527549743652,75.9957968006134,76.02631810379029,76.05683940696716,76.08736071014404,76.11788201332092,76.1484033164978,76.17892461967469,76.20944592285156,76.23996722602844,76.27048852920532,76.3010098323822,76.33153113555908,76.36205243873596,76.39257374191284,76.42309504508972,76.4536163482666,76.48413765144348,76.51465895462036,76.54518025779724,76.57570156097412,76.60622286415101,76.63674416732788,76.66726547050476,76.69778677368164,76.72830807685853,76.7588293800354,76.78935068321228,76.81987198638916,76.85039328956604,76.88091459274293,76.9114358959198,76.94195719909668,76.97247850227356,77.00299980545044,77.03352110862733,77.0640424118042,77.09456371498108,77.12508501815796,77.15560632133484,77.18612762451171,77.2166489276886,77.24717023086548,77.27769153404236,77.30821283721924,77.33873414039611,77.369255443573,77.39977674674988,77.43029804992676,77.46081935310364,77.49134065628051,77.5218619594574,77.55238326263428,77.58290456581116,77.61342586898803,77.64394717216491,77.6744684753418,77.70498977851868,77.73551108169556,77.76603238487243,77.79655368804931,77.8270749912262,77.85759629440308,77.88811759757995,77.91863890075683,77.94916020393372,77.9796815071106,78.01020281028748,78.04072411346435,78.07124541664123,78.10176671981812,78.132288022995,78.16280932617188,78.19333062934875,78.22385193252563,78.25437323570252,78.2848945388794,78.31541584205627,78.34593714523315,78.37645844841003,78.40697975158692,78.4375010547638,78.46802235794067,78.49854366111755,78.52906496429443,78.55958626747132,78.5901075706482,78.62062887382507,78.65115017700195,78.68167148017884,78.71219278335572,78.74271408653259,78.77323538970947,78.80375669288635,78.83427799606324,78.86479929924012,78.89532060241699,78.92584190559387,78.95636320877075,78.98688451194764,79.0174058151245,79.04792711830139,79.07844842147827,79.10896972465515,79.13949102783204,79.1700123310089,79.20053363418579,79.23105493736267,79.26157624053955,79.29209754371644,79.3226188468933,79.35314015007019,79.38366145324707,79.41418275642395,79.44470405960082,79.4752253627777,79.50574666595459,79.53626796913147,79.56678927230836,79.59731057548522,79.6278318786621,79.65835318183899,79.68887448501587,79.71939578819276,79.74991709136962,79.78043839454651,79.81095969772339,79.84148100090027,79.87200230407714,79.90252360725403,79.93304491043091,79.96356621360779,79.99408751678467,80.02460881996154,80.05513012313843,80.08565142631531,80.11617272949219,80.14669403266906,80.17721533584594,80.20773663902283,80.23825794219971,80.26877924537659,80.29930054855346,80.32982185173034,80.36034315490723,80.39086445808411,80.42138576126099,80.45190706443786,80.48242836761474,80.51294967079163,80.54347097396851,80.57399227714538,80.60451358032226,80.63503488349915,80.66555618667603,80.69607748985291,80.72659879302978,80.75712009620666,80.78764139938355,80.81816270256043,80.84868400573731,80.87920530891418,80.90972661209106,80.94024791526795,80.97076921844483,81.0012905216217,81.03181182479858,81.06233312797546,81.09285443115235,81.12337573432923,81.1538970375061,81.18441834068298,81.21493964385986,81.24546094703675,81.27598225021362,81.3065035533905,81.33702485656738,81.36754615974426,81.39806746292115,81.42858876609802,81.4591100692749,81.48963137245178,81.52015267562867,81.55067397880555,81.58119528198242,81.6117165851593,81.64223788833618,81.67275919151307,81.70328049468993,81.73380179786682,81.7643231010437,81.79484440422058,81.82536570739747,81.85588701057434,81.88640831375122,81.9169296169281,81.94745092010498,81.97797222328187,82.00849352645874,82.03901482963562,82.0695361328125,82.10005743598938,82.13057873916625,82.16110004234314,82.19162134552002,82.2221426486969,82.25266395187379,82.28318525505065,82.31370655822754,82.34422786140442,82.3747491645813,82.40527046775817,82.43579177093505,82.46631307411194,82.49683437728882,82.5273556804657,82.55787698364257,82.58839828681946,82.61891958999634,82.64944089317322,82.6799621963501,82.71048349952697,82.74100480270386,82.77152610588074,82.80204740905762,82.83256871223449,82.86309001541137,82.89361131858826,82.92413262176514,82.95465392494202,82.98517522811889,83.01569653129577,83.04621783447266,83.07673913764954,83.10726044082642,83.13778174400329,83.16830304718017,83.19882435035706,83.22934565353394,83.25986695671081,83.29038825988769,83.32090956306457,83.35143086624146,83.38195216941834,83.41247347259521,83.44299477577209,83.47351607894898,83.50403738212586,83.53455868530274,83.56507998847961,83.5956012916565,83.62612259483338,83.65664389801026,83.68716520118713,83.71768650436401,83.7482078075409,83.77872911071778,83.80925041389466,83.83977171707153,83.87029302024841,83.9008143234253,83.93133562660218,83.96185692977905,83.99237823295593,84.02289953613281,84.0534208393097,84.08394214248658,84.11446344566345,84.14498474884033,84.17550605201721,84.2060273551941,84.23654865837098,84.26706996154785,84.29759126472473,84.32811256790161,84.3586338710785,84.38915517425536,84.41967647743225,84.45019778060913,84.48071908378601,84.5112403869629,84.54176169013977,84.57228299331665,84.60280429649353,84.63332559967041,84.6638469028473,84.69436820602417,84.72488950920105,84.75541081237793,84.78593211555481,84.81645341873168,84.84697472190857,84.87749602508545,84.90801732826233,84.93853863143922,84.96905993461608,84.99958123779297,85.03010254096985,85.06062384414673,85.0911451473236,85.12166645050048,85.15218775367737,85.18270905685425,85.21323036003113,85.243751663208,85.27427296638488,85.30479426956177,85.33531557273865,85.36583687591553,85.3963581790924,85.42687948226929,85.45740078544617,85.48792208862305,85.51844339179992,85.5489646949768,85.57948599815369,85.61000730133057,85.64052860450745,85.67104990768432,85.7015712108612,85.73209251403809,85.76261381721497,85.79313512039185,85.82365642356872,85.8541777267456,85.88469902992249,85.91522033309937,85.94574163627624,85.97626293945312,86.00678424263,86.03730554580689,86.06782684898377,86.09834815216064,86.12886945533752,86.1593907585144,86.18991206169129,86.22043336486816,86.25095466804504,86.28147597122192,86.3119972743988,86.34251857757569,86.37303988075256,86.40356118392944,86.43408248710632,86.4646037902832,86.49512509346009,86.52564639663696,86.55616769981384,86.58668900299072,86.6172103061676,86.64773160934448,86.67825291252136,86.70877421569824,86.73929551887512,86.76981682205201,86.80033812522888,86.83085942840576,86.86138073158264,86.89190203475953,86.92242333793641,86.95294464111328,86.98346594429016,87.01398724746704,87.04450855064393,87.0750298538208,87.10555115699768,87.13607246017456,87.16659376335144,87.19711506652833,87.2276363697052,87.25815767288208,87.28867897605896,87.31920027923584,87.34972158241271,87.3802428855896,87.41076418876648,87.44128549194336,87.47180679512024,87.50232809829711,87.532849401474,87.56337070465088,87.59389200782776,87.62441331100464,87.65493461418151,87.6854559173584,87.71597722053528,87.74649852371216,87.77701982688903,87.80754113006591,87.8380624332428,87.86858373641968,87.89910503959656,87.92962634277343,87.96014764595031,87.9906689491272,88.02119025230408,88.05171155548096,88.08223285865783,88.11275416183472,88.1432754650116,88.17379676818848,88.20431807136535,88.23483937454223,88.26536067771912,88.295881980896,88.32640328407288,88.35692458724975,88.38744589042663,88.41796719360352,88.4484884967804,88.47900979995728,88.50953110313415,88.54005240631103,88.57057370948792,88.6010950126648,88.63161631584167,88.66213761901855,88.69265892219543,88.72318022537232,88.7537015285492,88.78422283172607,88.81474413490295,88.84526543807984,88.87578674125672,88.90630804443359,88.93682934761047,88.96735065078735,88.99787195396424,89.02839325714112,89.05891456031799,89.08943586349487,89.11995716667175,89.15047846984864,89.18099977302552,89.21152107620239,89.24204237937927,89.27256368255615,89.30308498573304,89.3336062889099,89.36412759208679,89.39464889526367,89.42517019844055,89.45569150161744,89.4862128047943,89.51673410797119,89.54725541114807,89.57777671432495,89.60829801750184,89.6388193206787,89.66934062385559,89.69986192703247,89.73038323020936,89.76090453338622,89.7914258365631,89.82194713973999,89.85246844291687,89.88298974609376,89.91351104927062,89.94403235244751,89.97455365562439,90.00507495880127,90.03559626197814,90.06611756515503,90.09663886833191,90.12716017150879,90.15768147468567,90.18820277786254,90.21872408103943,90.24924538421631,90.27976668739319,90.31028799057007,90.34080929374694,90.37133059692383,90.40185190010071,90.43237320327759,90.46289450645446,90.49341580963134,90.52393711280823,90.55445841598511,90.58497971916199,90.61550102233886,90.64602232551574,90.67654362869263,90.70706493186951,90.7375862350464,90.76810753822326,90.79862884140015,90.82915014457703,90.85967144775391,90.89019275093078,90.92071405410766,90.95123535728455,90.98175666046143,91.01227796363831,91.04279926681518,91.07332056999206,91.10384187316895,91.13436317634583,91.1648844795227,91.19540578269958,91.22592708587646,91.25644838905335,91.28696969223023,91.3174909954071,91.34801229858398,91.37853360176086,91.40905490493775,91.43957620811463,91.4700975112915,91.50061881446838,91.53114011764526,91.56166142082215,91.59218272399902,91.6227040271759,91.65322533035278,91.68374663352967,91.71426793670655,91.74478923988342,91.7753105430603,91.80583184623718,91.83635314941407,91.86687445259095,91.89739575576782,91.9279170589447,91.95843836212158,91.98895966529847,92.01948096847534,92.05000227165222,92.0805235748291,92.11104487800598,92.14156618118287,92.17208748435974,92.20260878753662,92.2331300907135,92.26365139389038,92.29417269706725,92.32469400024414,92.35521530342102,92.3857366065979,92.41625790977479,92.44677921295165,92.47730051612854,92.50782181930542,92.5383431224823,92.56886442565919,92.59938572883605,92.62990703201294,92.66042833518982,92.6909496383667,92.72147094154357,92.75199224472046,92.78251354789734,92.81303485107422,92.8435561542511,92.87407745742797,92.90459876060486,92.93512006378174,92.96564136695862,92.9961626701355,93.02668397331237,93.05720527648926,93.08772657966614,93.11824788284302,93.14876918601989,93.17929048919677,93.20981179237366,93.24033309555054,93.27085439872742,93.30137570190429,93.33189700508117,93.36241830825806,93.39293961143494,93.42346091461181,93.45398221778869,93.48450352096557,93.51502482414246,93.54554612731934,93.57606743049621,93.60658873367309,93.63711003684998,93.66763134002686,93.69815264320374,93.72867394638061,93.7591952495575,93.78971655273438,93.82023785591126,93.85075915908813,93.88128046226501,93.9118017654419,93.94232306861878,93.97284437179566,94.00336567497253,94.03388697814941,94.0644082813263,94.09492958450318,94.12545088768006,94.15597219085693,94.18649349403381,94.2170147972107,94.24753610038758,94.27805740356445,94.30857870674133,94.33910000991821,94.3696213130951,94.40014261627198,94.43066391944885,94.46118522262573,94.49170652580261,94.5222278289795,94.55274913215638,94.58327043533325,94.61379173851013,94.64431304168701,94.6748343448639,94.70535564804077,94.73587695121765,94.76639825439453,94.79691955757141,94.8274408607483,94.85796216392517,94.88848346710205,94.91900477027893,94.94952607345581,94.98004737663268,95.01056867980957,95.04108998298645,95.07161128616333,95.10213258934021,95.13265389251708,95.16317519569397,95.19369649887085,95.22421780204773,95.25473910522462,95.28526040840148,95.31578171157837,95.34630301475525,95.37682431793213,95.407345621109,95.43786692428588,95.46838822746277,95.49890953063965,95.52943083381653,95.5599521369934,95.59047344017029,95.62099474334717,95.65151604652405,95.68203734970093,95.7125586528778,95.74307995605469,95.77360125923157,95.80412256240845,95.83464386558532,95.8651651687622,95.89568647193909,95.92620777511597,95.95672907829285,95.98725038146972,96.0177716846466,96.04829298782349,96.07881429100037,96.10933559417724,96.13985689735412,96.170378200531,96.20089950370789,96.23142080688477,96.26194211006164,96.29246341323852,96.3229847164154,96.35350601959229,96.38402732276917,96.41454862594604,96.44506992912292,96.4755912322998,96.50611253547669,96.53663383865356,96.56715514183044,96.59767644500732,96.6281977481842,96.65871905136109,96.68924035453796,96.71976165771484,96.75028296089172,96.7808042640686,96.81132556724549,96.84184687042236,96.87236817359924,96.90288947677612,96.93341077995301,96.96393208312988,96.99445338630676,97.02497468948364,97.05549599266052,97.08601729583741,97.11653859901428,97.14705990219116,97.17758120536804,97.20810250854493,97.2386238117218,97.26914511489868,97.29966641807556,97.33018772125244,97.36070902442933,97.3912303276062,97.42175163078308,97.45227293395996,97.48279423713684,97.51331554031373,97.5438368434906,97.57435814666748,97.60487944984436,97.63540075302124,97.66592205619811,97.696443359375,97.72696466255188,97.75748596572876,97.78800726890564,97.81852857208251,97.8490498752594,97.87957117843628,97.91009248161316,97.94061378479005,97.97113508796691,98.0016563911438,98.03217769432068,98.06269899749756,98.09322030067443,98.12374160385131,98.1542629070282,98.18478421020508,98.21530551338196,98.24582681655883,98.27634811973572,98.3068694229126,98.33739072608948,98.36791202926635,98.39843333244323,98.42895463562012,98.459475938797,98.48999724197388,98.52051854515075,98.55103984832763,98.58156115150452,98.6120824546814,98.64260375785828,98.67312506103515,98.70364636421203,98.73416766738892,98.7646889705658,98.79521027374267,98.82573157691955,98.85625288009643,98.88677418327332,98.9172954864502,98.94781678962707,98.97833809280395,99.00885939598083,99.03938069915772,99.0699020023346,99.10042330551147,99.13094460868835,99.16146591186524,99.19198721504212,99.22250851821899,99.25302982139587,99.28355112457275,99.31407242774964,99.34459373092652,99.37511503410339,99.40563633728027,99.43615764045715,99.46667894363404,99.49720024681092,99.52772154998779,99.55824285316467,99.58876415634155,99.61928545951844,99.6498067626953,99.68032806587219,99.71084936904907,99.74137067222595,99.77189197540284,99.8024132785797,99.83293458175659,99.86345588493347,99.89397718811036,99.92449849128722,99.9550197944641,99.98554109764099,100.01606240081787,100.04658370399476,100.07710500717162,100.10762631034851,100.13814761352539,100.16866891670227,100.19919021987916,100.22971152305603,100.26023282623291,100.29075412940979,100.32127543258667,100.35179673576354,100.38231803894043,100.41283934211731,100.44336064529419,100.47388194847107,100.50440325164794,100.53492455482483,100.56544585800171,100.59596716117859,100.62648846435548,100.65700976753234,100.68753107070923,100.71805237388611,100.74857367706299,100.77909498023986,100.80961628341674,100.84013758659363,100.87065888977051,100.9011801929474,100.93170149612426,100.96222279930114,100.99274410247803,101.02326540565491,101.05378670883178,101.08430801200866,101.11482931518555,101.14535061836243,101.17587192153931,101.20639322471618,101.23691452789306,101.26743583106995,101.29795713424683,101.32847843742371,101.35899974060058,101.38952104377746,101.42004234695435,101.45056365013123,101.4810849533081,101.51160625648498,101.54212755966186,101.57264886283875,101.60317016601563,101.6336914691925,101.66421277236938,101.69473407554626,101.72525537872315,101.75577668190003,101.7862979850769,101.81681928825378,101.84734059143067,101.87786189460755,101.90838319778442,101.9389045009613,101.96942580413818,101.99994710731507,102.03046841049195,102.06098971366882,102.0915110168457,102.12203232002258,102.15255362319947,102.18307492637634,102.21359622955322,102.2441175327301,102.27463883590698,102.30516013908387,102.33568144226074,102.36620274543762,102.3967240486145,102.42724535179138,102.45776665496827,102.48828795814514,102.51880926132202,102.5493305644989,102.57985186767579,102.61037317085265,102.64089447402954,102.67141577720642,102.7019370803833,102.73245838356019,102.76297968673705,102.79350098991394,102.82402229309082,102.8545435962677,102.88506489944459,102.91558620262145,102.94610750579834,102.97662880897522,103.0071501121521,103.03767141532897,103.06819271850586,103.09871402168274,103.12923532485962,103.1597566280365,103.19027793121337,103.22079923439026,103.25132053756714,103.28184184074402,103.31236314392089,103.34288444709777,103.37340575027466,103.40392705345154,103.43444835662842,103.46496965980529,103.49549096298217,103.52601226615906,103.55653356933594,103.58705487251282,103.61757617568969,103.64809747886657,103.67861878204346,103.70914008522034,103.73966138839721,103.77018269157409,103.80070399475098,103.83122529792786,103.86174660110474,103.89226790428161,103.9227892074585,103.95331051063538,103.98383181381226,104.01435311698914,104.04487442016601,104.0753957233429,104.10591702651978,104.13643832969666,104.16695963287353,104.19748093605041,104.2280022392273,104.25852354240418,104.28904484558106,104.31956614875793,104.35008745193481,104.3806087551117,104.41113005828858,104.44165136146545,104.47217266464233,104.50269396781921,104.5332152709961,104.56373657417298,104.59425787734985,104.62477918052673,104.65530048370361,104.6858217868805,104.71634309005738,104.74686439323425,104.77738569641113,104.80790699958801,104.8384283027649,104.86894960594176,104.89947090911865,104.92999221229553,104.96051351547241,104.9910348186493,105.02155612182617,105.05207742500305,105.08259872817993,105.11312003135681,105.1436413345337,105.17416263771057,105.20468394088745,105.23520524406433,105.26572654724121,105.29624785041808,105.32676915359497,105.35729045677185,105.38781175994873,105.41833306312562,105.44885436630248,105.47937566947937,105.50989697265625,105.54041827583313,105.57093957901002,105.60146088218688,105.63198218536377,105.66250348854065,105.69302479171753,105.7235460948944,105.75406739807129,105.78458870124817,105.81511000442505,105.84563130760193,105.8761526107788,105.90667391395569,105.93719521713257,105.96771652030945,105.99823782348632,106.0287591266632,106.05928042984009,106.08980173301697,106.12032303619385,106.15084433937072,106.1813656425476,106.21188694572449,106.24240824890137,106.27292955207825,106.30345085525512,106.333972158432,106.36449346160889,106.39501476478577,106.42553606796264,106.45605737113952,106.4865786743164,106.51709997749329,106.54762128067017,106.57814258384704,106.60866388702392,106.6391851902008,106.66970649337769,106.70022779655457,106.73074909973144,106.76127040290832,106.7917917060852,106.82231300926209,106.85283431243896,106.88335561561584,106.91387691879272,106.9443982219696,106.97491952514649,107.00544082832336,107.03596213150024,107.06648343467712,107.09700473785401,107.12752604103088,107.15804734420776,107.18856864738464,107.21908995056152,107.24961125373841,107.28013255691528,107.31065386009216,107.34117516326904,107.37169646644593,107.40221776962281,107.43273907279968,107.46326037597656,107.49378167915344,107.52430298233033,107.5548242855072,107.58534558868408,107.61586689186096,107.64638819503784,107.67690949821473,107.7074308013916,107.73795210456848,107.76847340774536,107.79899471092224,107.82951601409913,107.860037317276,107.89055862045288,107.92107992362976,107.95160122680664,107.98212252998351,108.0126438331604,108.04316513633728,108.07368643951416,108.10420774269105,108.13472904586791,108.1652503490448,108.19577165222168,108.22629295539856,108.25681425857543,108.28733556175231,108.3178568649292,108.34837816810608,108.37889947128296,108.40942077445983,108.43994207763672,108.4704633808136,108.50098468399048,108.53150598716736,108.56202729034423,108.59254859352112,108.623069896698,108.65359119987488,108.68411250305175,108.71463380622863,108.74515510940552,108.7756764125824,108.80619771575928,108.83671901893615,108.86724032211303,108.89776162528992,108.9282829284668,108.95880423164368,108.98932553482055,109.01984683799743,109.05036814117432,109.0808894443512,109.11141074752807,109.14193205070495,109.17245335388183,109.20297465705872,109.2334959602356,109.26401726341247,109.29453856658935,109.32505986976624,109.35558117294312,109.38610247611999,109.41662377929687,109.44714508247375,109.47766638565064,109.50818768882752,109.53870899200439,109.56923029518127,109.59975159835815,109.63027290153504,109.66079420471192,109.69131550788879,109.72183681106567,109.75235811424255,109.78287941741944,109.8134007205963,109.84392202377319,109.87444332695007,109.90496463012695,109.93548593330384,109.9660072364807,109.99652853965759,110.02704984283447,110.05757114601136,110.08809244918824,110.1186137523651,110.14913505554199,110.17965635871887,110.21017766189576,110.24069896507262,110.27122026824951,110.30174157142639,110.33226287460327,110.36278417778016,110.39330548095703,110.42382678413391,110.45434808731079,110.48486939048767,110.51539069366456,110.54591199684143,110.57643330001831,110.60695460319519,110.63747590637207,110.66799720954894,110.69851851272583,110.72903981590271,110.75956111907959,110.79008242225648,110.82060372543334,110.85112502861023,110.88164633178711,110.91216763496399,110.94268893814086,110.97321024131774,111.00373154449463,111.03425284767151,111.0647741508484,111.09529545402526,111.12581675720214,111.15633806037903,111.18685936355591,111.2173806667328,111.24790196990966,111.27842327308655,111.30894457626343,111.33946587944031,111.36998718261718,111.40050848579406,111.43102978897095,111.46155109214783,111.49207239532471,111.52259369850158,111.55311500167846,111.58363630485535,111.61415760803223,111.64467891120911,111.67520021438598,111.70572151756286,111.73624282073975,111.76676412391663,111.7972854270935,111.82780673027038,111.85832803344726,111.88884933662415,111.91937063980103,111.9498919429779,111.98041324615478,112.01093454933167,112.04145585250855,112.07197715568542,112.1024984588623,112.13301976203918,112.16354106521607,112.19406236839295,112.22458367156982,112.2551049747467,112.28562627792358,112.31614758110047,112.34666888427735,112.37719018745422,112.4077114906311,112.43823279380798,112.46875409698487,112.49927540016174,112.52979670333862,112.5603180065155,112.59083930969238,112.62136061286927,112.65188191604614,112.68240321922302,112.7129245223999,112.74344582557679,112.77396712875367,112.80448843193054,112.83500973510742,112.8655310382843,112.89605234146119,112.92657364463805,112.95709494781494,112.98761625099182,113.0181375541687,113.04865885734559,113.07918016052245,113.10970146369934,113.14022276687622,113.1707440700531,113.20126537322997,113.23178667640686,113.26230797958374,113.29282928276062,113.3233505859375,113.35387188911437,113.38439319229126,113.41491449546814,113.44543579864502,113.4759571018219,113.50647840499877,113.53699970817566,113.56752101135254,113.59804231452942,113.62856361770629,113.65908492088317,113.68960622406006,113.72012752723694,113.75064883041382,113.78117013359069,113.81169143676757,113.84221273994446,113.87273404312134,113.90325534629822,113.93377664947509,113.96429795265198,113.99481925582886,114.02534055900574,114.05586186218261,114.08638316535949,114.11690446853638,114.14742577171326,114.17794707489014,114.20846837806701,114.2389896812439,114.26951098442078,114.30003228759766,114.33055359077453,114.36107489395141,114.3915961971283,114.42211750030518,114.45263880348206,114.48316010665893,114.51368140983581,114.5442027130127,114.57472401618958,114.60524531936646,114.63576662254333,114.66628792572021,114.6968092288971,114.72733053207398,114.75785183525085,114.78837313842773,114.81889444160461,114.8494157447815,114.87993704795838,114.91045835113525,114.94097965431213,114.97150095748901,115.0020222606659,115.03254356384278,115.06306486701965,115.09358617019653,115.12410747337341,115.1546287765503,115.18515007972717,115.21567138290405,115.24619268608093,115.27671398925781,115.3072352924347,115.33775659561157,115.36827789878845,115.39879920196533,115.42932050514221,115.4598418083191,115.49036311149597,115.52088441467285,115.55140571784973,115.58192702102662,115.61244832420348,115.64296962738037,115.67349093055725,115.70401223373413,115.73453353691102,115.76505484008788,115.79557614326477,115.82609744644165,115.85661874961853,115.8871400527954,115.91766135597229,115.94818265914917,115.97870396232605,116.00922526550293,116.0397465686798,116.07026787185669,116.10078917503357,116.13131047821045,116.16183178138733,116.1923530845642,116.22287438774109,116.25339569091797,116.28391699409485,116.31443829727172,116.3449596004486,116.37548090362549,116.40600220680237,116.43652350997925,116.46704481315612,116.497566116333,116.52808741950989,116.55860872268677,116.58913002586365,116.61965132904052,116.6501726322174,116.68069393539429,116.71121523857117,116.74173654174804,116.77225784492492,116.8027791481018,116.83330045127869,116.86382175445557,116.89434305763244,116.92486436080932,116.9553856639862,116.98590696716309,117.01642827033996,117.04694957351684,117.07747087669372,117.1079921798706,117.13851348304749,117.16903478622436,117.19955608940124,117.23007739257812,117.26059869575501,117.29111999893189,117.32164130210876,117.35216260528564,117.38268390846252,117.41320521163941,117.44372651481628,117.47424781799316,117.50476912117004,117.53529042434693,117.56581172752381,117.59633303070068,117.62685433387756,117.65737563705444,117.68789694023133,117.71841824340821,117.74893954658508,117.77946084976196,117.80998215293884,117.84050345611573,117.8710247592926,117.90154606246948,117.93206736564636,117.96258866882324,117.99310997200013,118.023631275177,118.05415257835388,118.08467388153076,118.11519518470764,118.14571648788451,118.1762377910614,118.20675909423828,118.23728039741516,118.26780170059205,118.29832300376891,118.3288443069458,118.35936561012268,118.38988691329956,118.42040821647645,118.45092951965331,118.4814508228302,118.51197212600708,118.54249342918396,118.57301473236083,118.60353603553772,118.6340573387146,118.66457864189148,118.69509994506836,118.72562124824523,118.75614255142212,118.786663854599,118.81718515777588,118.84770646095276,118.87822776412963,118.90874906730652,118.9392703704834,118.96979167366028,119.00031297683715,119.03083428001403,119.06135558319092,119.0918768863678,119.12239818954468,119.15291949272155,119.18344079589843,119.21396209907532,119.2444834022522,119.27500470542907,119.30552600860595,119.33604731178283,119.36656861495972,119.3970899181366,119.42761122131347,119.45813252449035,119.48865382766724,119.51917513084412,119.549696434021,119.58021773719787,119.61073904037475,119.64126034355164,119.67178164672852,119.70230294990539,119.73282425308227,119.76334555625915,119.79386685943604,119.82438816261292,119.85490946578979,119.88543076896667,119.91595207214355,119.94647337532044,119.97699467849732,120.00751598167419,120.03803728485107,120.06855858802795,120.09907989120484,120.1296011943817,120.16012249755859,120.19064380073547,120.22116510391236,120.25168640708924,120.2822077102661,120.31272901344299,120.34325031661987,120.37377161979676,120.40429292297362,120.43481422615051,120.46533552932739,120.49585683250427,120.52637813568116,120.55689943885803,120.58742074203491,120.61794204521179,120.64846334838867,120.67898465156556,120.70950595474243,120.74002725791931,120.77054856109619,120.80106986427307,120.83159116744994,120.86211247062683,120.89263377380371,120.92315507698059,120.95367638015748,120.98419768333434,121.01471898651123,121.04524028968811,121.07576159286499,121.10628289604188,121.13680419921874,121.16732550239563,121.19784680557251,121.2283681087494,121.25888941192626,121.28941071510314,121.31993201828003,121.35045332145691,121.3809746246338,121.41149592781066,121.44201723098755,121.47253853416443,121.50305983734131,121.5335811405182,121.56410244369506,121.59462374687195,121.62514505004883,121.65566635322571,121.68618765640258,121.71670895957946,121.74723026275635,121.77775156593323,121.80827286911011,121.83879417228698,121.86931547546386,121.89983677864075,121.93035808181763,121.9608793849945,121.99140068817138,122.02192199134826,122.05244329452515,122.08296459770203,122.1134859008789,122.14400720405578,122.17452850723267,122.20504981040955,122.23557111358643,122.2660924167633,122.29661371994018,122.32713502311707,122.35765632629395,122.38817762947082,122.4186989326477,122.44922023582458,122.47974153900147,122.51026284217835,122.54078414535522,122.5713054485321,122.60182675170898,122.63234805488587,122.66286935806275,122.69339066123962,122.7239119644165,122.75443326759338,122.78495457077027,122.81547587394714,122.84599717712402,122.8765184803009,122.90703978347779,122.93756108665467,122.96808238983154,122.99860369300842,123.0291249961853,123.05964629936219,123.09016760253905,123.12068890571594,123.15121020889282,123.1817315120697,123.21225281524659,123.24277411842345,123.27329542160034,123.30381672477722,123.3343380279541,123.36485933113099,123.39538063430786,123.42590193748474,123.45642324066162,123.4869445438385,123.51746584701537,123.54798715019226,123.57850845336914,123.60902975654602,123.6395510597229,123.67007236289977,123.70059366607666,123.73111496925354,123.76163627243042,123.7921575756073,123.82267887878417,123.85320018196106,123.88372148513794,123.91424278831482,123.94476409149169,123.97528539466857,124.00580669784546,124.03632800102234,124.06684930419922,124.09737060737609,124.12789191055298,124.15841321372986,124.18893451690674,124.21945582008361,124.24997712326049,124.28049842643738,124.31101972961426,124.34154103279114,124.37206233596801,124.4025836391449,124.43310494232178,124.46362624549866,124.49414754867554,124.52466885185241,124.5551901550293,124.58571145820618,124.61623276138306,124.64675406455993,124.67727536773681,124.7077966709137,124.73831797409058,124.76883927726746,124.79936058044433,124.82988188362121,124.8604031867981,124.89092448997498,124.92144579315186,124.95196709632873,124.98248839950561,125.0130097026825,125.04353100585938,125.07405230903625,125.10457361221313,125.13509491539001,125.1656162185669,125.19613752174378,125.22665882492065,125.25718012809753,125.28770143127441,125.3182227344513,125.34874403762817,125.37926534080505,125.40978664398193,125.44030794715881,125.4708292503357,125.50135055351257,125.53187185668945,125.56239315986633,125.59291446304321,125.6234357662201,125.65395706939697,125.68447837257385,125.71499967575073,125.74552097892762,125.77604228210448,125.80656358528137,125.83708488845825,125.86760619163513,125.89812749481202,125.92864879798888,125.95917010116577,125.98969140434265,126.02021270751953,126.05073401069642,126.08125531387329,126.11177661705017,126.14229792022705,126.17281922340393,126.2033405265808,126.23386182975769,126.26438313293457,126.29490443611145,126.32542573928833,126.3559470424652,126.38646834564209,126.41698964881897,126.44751095199585,126.47803225517274,126.5085535583496,126.53907486152649,126.56959616470337,126.60011746788025,126.63063877105712,126.661160074234,126.69168137741089,126.72220268058777,126.75272398376465,126.78324528694152,126.8137665901184,126.84428789329529,126.87480919647217,126.90533049964904,126.93585180282592,126.9663731060028,126.99689440917969,127.02741571235657,127.05793701553344,127.08845831871032,127.1189796218872,127.14950092506409,127.18002222824097,127.21054353141784,127.24106483459472,127.2715861377716,127.30210744094849,127.33262874412536,127.36315004730224,127.39367135047912,127.42419265365601,127.45471395683289,127.48523526000976,127.51575656318664,127.54627786636352,127.57679916954041,127.60732047271729,127.63784177589416,127.66836307907104,127.69888438224793,127.72940568542481,127.75992698860168,127.79044829177856,127.82096959495544,127.85149089813233,127.88201220130921,127.91253350448608,127.94305480766296,127.97357611083984,128.0040974140167,128.03461871719358,128.06514002037048,128.09566132354735,128.12618262672424,128.1567039299011,128.18722523307798,128.21774653625488,128.24826783943175,128.27878914260864,128.3093104457855,128.33983174896238,128.37035305213928,128.40087435531615,128.43139565849305,128.4619169616699,128.49243826484678,128.52295956802368,128.55348087120055,128.58400217437745,128.61452347755431,128.64504478073118,128.67556608390808,128.70608738708495,128.73660869026185,128.76712999343872,128.79765129661558,128.82817259979248,128.85869390296935,128.88921520614622,128.91973650932312,128.95025781249998,128.98077911567688,129.01130041885375,129.04182172203062,129.07234302520752,129.10286432838438,129.13338563156128,129.16390693473815,129.19442823791502,129.22494954109192,129.25547084426879,129.28599214744568,129.31651345062255,129.34703475379942,129.37755605697632,129.4080773601532,129.43859866333008,129.46911996650695,129.49964126968382,129.53016257286072,129.5606838760376,129.59120517921446,129.62172648239135,129.65224778556822,129.68276908874512,129.713290391922,129.74381169509886,129.77433299827575,129.80485430145262,129.83537560462952,129.8658969078064,129.89641821098326,129.92693951416015,129.95746081733702,129.98798212051392,130.0185034236908,130.04902472686766,130.07954603004455,130.11006733322142,130.14058863639832,130.1711099395752,130.20163124275206,130.23215254592895,130.26267384910582,130.2931951522827,130.3237164554596,130.35423775863646,130.38475906181336,130.41528036499022,130.4458016681671,130.476322971344,130.50684427452086,130.53736557769776,130.56788688087462,130.5984081840515,130.6289294872284,130.65945079040526,130.68997209358216,130.72049339675903,130.7510146999359,130.7815360031128,130.81205730628966,130.84257860946656,130.87309991264343,130.9036212158203,130.9341425189972,130.96466382217406,130.99518512535096,131.02570642852783,131.0562277317047,131.0867490348816,131.11727033805846,131.14779164123533,131.17831294441223,131.2088342475891,131.239355550766,131.26987685394286,131.30039815711973,131.33091946029663,131.3614407634735,131.3919620666504,131.42248336982726,131.45300467300413,131.48352597618103,131.5140472793579,131.5445685825348,131.57508988571166,131.60561118888853,131.63613249206543,131.6666537952423,131.6971750984192,131.72769640159606,131.75821770477293,131.78873900794983,131.8192603111267,131.84978161430357,131.88030291748046,131.91082422065733,131.94134552383423,131.9718668270111,132.002388130188,132.03290943336486,132.06343073654173,132.09395203971863,132.1244733428955,132.1549946460724,132.18551594924926,132.21603725242613,132.24655855560303,132.2770798587799,132.3076011619568,132.33812246513367,132.36864376831053,132.39916507148743,132.4296863746643,132.4602076778412,132.49072898101807,132.52125028419493,132.55177158737183,132.5822928905487,132.6128141937256,132.64333549690247,132.67385680007934,132.70437810325623,132.7348994064331,132.76542070960997,132.79594201278687,132.82646331596374,132.85698461914063,132.8875059223175,132.91802722549437,132.94854852867127,132.97906983184814,133.00959113502503,133.0401124382019,133.07063374137877,133.10115504455567,133.13167634773254,133.16219765090943,133.1927189540863,133.22324025726317,133.25376156044007,133.28428286361694,133.31480416679383,133.3453254699707,133.37584677314757,133.40636807632447,133.43688937950134,133.46741068267823,133.4979319858551,133.52845328903197,133.55897459220887,133.58949589538574,133.6200171985626,133.6505385017395,133.68105980491637,133.71158110809327,133.74210241127014,133.772623714447,133.8031450176239,133.83366632080077,133.86418762397767,133.89470892715454,133.9252302303314,133.9557515335083,133.98627283668517,134.01679413986207,134.04731544303894,134.0778367462158,134.1083580493927,134.13887935256957,134.16940065574647,134.19992195892334,134.2304432621002,134.2609645652771,134.29148586845398,134.32200717163084,134.35252847480774,134.3830497779846,134.4135710811615,134.44409238433838,134.47461368751524,134.50513499069214,134.535656293869,134.5661775970459,134.59669890022278,134.62722020339965,134.65774150657654,134.6882628097534,134.7187841129303,134.74930541610718,134.77982671928405,134.81034802246094,134.8408693256378,134.8713906288147,134.90191193199158,134.93243323516845,134.96295453834534,134.9934758415222,135.0239971446991,135.05451844787598,135.08503975105285,135.11556105422974,135.1460823574066,135.17660366058348,135.20712496376038,135.23764626693725,135.26816757011414,135.298688873291,135.32921017646788,135.35973147964478,135.39025278282165,135.42077408599854,135.4512953891754,135.48181669235228,135.51233799552918,135.54285929870605,135.57338060188295,135.60390190505981,135.63442320823668,135.66494451141358,135.69546581459045,135.72598711776735,135.75650842094421,135.78702972412108,135.81755102729798,135.84807233047485,135.87859363365172,135.90911493682862,135.93963624000548,135.97015754318238,136.00067884635925,136.03120014953612,136.06172145271302,136.09224275588988,136.12276405906678,136.15328536224365,136.18380666542052,136.21432796859742,136.24484927177429,136.27537057495118,136.30589187812805,136.33641318130492,136.36693448448182,136.39745578765869,136.42797709083558,136.45849839401245,136.48901969718932,136.51954100036622,136.5500623035431,136.58058360671996,136.61110490989685,136.64162621307372,136.67214751625062,136.7026688194275,136.73319012260436,136.76371142578125,136.79423272895812,136.82475403213502,136.8552753353119,136.88579663848876,136.91631794166565,136.94683924484252,136.97736054801942,137.0078818511963,137.03840315437316,137.06892445755005,137.09944576072692,137.12996706390382,137.1604883670807,137.19100967025756,137.22153097343445,137.25205227661132,137.28257357978822,137.3130948829651,137.34361618614196,137.37413748931885,137.40465879249572,137.4351800956726,137.4657013988495,137.49622270202636,137.52674400520326,137.55726530838012,137.587786611557,137.6183079147339,137.64882921791076,137.67935052108766,137.70987182426452,137.7403931274414,137.7709144306183,137.80143573379516,137.83195703697206,137.86247834014893,137.8929996433258,137.9235209465027,137.95404224967956,137.98456355285646,138.01508485603333,138.0456061592102,138.0761274623871,138.10664876556396,138.13717006874083,138.16769137191773,138.1982126750946,138.2287339782715,138.25925528144836,138.28977658462523,138.32029788780213,138.350819190979,138.3813404941559,138.41186179733276,138.44238310050963,138.47290440368653,138.5034257068634,138.5339470100403,138.56446831321716,138.59498961639403,138.62551091957093,138.6560322227478,138.6865535259247,138.71707482910156,138.74759613227843,138.77811743545533,138.8086387386322,138.83916004180907,138.86968134498596,138.90020264816283,138.93072395133973,138.9612452545166,138.99176655769347,139.02228786087036,139.05280916404723,139.08333046722413,139.113851770401,139.14437307357787,139.17489437675476,139.20541567993163,139.23593698310853,139.2664582862854,139.29697958946227,139.32750089263916,139.35802219581603,139.38854349899293,139.4190648021698,139.44958610534667,139.48010740852357,139.51062871170043,139.54115001487733,139.5716713180542,139.60219262123107,139.63271392440797,139.66323522758483,139.6937565307617,139.7242778339386,139.75479913711547,139.78532044029237,139.81584174346924,139.8463630466461,139.876884349823,139.90740565299987,139.93792695617677,139.96844825935364,139.9989695625305,140.0294908657074,140.06001216888427,140.09053347206117,140.12105477523804,140.1515760784149,140.1820973815918,140.21261868476867,140.24313998794557,140.27366129112244,140.3041825942993,140.3347038974762,140.36522520065307,140.39574650382994,140.42626780700684,140.4567891101837,140.4873104133606,140.51783171653747,140.54835301971434,140.57887432289124,140.6093956260681,140.639916929245,140.67043823242187,140.70095953559874,140.73148083877564,140.7620021419525,140.7925234451294,140.82304474830627,140.85356605148314,140.88408735466004,140.9146086578369,140.9451299610138,140.97565126419067,141.00617256736754,141.03669387054444,141.0672151737213,141.0977364768982,141.12825778007507,141.15877908325194,141.18930038642884,141.2198216896057,141.25034299278258,141.28086429595947,141.31138559913634,141.34190690231324,141.3724282054901,141.40294950866698,141.43347081184388,141.46399211502074,141.49451341819764,141.5250347213745,141.55555602455138,141.58607732772828,141.61659863090514,141.64711993408204,141.6776412372589,141.70816254043578,141.73868384361268,141.76920514678955,141.79972644996644,141.8302477531433,141.86076905632018,141.89129035949708,141.92181166267395,141.95233296585081,141.9828542690277,142.01337557220458,142.04389687538148,142.07441817855835,142.10493948173522,142.1354607849121,142.16598208808898,142.19650339126588,142.22702469444275,142.25754599761962,142.2880673007965,142.31858860397338,142.34910990715028,142.37963121032715,142.41015251350402,142.4406738166809,142.47119511985778,142.50171642303468,142.53223772621155,142.56275902938842,142.5932803325653,142.62380163574218,142.65432293891905,142.68484424209595,142.71536554527282,142.74588684844971,142.77640815162658,142.80692945480345,142.83745075798035,142.86797206115722,142.89849336433412,142.92901466751098,142.95953597068785,142.99005727386475,143.02057857704162,143.05109988021852,143.08162118339538,143.11214248657225,143.14266378974915,143.17318509292602,143.20370639610292,143.23422769927978,143.26474900245665,143.29527030563355,143.32579160881042,143.35631291198732,143.38683421516419,143.41735551834105,143.44787682151795,143.47839812469482,143.5089194278717,143.5394407310486,143.56996203422545,143.60048333740235,143.63100464057922,143.6615259437561,143.692047246933,143.72256855010986,143.75308985328675,143.78361115646362,143.8141324596405,143.8446537628174,143.87517506599426,143.90569636917115,143.93621767234802,143.9667389755249,143.9972602787018,144.02778158187866,144.05830288505555,144.08882418823242,144.1193454914093,144.1498667945862,144.18038809776306,144.21090940093993,144.24143070411682,144.2719520072937,144.3024733104706,144.33299461364746,144.36351591682433,144.39403722000122,144.4245585231781,144.455079826355,144.48560112953186,144.51612243270873,144.54664373588562,144.5771650390625,144.6076863422394,144.63820764541626,144.66872894859313,144.69925025177002,144.7297715549469,144.7602928581238,144.79081416130066,144.82133546447753,144.85185676765443,144.8823780708313,144.91289937400816,144.94342067718506,144.97394198036193,145.00446328353883,145.0349845867157,145.06550588989256,145.09602719306946,145.12654849624633,145.15706979942323,145.1875911026001,145.21811240577696,145.24863370895386,145.27915501213073,145.30967631530763,145.3401976184845,145.37071892166136,145.40124022483826,145.43176152801513,145.46228283119203,145.4928041343689,145.52332543754576,145.55384674072266,145.58436804389953,145.61488934707643,145.6454106502533,145.67593195343017,145.70645325660706,145.73697455978393,145.7674958629608,145.7980171661377,145.82853846931457,145.85905977249146,145.88958107566833,145.9201023788452,145.9506236820221,145.98114498519897,146.01166628837586,146.04218759155273,146.0727088947296,146.1032301979065,146.13375150108337,146.16427280426026,146.19479410743713,146.225315410614,146.2558367137909,146.28635801696777,146.31687932014466,146.34740062332153,146.3779219264984,146.4084432296753,146.43896453285217,146.46948583602904,146.50000713920593,146.5305284423828,146.5610497455597,146.59157104873657,146.62209235191344,146.65261365509033,146.6831349582672,146.7136562614441,146.74417756462097,146.77469886779784,146.80522017097474,146.8357414741516,146.8662627773285,146.89678408050537,146.92730538368224,146.95782668685914,146.988347990036,147.0188692932129,147.04939059638977,147.07991189956664,147.11043320274354,147.1409545059204,147.1714758090973,147.20199711227417,147.23251841545104,147.26303971862794,147.2935610218048,147.32408232498167,147.35460362815857,147.38512493133544,147.41564623451234,147.4461675376892,147.47668884086607,147.50721014404297,147.53773144721984,147.56825275039674,147.5987740535736,147.62929535675048,147.65981665992737,147.69033796310424,147.72085926628114,147.751380569458,147.78190187263488,147.81242317581177,147.84294447898864,147.87346578216554,147.9039870853424,147.93450838851928,147.96502969169617,147.99555099487304,148.0260722980499,148.0565936012268,148.08711490440368,148.11763620758057,148.14815751075744,148.1786788139343,148.2092001171112,148.23972142028808,148.27024272346497,148.30076402664184,148.3312853298187,148.3618066329956,148.39232793617248,148.42284923934938,148.45337054252624,148.4838918457031,148.51441314888,148.54493445205688,148.57545575523378,148.60597705841064,148.6364983615875,148.6670196647644,148.69754096794128,148.72806227111815,148.75858357429505,148.7891048774719,148.8196261806488,148.85014748382568,148.88066878700255,148.91119009017945,148.94171139335631,148.9722326965332,149.00275399971008,149.03327530288695,149.06379660606385,149.09431790924071,149.1248392124176,149.15536051559448,149.18588181877135,149.21640312194825,149.24692442512512,149.277445728302,149.30796703147888,149.33848833465575,149.36900963783265,149.39953094100952,149.4300522441864,149.46057354736328,149.49109485054015,149.52161615371705,149.55213745689392,149.58265876007079,149.61318006324768,149.64370136642455,149.67422266960145,149.70474397277832,149.7352652759552,149.76578657913208,149.79630788230895,149.82682918548585,149.85735048866272,149.8878717918396,149.91839309501648,149.94891439819335,149.97943570137025,150.00995700454712,150.040478307724,150.07099961090088,150.10152091407775,150.13204221725465,150.16256352043152,150.1930848236084,150.22360612678528,150.25412742996215,150.28464873313902,150.31517003631592,150.3456913394928,150.37621264266969,150.40673394584655,150.43725524902342,150.46777655220032,150.4982978553772,150.52881915855409,150.55934046173095,150.58986176490782,150.62038306808472,150.6509043712616,150.6814256744385,150.71194697761536,150.74246828079222,150.77298958396912,150.803510887146,150.8340321903229,150.86455349349976,150.89507479667662,150.92559609985352,150.9561174030304,150.9866387062073,151.01716000938416,151.04768131256102,151.07820261573792,151.1087239189148,151.13924522209166,151.16976652526856,151.20028782844543,151.23080913162232,151.2613304347992,151.29185173797606,151.32237304115296,151.35289434432983,151.38341564750672,151.4139369506836,151.44445825386046,151.47497955703736,151.50550086021423,151.53602216339112,151.566543466568,151.59706476974486,151.62758607292176,151.65810737609863,151.68862867927552,151.7191499824524,151.74967128562926,151.78019258880616,151.81071389198303,151.8412351951599,151.8717564983368,151.90227780151366,151.93279910469056,151.96332040786743,151.9938417110443,152.0243630142212,152.05488431739806,152.08540562057496,152.11592692375183,152.1464482269287,152.1769695301056,152.20749083328246,152.23801213645936,152.26853343963623,152.2990547428131,152.32957604599,152.36009734916686,152.39061865234376,152.42113995552063,152.4516612586975,152.4821825618744,152.51270386505126,152.54322516822813,152.57374647140503,152.6042677745819,152.6347890777588,152.66531038093567,152.69583168411253,152.72635298728943,152.7568742904663,152.7873955936432,152.81791689682007,152.84843819999693,152.87895950317383,152.9094808063507,152.9400021095276,152.97052341270447,153.00104471588133,153.03156601905823,153.0620873222351,153.092608625412,153.12312992858887,153.15365123176574,153.18417253494263,153.2146938381195,153.2452151412964,153.27573644447327,153.30625774765014,153.33677905082703,153.3673003540039,153.39782165718077,153.42834296035767,153.45886426353454,153.48938556671143,153.5199068698883,153.55042817306517,153.58094947624207,153.61147077941894,153.64199208259583,153.6725133857727,153.70303468894957,153.73355599212647,153.76407729530334,153.79459859848023,153.8251199016571,153.85564120483397,153.88616250801087,153.91668381118774,153.94720511436464,153.9777264175415,154.00824772071837,154.03876902389527,154.06929032707214,154.099811630249,154.1303329334259,154.16085423660277,154.19137553977967,154.22189684295654,154.2524181461334,154.2829394493103,154.31346075248717,154.34398205566407,154.37450335884094,154.4050246620178,154.4355459651947,154.46606726837157,154.49658857154847,154.52710987472534,154.5576311779022,154.5881524810791,154.61867378425598,154.64919508743287,154.67971639060974,154.7102376937866,154.7407589969635,154.77128030014038,154.80180160331724,154.83232290649414,154.862844209671,154.8933655128479,154.92388681602478,154.95440811920164,154.98492942237854,155.0154507255554,155.0459720287323,155.07649333190918,155.10701463508605,155.13753593826294,155.1680572414398,155.1985785446167,155.22909984779358,155.25962115097045,155.29014245414734,155.3206637573242,155.3511850605011,155.38170636367798,155.41222766685485,155.44274897003174,155.4732702732086,155.5037915763855,155.53431287956238,155.56483418273925,155.59535548591614,155.625876789093,155.65639809226988,155.68691939544678,155.71744069862365,155.74796200180054,155.7784833049774,155.80900460815428,155.83952591133118,155.87004721450805,155.90056851768495,155.9310898208618,155.96161112403868,155.99213242721558,156.02265373039245,156.05317503356935,156.08369633674621,156.11421763992308,156.14473894309998,156.17526024627685,156.20578154945375,156.23630285263062,156.26682415580748,156.29734545898438,156.32786676216125,156.35838806533812,156.38890936851502,156.41943067169188,156.44995197486878,156.48047327804565,156.51099458122252,156.54151588439942,156.57203718757629,156.60255849075318,156.63307979393005,156.66360109710692,156.69412240028382,156.72464370346069,156.75516500663758,156.78568630981445,156.81620761299132,156.84672891616822,156.8772502193451,156.90777152252198,156.93829282569885,156.96881412887572,156.99933543205262,157.0298567352295,157.06037803840638,157.09089934158325,157.12142064476012,157.15194194793702,157.1824632511139,157.21298455429076,157.24350585746765,157.27402716064452,157.30454846382142,157.3350697669983,157.36559107017516,157.39611237335205,157.42663367652892,157.45715497970582,157.4876762828827,157.51819758605956,157.54871888923645,157.57924019241332,157.60976149559022,157.6402827987671,157.67080410194396,157.70132540512085,157.73184670829772,157.76236801147462,157.7928893146515,157.82341061782836,157.85393192100526,157.88445322418212,157.914974527359,157.9454958305359,157.97601713371276,158.00653843688966,158.03705974006652,158.0675810432434,158.0981023464203,158.12862364959716,158.15914495277406,158.18966625595093,158.2201875591278,158.2507088623047,158.28123016548156,158.31175146865846,158.34227277183533,158.3727940750122,158.4033153781891,158.43383668136596,158.46435798454286,158.49487928771973,158.5254005908966,158.5559218940735,158.58644319725036,158.61696450042723,158.64748580360413,158.678007106781,158.7085284099579,158.73904971313476,158.76957101631163,158.80009231948853,158.8306136226654,158.8611349258423,158.89165622901916,158.92217753219603,158.95269883537293,158.9832201385498,159.0137414417267,159.04426274490356,159.07478404808043,159.10530535125733,159.1358266544342,159.1663479576111,159.19686926078796,159.22739056396483,159.25791186714173,159.2884331703186,159.3189544734955,159.34947577667236,159.37999707984923,159.41051838302613,159.441039686203,159.47156098937987,159.50208229255676,159.53260359573363,159.56312489891053,159.5936462020874,159.62416750526427,159.65468880844116,159.68521011161803,159.71573141479493,159.7462527179718,159.77677402114867,159.80729532432557,159.83781662750243,159.86833793067933,159.8988592338562,159.92938053703307,159.95990184020997,159.99042314338683,160.02094444656373,160.0514657497406,160.08198705291747,160.11250835609437,160.14302965927124,160.1735509624481,160.204072265625,160.23459356880187,160.26511487197877,160.29563617515564,160.3261574783325,160.3566787815094,160.38720008468627,160.41772138786317,160.44824269104004,160.4787639942169,160.5092852973938,160.53980660057067,160.57032790374757,160.60084920692444,160.6313705101013,160.6618918132782,160.69241311645507,160.72293441963197,160.75345572280884,160.7839770259857,160.8144983291626,160.84501963233947,160.87554093551634,160.90606223869324,160.9365835418701,160.967104845047,160.99762614822387,161.02814745140074,161.05866875457764,161.0891900577545,161.1197113609314,161.15023266410827,161.18075396728514,161.21127527046204,161.2417965736389,161.2723178768158,161.30283917999267,161.33336048316954,161.36388178634644,161.3944030895233,161.4249243927002,161.45544569587707,161.48596699905394,161.51648830223084,161.5470096054077,161.5775309085846,161.60805221176147,161.63857351493834,161.66909481811524,161.6996161212921,161.73013742446898,161.76065872764588,161.79118003082274,161.82170133399964,161.8522226371765,161.88274394035338,161.91326524353028,161.94378654670714,161.97430784988404,162.0048291530609,162.03535045623778,162.06587175941468,162.09639306259155,162.12691436576844,162.1574356689453,162.18795697212218,162.21847827529908,162.24899957847595,162.27952088165284,162.3100421848297,162.34056348800658,162.37108479118348,162.40160609436035,162.43212739753722,162.4626487007141,162.49317000389098,162.52369130706788,162.55421261024475,162.58473391342162,162.6152552165985,162.64577651977538,162.67629782295228,162.70681912612915,162.73734042930602,162.7678617324829,162.79838303565978,162.82890433883668,162.85942564201355,162.88994694519042,162.9204682483673,162.95098955154418,162.98151085472108,163.01203215789795,163.04255346107482,163.07307476425171,163.10359606742858,163.13411737060548,163.16463867378235,163.19515997695922,163.22568128013611,163.25620258331298,163.28672388648985,163.31724518966675,163.34776649284362,163.37828779602052,163.40880909919738,163.43933040237425,163.46985170555115,163.50037300872802,163.53089431190492,163.56141561508178,163.59193691825865,163.62245822143555,163.65297952461242,163.68350082778932,163.71402213096619,163.74454343414305,163.77506473731995,163.80558604049682,163.83610734367372,163.8666286468506,163.89714995002745,163.92767125320435,163.95819255638122,163.9887138595581,164.019235162735,164.04975646591186,164.08027776908875,164.11079907226562,164.1413203754425,164.1718416786194,164.20236298179626,164.23288428497315,164.26340558815002,164.2939268913269,164.3244481945038,164.35496949768066,164.38549080085755,164.41601210403442,164.4465334072113,164.4770547103882,164.50757601356506,164.53809731674195,164.56861861991882,164.5991399230957,164.6296612262726,164.66018252944946,164.69070383262633,164.72122513580322,164.7517464389801,164.782267742157,164.81278904533386,164.84331034851073,164.87383165168762,164.9043529548645,164.9348742580414,164.96539556121826,164.99591686439513,165.02643816757202,165.0569594707489,165.0874807739258,165.11800207710266,165.14852338027953,165.17904468345642,165.2095659866333,165.2400872898102,165.27060859298706,165.30112989616393,165.33165119934083,165.3621725025177,165.3926938056946,165.42321510887146,165.45373641204833,165.48425771522523,165.5147790184021,165.54530032157896,165.57582162475586,165.60634292793273,165.63686423110963,165.6673855342865,165.69790683746336,165.72842814064026,165.75894944381713,165.78947074699403,165.8199920501709,165.85051335334776,165.88103465652466,165.91155595970153,165.94207726287843,165.9725985660553,166.00311986923217,166.03364117240906,166.06416247558593,166.09468377876283,166.1252050819397,166.15572638511657,166.18624768829346,166.21676899147033,166.2472902946472,166.2778115978241,166.30833290100097,166.33885420417786,166.36937550735473,166.3998968105316,166.4304181137085,166.46093941688537,166.49146072006226,166.52198202323913,166.552503326416,166.5830246295929,166.61354593276977,166.64406723594666,166.67458853912353,166.7051098423004,166.7356311454773,166.76615244865417,166.79667375183107,166.82719505500793,166.8577163581848,166.8882376613617,166.91875896453857,166.94928026771544,166.97980157089233,167.0103228740692,167.0408441772461,167.07136548042297,167.10188678359984,167.13240808677673,167.1629293899536,167.1934506931305,167.22397199630737,167.25449329948424,167.28501460266114,167.315535905838,167.3460572090149,167.37657851219177,167.40709981536864,167.43762111854554,167.4681424217224,167.4986637248993,167.52918502807617,167.55970633125304,167.59022763442994,167.6207489376068,167.6512702407837,167.68179154396057,167.71231284713744,167.74283415031434,167.7733554534912,167.80387675666807,167.83439805984497,167.86491936302184,167.89544066619874,167.9259619693756,167.95648327255248,167.98700457572937,168.01752587890624,168.04804718208314,168.07856848526,168.10908978843688,168.13961109161377,168.17013239479064,168.20065369796754,168.2311750011444,168.26169630432128,168.29221760749817,168.32273891067504,168.35326021385194,168.3837815170288,168.41430282020568,168.44482412338257,168.47534542655944,168.5058667297363,168.5363880329132,168.56690933609008,168.59743063926697,168.62795194244384,168.6584732456207,168.6889945487976,168.71951585197448,168.75003715515138,168.78055845832824,168.8110797615051,168.841601064682,168.87212236785888,168.90264367103578,168.93316497421264,168.9636862773895,168.9942075805664,169.02472888374328,169.05525018692018,169.08577149009704,169.1162927932739,169.1468140964508,169.17733539962768,169.20785670280458,169.23837800598145,169.26889930915831,169.2994206123352,169.32994191551208,169.36046321868895,169.39098452186585,169.42150582504271,169.4520271282196,169.48254843139648,169.51306973457335,169.54359103775025,169.57411234092712,169.604633644104,169.63515494728088,169.66567625045775,169.69619755363465,169.72671885681152,169.7572401599884,169.78776146316528,169.81828276634215,169.84880406951905,169.87932537269592,169.9098466758728,169.94036797904968,169.97088928222655,170.00141058540345,170.03193188858032,170.06245319175719,170.09297449493408,170.12349579811095,170.15401710128785,170.18453840446472,170.2150597076416,170.24558101081848,170.27610231399535,170.30662361717225,170.33714492034912,170.367666223526,170.39818752670288,170.42870882987975,170.45923013305665,170.48975143623352,170.5202727394104,170.55079404258728,170.58131534576415,170.61183664894105,170.64235795211792,170.6728792552948,170.70340055847169,170.73392186164855,170.76444316482542,170.79496446800232,170.8254857711792,170.85600707435609,170.88652837753295,170.91704968070982,170.94757098388672,170.9780922870636,171.0086135902405,171.03913489341735,171.06965619659422,171.10017749977112,171.130698802948,171.1612201061249,171.19174140930176,171.22226271247862,171.25278401565552,171.2833053188324,171.3138266220093,171.34434792518616,171.37486922836302,171.40539053153992,171.4359118347168,171.4664331378937,171.49695444107056,171.52747574424743,171.55799704742432,171.5885183506012,171.61903965377806,171.64956095695496,171.68008226013183,171.71060356330872,171.7411248664856,171.77164616966246,171.80216747283936,171.83268877601623,171.86321007919312,171.89373138237,171.92425268554686,171.95477398872376,171.98529529190063,172.01581659507752,172.0463378982544,172.07685920143126,172.10738050460816,172.13790180778503,172.16842311096192,172.1989444141388,172.22946571731566,172.25998702049256,172.29050832366943,172.3210296268463,172.3515509300232,172.38207223320006,172.41259353637696,172.44311483955383,172.4736361427307,172.5041574459076,172.53467874908446,172.56520005226136,172.59572135543823,172.6262426586151,172.656763961792,172.68728526496886,172.71780656814576,172.74832787132263,172.7788491744995,172.8093704776764,172.83989178085326,172.87041308403016,172.90093438720703,172.9314556903839,172.9619769935608,172.99249829673766,173.02301959991456,173.05354090309143,173.0840622062683,173.1145835094452,173.14510481262207,173.17562611579893,173.20614741897583,173.2366687221527,173.2671900253296,173.29771132850647,173.32823263168333,173.35875393486023,173.3892752380371,173.419796541214,173.45031784439087,173.48083914756774,173.51136045074463,173.5418817539215,173.5724030570984,173.60292436027527,173.63344566345214,173.66396696662903,173.6944882698059,173.7250095729828,173.75553087615967,173.78605217933654,173.81657348251343,173.8470947856903,173.87761608886717,173.90813739204407,173.93865869522094,173.96917999839783,173.9997013015747,174.03022260475157,174.06074390792847,174.09126521110534,174.12178651428223,174.1523078174591,174.18282912063597,174.21335042381287,174.24387172698974,174.27439303016664,174.3049143333435,174.33543563652037,174.36595693969727,174.39647824287414,174.42699954605104,174.4575208492279,174.48804215240477,174.51856345558167,174.54908475875854,174.5796060619354,174.6101273651123,174.64064866828917,174.67116997146607,174.70169127464294,174.7322125778198,174.7627338809967,174.79325518417357,174.82377648735047,174.85429779052734,174.8848190937042,174.9153403968811,174.94586170005797,174.97638300323487,175.00690430641174,175.0374256095886,175.0679469127655,175.09846821594238,175.12898951911927,175.15951082229614,175.190032125473,175.2205534286499,175.25107473182678,175.28159603500367,175.31211733818054,175.3426386413574,175.3731599445343,175.40368124771118,175.43420255088805,175.46472385406494,175.4952451572418,175.5257664604187,175.55628776359558,175.58680906677245,175.61733036994934,175.6478516731262,175.6783729763031,175.70889427947998,175.73941558265685,175.76993688583374,175.8004581890106,175.8309794921875,175.86150079536438,175.89202209854125,175.92254340171814,175.953064704895,175.9835860080719,176.01410731124878,176.04462861442565,176.07514991760254,176.1056712207794,176.13619252395628,176.16671382713318,176.19723513031005,176.22775643348695,176.2582777366638,176.28879903984068,176.31932034301758,176.34984164619445,176.38036294937135,176.41088425254821,176.44140555572508,176.47192685890198,176.50244816207885,176.53296946525575,176.56349076843262,176.59401207160948,176.62453337478638,176.65505467796325,176.68557598114015,176.71609728431702,176.74661858749388,176.77713989067078,176.80766119384765,176.83818249702452,176.86870380020142,176.89922510337828,176.92974640655518,176.96026770973205,176.99078901290892,177.02131031608582,177.05183161926269,177.08235292243958,177.11287422561645,177.14339552879332,177.17391683197022,177.2044381351471,177.23495943832398,177.26548074150085,177.29600204467772,177.32652334785462,177.3570446510315,177.38756595420838,177.41808725738525,177.44860856056212,177.47912986373902,177.5096511669159,177.54017247009278,177.57069377326965,177.60121507644652,177.63173637962342,177.6622576828003,177.69277898597716,177.72330028915405,177.75382159233092,177.78434289550782,177.8148641986847,177.84538550186156,177.87590680503845,177.90642810821532,177.93694941139222,177.9674707145691,177.99799201774596,178.02851332092285,178.05903462409972,178.08955592727662,178.1200772304535,178.15059853363036,178.18111983680726,178.21164113998412,178.24216244316102,178.2726837463379,178.30320504951476,178.33372635269166,178.36424765586852,178.3947689590454,178.4252902622223,178.45581156539916,178.48633286857606,178.51685417175293,178.5473754749298,178.5778967781067,178.60841808128356,178.63893938446046,178.66946068763733,178.6999819908142,178.7305032939911,178.76102459716796,178.79154590034486,178.82206720352173,178.8525885066986,178.8831098098755,178.91363111305236,178.94415241622926,178.97467371940613,179.005195022583,179.0357163257599,179.06623762893676,179.09675893211366,179.12728023529053,179.1578015384674,179.1883228416443,179.21884414482116,179.24936544799803,179.27988675117493,179.3104080543518,179.3409293575287,179.37145066070556,179.40197196388243,179.43249326705933,179.4630145702362,179.4935358734131,179.52405717658996,179.55457847976683,179.58509978294373,179.6156210861206,179.6461423892975,179.67666369247436,179.70718499565123,179.73770629882813,179.768227602005,179.7987489051819,179.82927020835876,179.85979151153563,179.89031281471253,179.9208341178894,179.95135542106627,179.98187672424316,180.01239802742003,180.04291933059693,180.0734406337738,180.10396193695067,180.13448324012757,180.16500454330443,180.19552584648133,180.2260471496582,180.25656845283507,180.28708975601197,180.31761105918883,180.34813236236573,180.3786536655426,180.40917496871947,180.43969627189637,180.47021757507324,180.50073887825013,180.531260181427,180.56178148460387,180.59230278778077,180.62282409095764,180.6533453941345,180.6838666973114,180.71438800048827,180.74490930366517,180.77543060684204,180.8059519100189,180.8364732131958,180.86699451637267,180.89751581954957,180.92803712272644,180.9585584259033,180.9890797290802,181.01960103225707,181.05012233543397,181.08064363861084,181.1111649417877,181.1416862449646,181.17220754814147,181.20272885131837,181.23325015449524,181.2637714576721,181.294292760849,181.32481406402587,181.35533536720277,181.38585667037964,181.4163779735565,181.4468992767334,181.47742057991027,181.50794188308714,181.53846318626404,181.5689844894409,181.5995057926178,181.63002709579467,181.66054839897154,181.69106970214844,181.7215910053253,181.7521123085022,181.78263361167907,181.81315491485594,181.84367621803284,181.8741975212097,181.9047188243866,181.93524012756347,181.96576143074034,181.99628273391724,182.0268040370941,182.057325340271,182.08784664344788,182.11836794662474,182.14888924980164,182.1794105529785,182.20993185615538,182.24045315933228,182.27097446250914,182.30149576568604,182.3320170688629,182.36253837203978,182.39305967521668,182.42358097839355,182.45410228157044,182.4846235847473,182.51514488792418,182.54566619110108,182.57618749427795,182.60670879745484,182.6372301006317,182.66775140380858,182.69827270698548,182.72879401016235,182.75931531333924,182.7898366165161,182.82035791969298,182.85087922286988,182.88140052604675,182.91192182922362,182.9424431324005,182.97296443557738,183.00348573875428,183.03400704193115,183.06452834510802,183.0950496482849,183.12557095146178,183.15609225463868,183.18661355781555,183.21713486099242,183.2476561641693,183.27817746734618,183.30869877052308,183.33922007369995,183.36974137687682,183.40026268005371,183.43078398323058,183.46130528640748,183.49182658958435,183.52234789276122,183.55286919593811,183.58339049911498,183.61391180229188,183.64443310546875,183.67495440864562,183.70547571182252,183.73599701499938,183.76651831817625,183.79703962135315,183.82756092453002,183.85808222770692,183.88860353088378,183.91912483406065,183.94964613723755,183.98016744041442,184.01068874359132,184.04121004676819,184.07173134994505,184.10225265312195,184.13277395629882,184.16329525947572,184.1938165626526,184.22433786582945,184.25485916900635,184.28538047218322,184.31590177536012,184.346423078537,184.37694438171386,184.40746568489075,184.43798698806762,184.4685082912445,184.4990295944214,184.52955089759826,184.56007220077515,184.59059350395202,184.6211148071289,184.6516361103058,184.68215741348266,184.71267871665955,184.74320001983642,184.7737213230133,184.8042426261902,184.83476392936706,184.86528523254395,184.89580653572082,184.9263278388977,184.9568491420746,184.98737044525146,185.01789174842835,185.04841305160522,185.0789343547821,185.109455657959,185.13997696113586,185.17049826431276,185.20101956748962,185.2315408706665,185.2620621738434,185.29258347702026,185.32310478019713,185.35362608337402,185.3841473865509,185.4146686897278,185.44518999290466,185.47571129608153,185.50623259925842,185.5367539024353,185.5672752056122,185.59779650878906,185.62831781196593,185.65883911514283,185.6893604183197,185.7198817214966,185.75040302467346,185.78092432785033,185.81144563102723,185.8419669342041,185.872488237381,185.90300954055786,185.93353084373473,185.96405214691163,185.9945734500885,186.02509475326536,186.05561605644226,186.08613735961913,186.11665866279603,186.1471799659729,186.17770126914976,186.20822257232666,186.23874387550353,186.26926517868043,186.2997864818573,186.33030778503417,186.36082908821106,186.39135039138793,186.42187169456483,186.4523929977417,186.48291430091857,186.51343560409546,186.54395690727233,186.57447821044923,186.6049995136261,186.63552081680297,186.66604211997986,186.69656342315673,186.7270847263336,186.7576060295105,186.78812733268737,186.81864863586426,186.84916993904113,186.879691242218,186.9102125453949,186.94073384857177,186.97125515174866,187.00177645492553,187.0322977581024,187.0628190612793,187.09334036445617,187.12386166763307,187.15438297080993,187.1849042739868,187.2154255771637,187.24594688034057,187.27646818351747,187.30698948669433,187.3375107898712,187.3680320930481,187.39855339622497,187.42907469940187,187.45959600257873,187.4901173057556,187.5206386089325,187.55115991210937,187.58168121528624,187.61220251846314,187.64272382164,187.6732451248169,187.70376642799377,187.73428773117064,187.76480903434754,187.7953303375244,187.8258516407013,187.85637294387817,187.88689424705504,187.91741555023194,187.9479368534088,187.9784581565857,188.00897945976257,188.03950076293944,188.07002206611634,188.1005433692932,188.1310646724701,188.16158597564697,188.19210727882384,188.22262858200074,188.2531498851776,188.28367118835448,188.31419249153137,188.34471379470824,188.37523509788514,188.405756401062,188.43627770423888,188.46679900741577,188.49732031059264,188.52784161376954,188.5583629169464,188.58888422012328,188.61940552330017,188.64992682647704,188.68044812965394,188.7109694328308,188.74149073600768,188.77201203918457,188.80253334236144,188.83305464553834,188.8635759487152,188.89409725189208,188.92461855506897,188.95513985824584,188.98566116142274,189.0161824645996,189.04670376777648,189.07722507095338,189.10774637413024,189.1382676773071,189.168788980484,189.19931028366088,189.22983158683778,189.26035289001464,189.2908741931915,189.3213954963684,189.35191679954528,189.38243810272218,189.41295940589904,189.4434807090759,189.4740020122528,189.50452331542968,189.53504461860658,189.56556592178345,189.5960872249603,189.6266085281372,189.65712983131408,189.68765113449098,189.71817243766785,189.74869374084471,189.7792150440216,189.80973634719848,189.84025765037535,189.87077895355225,189.90130025672912,189.931821559906,189.96234286308288,189.99286416625975,190.02338546943665,190.05390677261352,190.0844280757904,190.11494937896728,190.14547068214415,190.17599198532105,190.20651328849792,190.2370345916748,190.26755589485168,190.29807719802855,190.32859850120545,190.35911980438232,190.3896411075592,190.42016241073608,190.45068371391295,190.48120501708985,190.51172632026672,190.5422476234436,190.57276892662048,190.60329022979735,190.63381153297425,190.66433283615112,190.694854139328,190.72537544250488,190.75589674568175,190.78641804885865,190.81693935203552,190.8474606552124,190.87798195838928,190.90850326156615,190.93902456474305,190.96954586791992,191.0000671710968,191.03058847427369,191.06110977745055,191.09163108062745,191.12215238380432,191.1526736869812,191.18319499015809,191.21371629333495,191.24423759651185,191.27475889968872,191.3052802028656,191.3358015060425,191.36632280921935,191.39684411239622,191.42736541557312,191.45788671875,191.4884080219269,191.51892932510376,191.54945062828062,191.57997193145752,191.6104932346344,191.6410145378113,191.67153584098816,191.70205714416502,191.73257844734192,191.7630997505188,191.7936210536957,191.82414235687256,191.85466366004943,191.88518496322632,191.9157062664032,191.9462275695801,191.97674887275696,192.00727017593383,192.03779147911072,192.0683127822876,192.09883408546446,192.12935538864136,192.15987669181823,192.19039799499512,192.220919298172,192.25144060134886,192.28196190452576,192.31248320770263,192.34300451087952,192.3735258140564,192.40404711723326,192.43456842041016,192.46508972358703,192.49561102676392,192.5261323299408,192.55665363311766,192.58717493629456,192.61769623947143,192.64821754264833,192.6787388458252,192.70926014900206,192.73978145217896,192.77030275535583,192.8008240585327,192.8313453617096,192.86186666488646,192.89238796806336,192.92290927124023,192.9534305744171,192.983951877594,193.01447318077086,193.04499448394776,193.07551578712463,193.1060370903015,193.1365583934784,193.16707969665526,193.19760099983216,193.22812230300903,193.2586436061859,193.2891649093628,193.31968621253966,193.35020751571656,193.38072881889343,193.4112501220703,193.4417714252472,193.47229272842407,193.50281403160096,193.53333533477783,193.5638566379547,193.5943779411316,193.62489924430847,193.65542054748533,193.68594185066223,193.7164631538391,193.746984457016,193.77750576019287,193.80802706336974,193.83854836654663,193.8690696697235,193.8995909729004,193.93011227607727,193.96063357925414,193.99115488243103,194.0216761856079,194.0521974887848,194.08271879196167,194.11324009513854,194.14376139831543,194.1742827014923,194.2048040046692,194.23532530784607,194.26584661102294,194.29636791419983,194.3268892173767,194.35741052055357,194.38793182373047,194.41845312690734,194.44897443008423,194.4794957332611,194.51001703643797,194.54053833961487,194.57105964279174,194.60158094596864,194.6321022491455,194.66262355232237,194.69314485549927,194.72366615867614,194.75418746185304,194.7847087650299,194.81523006820677,194.84575137138367,194.87627267456054,194.90679397773744,194.9373152809143,194.96783658409117,194.99835788726807,195.02887919044494,195.05940049362184,195.0899217967987,195.12044309997557,195.15096440315247,195.18148570632934,195.2120070095062,195.2425283126831,195.27304961585997,195.30357091903687,195.33409222221374,195.3646135253906,195.3951348285675,195.42565613174438,195.45617743492127,195.48669873809814,195.517220041275,195.5477413444519,195.57826264762878,195.60878395080567,195.63930525398254,195.6698265571594,195.7003478603363,195.73086916351318,195.76139046669007,195.79191176986694,195.8224330730438,195.8529543762207,195.88347567939758,195.91399698257445,195.94451828575134,195.9750395889282,196.0055608921051,196.03608219528198,196.06660349845885,196.09712480163574,196.1276461048126,196.1581674079895,196.18868871116638,196.21921001434325,196.24973131752014,196.280252620697,196.3107739238739,196.34129522705078,196.37181653022765,196.40233783340454,196.4328591365814,196.4633804397583,196.49390174293518,196.52442304611205,196.55494434928895,196.5854656524658,196.61598695564268,196.64650825881958,196.67702956199645,196.70755086517335,196.73807216835021,196.76859347152708,196.79911477470398,196.82963607788085,196.86015738105775,196.89067868423462,196.92119998741148,196.95172129058838,196.98224259376525,197.01276389694215,197.04328520011902,197.07380650329588,197.10432780647278,197.13484910964965,197.16537041282655,197.19589171600342,197.22641301918028,197.25693432235718,197.28745562553405,197.31797692871095,197.34849823188782,197.37901953506469,197.40954083824158,197.44006214141845,197.47058344459532,197.50110474777222,197.5316260509491,197.56214735412598,197.59266865730285,197.62318996047972,197.65371126365662,197.6842325668335,197.71475387001038,197.74527517318725,197.77579647636412,197.80631777954102,197.8368390827179,197.86736038589478,197.89788168907165,197.92840299224852,197.95892429542542,197.9894455986023,198.01996690177918,198.05048820495605,198.08100950813292,198.11153081130982,198.1420521144867,198.17257341766356,198.20309472084045,198.23361602401732,198.26413732719422,198.2946586303711,198.32517993354796,198.35570123672485,198.38622253990172,198.41674384307862,198.4472651462555,198.47778644943236,198.50830775260926,198.53882905578612,198.56935035896302,198.5998716621399,198.63039296531676,198.66091426849366,198.69143557167052,198.72195687484742,198.7524781780243,198.78299948120116,198.81352078437806,198.84404208755493,198.8745633907318,198.9050846939087,198.93560599708556,198.96612730026246,198.99664860343933,199.0271699066162,199.0576912097931,199.08821251296996,199.11873381614686,199.14925511932373,199.1797764225006,199.2102977256775,199.24081902885436,199.27134033203126,199.30186163520813,199.332382938385,199.3629042415619,199.39342554473876,199.42394684791566,199.45446815109253,199.4849894542694,199.5155107574463,199.54603206062316,199.57655336380006,199.60707466697693,199.6375959701538,199.6681172733307,199.69863857650756,199.72915987968443,199.75968118286133,199.7902024860382,199.8207237892151,199.85124509239196,199.88176639556883,199.91228769874573,199.9428090019226,199.9733303050995,200.00385160827636,200.03437291145323,200.06489421463013,200.095415517807,200.1259368209839,200.15645812416076,200.18697942733763,200.21750073051453,200.2480220336914,200.2785433368683,200.30906464004516,200.33958594322203,200.37010724639893,200.4006285495758,200.43114985275267,200.46167115592957,200.49219245910643,200.52271376228333,200.5532350654602,200.58375636863707,200.61427767181397,200.64479897499083,200.67532027816773,200.7058415813446,200.73636288452147,200.76688418769837,200.79740549087524,200.82792679405213,200.858448097229,200.88896940040587,200.91949070358277,200.95001200675964,200.98053330993653,201.0110546131134,201.04157591629027,201.07209721946717,201.10261852264404,201.13313982582093,201.1636611289978,201.19418243217467,201.22470373535157,201.25522503852844,201.2857463417053,201.3162676448822,201.34678894805907,201.37731025123597,201.40783155441284,201.4383528575897,201.4688741607666,201.49939546394347,201.52991676712037,201.56043807029724,201.5909593734741,201.621480676651,201.65200197982787,201.68252328300477,201.71304458618164,201.7435658893585,201.7740871925354,201.80460849571227,201.83512979888917,201.86565110206604,201.8961724052429,201.9266937084198,201.95721501159667,201.98773631477354,202.01825761795044,202.0487789211273,202.0793002243042,202.10982152748107,202.14034283065794,202.17086413383484,202.2013854370117,202.2319067401886,202.26242804336547,202.29294934654234,202.32347064971924,202.3539919528961,202.384513256073,202.41503455924988,202.44555586242674,202.47607716560364,202.5065984687805,202.5371197719574,202.56764107513428,202.59816237831114,202.62868368148804,202.6592049846649,202.68972628784178,202.72024759101868,202.75076889419555,202.78129019737244,202.8118115005493,202.84233280372618,202.87285410690308,202.90337541007995,202.93389671325684,202.9644180164337,202.99493931961058,203.02546062278748,203.05598192596435,203.08650322914124,203.1170245323181,203.14754583549498,203.17806713867188,203.20858844184875,203.23910974502564,203.2696310482025,203.30015235137938,203.33067365455628,203.36119495773315,203.39171626091004,203.4222375640869,203.45275886726378,203.48328017044068,203.51380147361755,203.54432277679442,203.5748440799713,203.60536538314818,203.63588668632508,203.66640798950195,203.69692929267882,203.72745059585571,203.75797189903258,203.78849320220948,203.81901450538635,203.84953580856322,203.88005711174011,203.91057841491698,203.94109971809388,203.97162102127075,204.00214232444762,204.03266362762452,204.06318493080138,204.09370623397828,204.12422753715515,204.15474884033202,204.18527014350892,204.21579144668578,204.24631274986265,204.27683405303955,204.30735535621642,204.33787665939332,204.36839796257019,204.39891926574705,204.42944056892395,204.45996187210082,204.49048317527772,204.52100447845459,204.55152578163145,204.58204708480835,204.61256838798522,204.64308969116212,204.673610994339,204.70413229751586,204.73465360069275,204.76517490386962,204.79569620704652,204.8262175102234,204.85673881340026,204.88726011657715,204.91778141975402,204.9483027229309,204.9788240261078,205.00934532928466,205.03986663246155,205.07038793563842,205.1009092388153,205.1314305419922,205.16195184516906,205.19247314834595,205.22299445152282,205.2535157546997,205.2840370578766,205.31455836105346,205.34507966423035,205.37560096740722,205.4061222705841,205.436643573761,205.46716487693786,205.49768618011475,205.52820748329162,205.5587287864685,205.5892500896454,205.61977139282226,205.65029269599916,205.68081399917602,205.7113353023529,205.7418566055298,205.77237790870666,205.80289921188353,205.83342051506042,205.8639418182373,205.8944631214142,205.92498442459106,205.95550572776793,205.98602703094483,206.0165483341217,206.0470696372986,206.07759094047546,206.10811224365233,206.13863354682923,206.1691548500061,206.199676153183,206.23019745635986,206.26071875953673,206.29124006271363,206.3217613658905,206.3522826690674,206.38280397224426,206.41332527542113,206.44384657859803,206.4743678817749,206.50488918495176,206.53541048812866,206.56593179130553,206.59645309448243,206.6269743976593,206.65749570083617,206.68801700401306,206.71853830718993,206.74905961036683,206.7795809135437,206.81010221672057,206.84062351989746,206.87114482307433,206.90166612625123,206.9321874294281,206.96270873260497,206.99323003578186,207.02375133895873,207.05427264213563,207.0847939453125,207.11531524848937,207.14583655166626,207.17635785484313,207.20687915802003,207.2374004611969,207.26792176437377,207.29844306755066,207.32896437072753,207.3594856739044,207.3900069770813,207.42052828025817,207.45104958343506,207.48157088661193,207.5120921897888,207.5426134929657,207.57313479614257,207.60365609931947,207.63417740249633,207.6646987056732,207.6952200088501,207.72574131202697,207.75626261520387,207.78678391838073,207.8173052215576,207.8478265247345,207.87834782791137,207.90886913108827,207.93939043426514,207.969911737442,208.0004330406189,208.03095434379577,208.06147564697264,208.09199695014954,208.1225182533264,208.1530395565033,208.18356085968017,208.21408216285704,208.24460346603394,208.2751247692108,208.3056460723877,208.33616737556457,208.36668867874144,208.39720998191834,208.4277312850952,208.4582525882721,208.48877389144897,208.51929519462584,208.54981649780274,208.5803378009796,208.6108591041565,208.64138040733337,208.67190171051024,208.70242301368714,208.732944316864,208.76346562004088,208.79398692321777,208.82450822639464,208.85502952957154,208.8855508327484,208.91607213592528,208.94659343910217,208.97711474227904,209.00763604545594,209.0381573486328,209.06867865180968,209.09919995498657,209.12972125816344,209.16024256134034,209.1907638645172,209.22128516769408,209.25180647087097,209.28232777404784,209.31284907722474,209.3433703804016,209.37389168357848,209.40441298675537,209.43493428993224,209.46545559310914,209.495976896286,209.52649819946288,209.55701950263978,209.58754080581664,209.6180621089935,209.6485834121704,209.67910471534728,209.70962601852418,209.74014732170104,209.7706686248779,209.8011899280548,209.83171123123168,209.86223253440858,209.89275383758545,209.9232751407623,209.9537964439392,209.98431774711608,210.01483905029298,210.04536035346985,210.07588165664671,210.1064029598236,210.13692426300048,210.16744556617738,210.19796686935425,210.22848817253112,210.259009475708,210.28953077888488,210.32005208206175,210.35057338523865,210.38109468841552,210.4116159915924,210.44213729476928,210.47265859794615,210.50317990112305,210.53370120429992,210.5642225074768,210.59474381065368,210.62526511383055,210.65578641700745,210.68630772018432,210.7168290233612,210.74735032653808,210.77787162971495,210.80839293289185,210.83891423606872,210.86943553924561,210.89995684242248,210.93047814559935,210.96099944877625,210.99152075195312,211.02204205513002,211.05256335830688,211.08308466148375,211.11360596466065,211.14412726783752,211.1746485710144,211.20516987419128,211.23569117736815,211.26621248054505,211.29673378372192,211.3272550868988,211.35777639007568,211.38829769325255,211.41881899642945,211.44934029960632,211.4798616027832,211.51038290596009,211.54090420913695,211.57142551231385,211.60194681549072,211.6324681186676,211.6629894218445,211.69351072502135,211.72403202819825,211.75455333137512,211.785074634552,211.8155959377289,211.84611724090576,211.87663854408262,211.90715984725952,211.9376811504364,211.9682024536133,211.99872375679016,212.02924505996702,212.05976636314392,212.0902876663208,212.1208089694977,212.15133027267456,212.18185157585143,212.21237287902832,212.2428941822052,212.2734154853821,212.30393678855896,212.33445809173583,212.36497939491272,212.3955006980896,212.4260220012665,212.45654330444336,212.48706460762023,212.51758591079712,212.548107213974,212.57862851715086,212.60914982032776,212.63967112350463,212.67019242668152,212.7007137298584,212.73123503303526,212.76175633621216,212.79227763938903,212.82279894256592,212.8533202457428,212.88384154891966,212.91436285209656,212.94488415527343,212.97540545845033,213.0059267616272,213.03644806480406,213.06696936798096,213.09749067115783,213.12801197433473,213.1585332775116,213.18905458068846,213.21957588386536,213.25009718704223,213.28061849021913,213.311139793396,213.34166109657286,213.37218239974976,213.40270370292663,213.4332250061035,213.4637463092804,213.49426761245726,213.52478891563416,213.55531021881103,213.5858315219879,213.6163528251648,213.64687412834166,213.67739543151856,213.70791673469543,213.7384380378723,213.7689593410492,213.79948064422607,213.83000194740296,213.86052325057983,213.8910445537567,213.9215658569336,213.95208716011047,213.98260846328736,214.01312976646423,214.0436510696411,214.074172372818,214.10469367599487,214.13521497917174,214.16573628234863,214.1962575855255,214.2267788887024,214.25730019187927,214.28782149505614,214.31834279823303,214.3488641014099,214.3793854045868,214.40990670776367,214.44042801094054,214.47094931411743,214.5014706172943,214.5319919204712,214.56251322364807,214.59303452682494,214.62355583000183,214.6540771331787,214.6845984363556,214.71511973953247,214.74564104270934,214.77616234588623,214.8066836490631,214.83720495223997,214.86772625541687,214.89824755859374,214.92876886177064,214.9592901649475,214.98981146812437,215.02033277130127,215.05085407447814,215.08137537765504,215.1118966808319,215.14241798400877,215.17293928718567,215.20346059036254,215.23398189353944,215.2645031967163,215.29502449989317,215.32554580307007,215.35606710624694,215.38658840942384,215.4171097126007,215.44763101577757,215.47815231895447,215.50867362213134,215.53919492530824,215.5697162284851,215.60023753166197,215.63075883483887,215.66128013801574,215.6918014411926,215.7223227443695,215.75284404754638,215.78336535072327,215.81388665390014,215.844407957077,215.8749292602539,215.90545056343078,215.93597186660767,215.96649316978454,215.9970144729614,216.0275357761383,216.05805707931518,216.08857838249207,216.11909968566894,216.1496209888458,216.1801422920227,216.21066359519958,216.24118489837647,216.27170620155334,216.3022275047302,216.3327488079071,216.36327011108398,216.39379141426085,216.42431271743774,216.4548340206146,216.4853553237915,216.51587662696838,216.54639793014525,216.57691923332214,216.607440536499,216.6379618396759,216.66848314285278,216.69900444602965,216.72952574920654,216.7600470523834,216.7905683555603,216.82108965873718,216.85161096191405,216.88213226509095,216.9126535682678,216.9431748714447,216.97369617462158,217.00421747779845,217.03473878097535,217.06526008415221,217.0957813873291,217.12630269050598,217.15682399368285,217.18734529685975,217.21786660003661,217.24838790321348,217.27890920639038,217.30943050956725,217.33995181274415,217.37047311592102,217.40099441909788,217.43151572227478,217.46203702545165,217.49255832862855,217.52307963180542,217.55360093498228,217.58412223815918,217.61464354133605,217.64516484451295,217.67568614768982,217.70620745086669,217.73672875404358,217.76725005722045,217.79777136039735,217.82829266357422,217.8588139667511,217.88933526992798,217.91985657310485,217.95037787628172,217.98089917945862,218.0114204826355,218.04194178581238,218.07246308898925,218.10298439216612,218.13350569534302,218.1640269985199,218.19454830169678,218.22506960487365,218.25559090805052,218.28611221122742,218.3166335144043,218.34715481758118,218.37767612075805,218.40819742393492,218.43871872711182,218.4692400302887,218.49976133346559,218.53028263664245,218.56080393981932,218.59132524299622,218.6218465461731,218.65236784934996,218.68288915252685,218.71341045570372,218.74393175888062,218.7744530620575,218.80497436523436,218.83549566841126,218.86601697158812,218.89653827476502,218.9270595779419,218.95758088111876,218.98810218429566,219.01862348747252,219.04914479064942,219.0796660938263,219.11018739700316,219.14070870018006,219.17123000335692,219.20175130653382,219.2322726097107,219.26279391288756,219.29331521606446,219.32383651924133,219.35435782241822,219.3848791255951,219.41540042877196,219.44592173194886,219.47644303512573,219.5069643383026,219.5374856414795,219.56800694465636,219.59852824783326,219.62904955101013,219.659570854187,219.6900921573639,219.72061346054076,219.75113476371766,219.78165606689453,219.8121773700714,219.8426986732483,219.87321997642516,219.90374127960206,219.93426258277893,219.9647838859558,219.9953051891327,220.02582649230956,220.05634779548646,220.08686909866333,220.1173904018402,220.1479117050171,220.17843300819396,220.20895431137083,220.23947561454773,220.2699969177246,220.3005182209015,220.33103952407836,220.36156082725523,220.39208213043213,220.422603433609,220.4531247367859,220.48364603996276,220.51416734313963,220.54468864631653,220.5752099494934,220.6057312526703,220.63625255584716,220.66677385902403,220.69729516220093,220.7278164653778,220.7583377685547,220.78885907173157,220.81938037490843,220.84990167808533,220.8804229812622,220.91094428443907,220.94146558761597,220.97198689079283,221.00250819396973,221.0330294971466,221.06355080032347,221.09407210350037,221.12459340667723,221.15511470985413,221.185636013031,221.21615731620787,221.24667861938477,221.27719992256164,221.30772122573853,221.3382425289154,221.36876383209227,221.39928513526917,221.42980643844604,221.46032774162293,221.4908490447998,221.52137034797667,221.55189165115357,221.58241295433044,221.61293425750733,221.6434555606842,221.67397686386107,221.70449816703797,221.73501947021484,221.7655407733917,221.7960620765686,221.82658337974547,221.85710468292237,221.88762598609924,221.9181472892761,221.948668592453,221.97918989562987,222.00971119880677,222.04023250198364,222.0707538051605,222.1012751083374,222.13179641151427,222.16231771469117,222.19283901786804,222.2233603210449,222.2538816242218,222.28440292739867,222.31492423057557,222.34544553375244,222.3759668369293,222.4064881401062,222.43700944328307,222.46753074645994,222.49805204963684,222.5285733528137,222.5590946559906,222.58961595916747,222.62013726234434,222.65065856552124,222.6811798686981,222.711701171875,222.74222247505188,222.77274377822874,222.80326508140564,222.8337863845825,222.8643076877594,222.89482899093628,222.92535029411314,222.95587159729004,222.9863929004669,223.0169142036438,223.04743550682068,223.07795680999754,223.10847811317444,223.1389994163513,223.1695207195282,223.20004202270508,223.23056332588195,223.26108462905884,223.2916059322357,223.32212723541258,223.35264853858948,223.38316984176635,223.41369114494324,223.4442124481201,223.47473375129698,223.50525505447388,223.53577635765075,223.56629766082764,223.5968189640045,223.62734026718138,223.65786157035828,223.68838287353515,223.71890417671204,223.7494254798889,223.77994678306578,223.81046808624268,223.84098938941955,223.87151069259644,223.9020319957733,223.93255329895018,223.96307460212708,223.99359590530395,224.02411720848082,224.0546385116577,224.08515981483458,224.11568111801148,224.14620242118835,224.17672372436522,224.20724502754211,224.23776633071898,224.26828763389588,224.29880893707275,224.32933024024962,224.35985154342652,224.39037284660338,224.42089414978028,224.45141545295715,224.48193675613402,224.51245805931092,224.54297936248778,224.57350066566468,224.60402196884155,224.63454327201842,224.66506457519532,224.69558587837219,224.72610718154905,224.75662848472595,224.78714978790282,224.81767109107972,224.84819239425659,224.87871369743345,224.90923500061035,224.93975630378722,224.97027760696412,225.000798910141,225.03132021331785,225.06184151649475,225.09236281967162,225.12288412284852,225.1534054260254,225.18392672920226,225.21444803237915,225.24496933555602,225.27549063873292,225.3060119419098,225.33653324508666,225.36705454826355,225.39757585144042,225.42809715461732,225.4586184577942,225.48913976097106,225.51966106414795,225.55018236732482,225.5807036705017,225.6112249736786,225.64174627685546,225.67226758003235,225.70278888320922,225.7333101863861,225.763831489563,225.79435279273986,225.82487409591675,225.85539539909362,225.8859167022705,225.9164380054474,225.94695930862426,225.97748061180116,226.00800191497802,226.0385232181549,226.0690445213318,226.09956582450866,226.13008712768556,226.16060843086242,226.1911297340393,226.2216510372162,226.25217234039306,226.28269364356993,226.31321494674683,226.3437362499237,226.3742575531006,226.40477885627746,226.43530015945433,226.46582146263123,226.4963427658081,226.526864068985,226.55738537216186,226.58790667533873,226.61842797851563,226.6489492816925,226.6794705848694,226.70999188804626,226.74051319122313,226.77103449440003,226.8015557975769,226.8320771007538,226.86259840393066,226.89311970710753,226.92364101028443,226.9541623134613,226.9846836166382,227.01520491981506,227.04572622299193,227.07624752616883,227.1067688293457,227.13729013252257,227.16781143569946,227.19833273887633,227.22885404205323,227.2593753452301,227.28989664840697,227.32041795158386,227.35093925476073,227.38146055793763,227.4119818611145,227.44250316429137,227.47302446746826,227.50354577064513,227.53406707382203,227.5645883769989,227.59510968017577,227.62563098335266,227.65615228652953,227.68667358970643,227.7171948928833,227.74771619606017,227.77823749923706,227.80875880241393,227.8392801055908,227.8698014087677,227.90032271194457,227.93084401512147,227.96136531829833,227.9918866214752,228.0224079246521,228.05292922782897,228.08345053100587,228.11397183418273,228.1444931373596,228.1750144405365,228.20553574371337,228.23605704689027,228.26657835006714,228.297099653244,228.3276209564209,228.35814225959777,228.38866356277467,228.41918486595154,228.4497061691284,228.4802274723053,228.51074877548217,228.54127007865904,228.57179138183594,228.6023126850128,228.6328339881897,228.66335529136657,228.69387659454344,228.72439789772034,228.7549192008972,228.7854405040741,228.81596180725097,228.84648311042784,228.87700441360474,228.9075257167816,228.9380470199585,228.96856832313537,228.99908962631224,229.02961092948914,229.060132232666,229.0906535358429,229.12117483901977,229.15169614219664,229.18221744537354,229.2127387485504,229.2432600517273,229.27378135490417,229.30430265808104,229.33482396125794,229.3653452644348,229.39586656761168,229.42638787078857,229.45690917396544,229.48743047714234,229.5179517803192,229.54847308349608,229.57899438667297,229.60951568984984,229.64003699302674,229.6705582962036,229.70107959938048,229.73160090255737,229.76212220573424,229.79264350891114,229.823164812088,229.85368611526488,229.88420741844178,229.91472872161864,229.94525002479554,229.9757713279724,230.00629263114928,230.03681393432618,230.06733523750304,230.0978565406799,230.1283778438568,230.15889914703368,230.18942045021058,230.21994175338745,230.2504630565643,230.2809843597412,230.31150566291808,230.34202696609498,230.37254826927185,230.40306957244871,230.4335908756256,230.46411217880248,230.49463348197938,230.52515478515625,230.55567608833312,230.58619739151,230.61671869468688,230.64723999786378,230.67776130104065,230.70828260421752,230.7388039073944,230.76932521057128,230.79984651374815,230.83036781692505,230.86088912010192,230.8914104232788,230.92193172645568,230.95245302963255,230.98297433280945,231.01349563598632,231.0440169391632,231.07453824234008,231.10505954551695,231.13558084869385,231.16610215187072,231.19662345504761,231.22714475822448,231.25766606140135,231.28818736457825,231.31870866775512,231.34922997093202,231.37975127410888,231.41027257728575,231.44079388046265,231.47131518363952,231.50183648681642,231.53235778999328,231.56287909317015,231.59340039634705,231.62392169952392,231.6544430027008,231.68496430587768,231.71548560905455,231.74600691223145,231.77652821540832,231.8070495185852,231.83757082176209,231.86809212493895,231.89861342811585,231.92913473129272,231.9596560344696,231.9901773376465,232.02069864082335,232.05121994400025,232.08174124717712,232.112262550354,232.1427838535309,232.17330515670776,232.20382645988465,232.23434776306152,232.2648690662384,232.2953903694153,232.32591167259216,232.35643297576902,232.38695427894592,232.4174755821228,232.4479968852997,232.47851818847656,232.50903949165343,232.53956079483032,232.5700820980072,232.6006034011841,232.63112470436096,232.66164600753783,232.69216731071472,232.7226886138916,232.7532099170685,232.78373122024536,232.81425252342223,232.84477382659912,232.875295129776,232.9058164329529,232.93633773612976,232.96685903930663,232.99738034248352,233.0279016456604,233.0584229488373,233.08894425201416,233.11946555519103,233.14998685836792,233.1805081615448,233.21102946472166,233.24155076789856,233.27207207107543,233.30259337425233,233.3331146774292,233.36363598060606,233.39415728378296,233.42467858695983,233.45519989013673,233.4857211933136,233.51624249649046,233.54676379966736,233.57728510284423,233.60780640602113,233.638327709198,233.66884901237486,233.69937031555176,233.72989161872863,233.76041292190553,233.7909342250824,233.82145552825926,233.85197683143616,233.88249813461303,233.9130194377899,233.9435407409668,233.97406204414366,234.00458334732056,234.03510465049743,234.0656259536743,234.0961472568512,234.12666856002807,234.15718986320496,234.18771116638183,234.2182324695587,234.2487537727356,234.27927507591247,234.30979637908936,234.34031768226623,234.3708389854431,234.40136028862,234.43188159179687,234.46240289497376,234.49292419815063,234.5234455013275,234.5539668045044,234.58448810768127,234.61500941085814,234.64553071403503,234.6760520172119,234.7065733203888,234.73709462356567,234.76761592674254,234.79813722991943,234.8286585330963,234.8591798362732,234.88970113945007,234.92022244262694,234.95074374580383,234.9812650489807,235.0117863521576,235.04230765533447,235.07282895851134,235.10335026168823,235.1338715648651,235.164392868042,235.19491417121887,235.22543547439574,235.25595677757264,235.2864780807495,235.3169993839264,235.34752068710327,235.37804199028014,235.40856329345704,235.4390845966339,235.46960589981077,235.50012720298767,235.53064850616454,235.56116980934144,235.5916911125183,235.62221241569517,235.65273371887207,235.68325502204894,235.71377632522584,235.7442976284027,235.77481893157957,235.80534023475647,235.83586153793334,235.86638284111024,235.8969041442871,235.92742544746397,235.95794675064087,235.98846805381774,236.01898935699464,236.0495106601715,236.08003196334838,236.11055326652527,236.14107456970214,236.171595872879,236.2021171760559,236.23263847923278,236.26315978240967,236.29368108558654,236.3242023887634,236.3547236919403,236.38524499511718,236.41576629829407,236.44628760147094,236.4768089046478,236.5073302078247,236.53785151100158,236.56837281417847,236.59889411735534,236.6294154205322,236.6599367237091,236.69045802688598,236.72097933006287,236.75150063323974,236.7820219364166,236.8125432395935,236.84306454277038,236.87358584594725,236.90410714912414,236.934628452301,236.9651497554779,236.99567105865478,237.02619236183165,237.05671366500854,237.0872349681854,237.1177562713623,237.14827757453918,237.17879887771605,237.20932018089295,237.2398414840698,237.2703627872467,237.30088409042358,237.33140539360045,237.36192669677735,237.39244799995421,237.4229693031311,237.45349060630798,237.48401190948485,237.51453321266175,237.54505451583861,237.5755758190155,237.60609712219238,237.63661842536925,237.66713972854615,237.69766103172302,237.72818233489988,237.75870363807678,237.78922494125365,237.81974624443055,237.85026754760742,237.88078885078428,237.91131015396118,237.94183145713805,237.97235276031495,238.00287406349182,238.03339536666869,238.06391666984558,238.09443797302245,238.12495927619935,238.15548057937622,238.1860018825531,238.21652318572998,238.24704448890685,238.27756579208375,238.30808709526062,238.3386083984375,238.36912970161438,238.39965100479125,238.43017230796812,238.46069361114502,238.4912149143219,238.52173621749878,238.55225752067565,238.58277882385252,238.61330012702942,238.6438214302063,238.67434273338318,238.70486403656005,238.73538533973692,238.76590664291382,238.7964279460907,238.82694924926759,238.85747055244445,238.88799185562132,238.91851315879822,238.9490344619751,238.97955576515199,239.01007706832885,239.04059837150572,239.07111967468262,239.1016409778595,239.1321622810364,239.16268358421326,239.19320488739012,239.22372619056702,239.2542474937439,239.28476879692076,239.31529010009766,239.34581140327452,239.37633270645142,239.4068540096283,239.43737531280516,239.46789661598206,239.49841791915892,239.52893922233582,239.5594605255127,239.58998182868956,239.62050313186646,239.65102443504333,239.68154573822022,239.7120670413971,239.74258834457396,239.77310964775086,239.80363095092773,239.83415225410462,239.8646735572815,239.89519486045836,239.92571616363526,239.95623746681213,239.986758769989,240.0172800731659,240.04780137634276,240.07832267951966,240.10884398269653,240.1393652858734,240.1698865890503,240.20040789222716,240.23092919540406,240.26145049858093,240.2919718017578,240.3224931049347,240.35301440811156,240.38353571128846,240.41405701446533,240.4445783176422,240.4750996208191,240.50562092399596,240.53614222717286,240.56666353034973,240.5971848335266,240.6277061367035,240.65822743988036,240.68874874305723,240.71927004623413,240.749791349411,240.7803126525879,240.81083395576476,240.84135525894163,240.87187656211853,240.9023978652954,240.9329191684723,240.96344047164916,240.99396177482603,241.02448307800293,241.0550043811798,241.0855256843567,241.11604698753357,241.14656829071043,241.17708959388733,241.2076108970642,241.2381322002411,241.26865350341797,241.29917480659483,241.32969610977173,241.3602174129486,241.3907387161255,241.42126001930237,241.45178132247923,241.48230262565613,241.512823928833,241.54334523200987,241.57386653518677,241.60438783836364,241.63490914154053,241.6654304447174,241.69595174789427,241.72647305107117,241.75699435424804,241.78751565742493,241.8180369606018,241.84855826377867,241.87907956695557,241.90960087013244,241.94012217330933,241.9706434764862,242.00116477966307,242.03168608283997,242.06220738601684,242.09272868919373,242.1232499923706,242.15377129554747,242.18429259872437,242.21481390190124,242.2453352050781,242.275856508255,242.30637781143187,242.33689911460877,242.36742041778564,242.3979417209625,242.4284630241394,242.45898432731627,242.48950563049317,242.52002693367004,242.5505482368469,242.5810695400238,242.61159084320067,242.64211214637757,242.67263344955444,242.7031547527313,242.7336760559082,242.76419735908507,242.79471866226197,242.82523996543884,242.8557612686157,242.8862825717926,242.91680387496947,242.94732517814634,242.97784648132324,243.0083677845001,243.038889087677,243.06941039085388,243.09993169403074,243.13045299720764,243.1609743003845,243.1914956035614,243.22201690673828,243.25253820991514,243.28305951309204,243.3135808162689,243.3441021194458,243.37462342262268,243.40514472579954,243.43566602897644,243.4661873321533,243.4967086353302,243.52722993850708,243.55775124168395,243.58827254486084,243.6187938480377,243.6493151512146,243.67983645439148,243.71035775756835,243.74087906074524,243.7714003639221,243.80192166709898,243.83244297027588,243.86296427345275,243.89348557662964,243.9240068798065,243.95452818298338,243.98504948616028,244.01557078933715,244.04609209251404,244.0766133956909,244.10713469886778,244.13765600204468,244.16817730522155,244.19869860839844,244.2292199115753,244.25974121475218,244.29026251792908,244.32078382110595,244.35130512428285,244.3818264274597,244.41234773063658,244.44286903381348,244.47339033699035,244.50391164016722,244.53443294334411,244.56495424652098,244.59547554969788,244.62599685287475,244.65651815605162,244.68703945922852,244.71756076240538,244.74808206558228,244.77860336875915,244.80912467193602,244.83964597511292,244.87016727828978,244.90068858146668,244.93120988464355,244.96173118782042,244.99225249099732,245.02277379417419,245.05329509735108,245.08381640052795,245.11433770370482,245.14485900688172,245.17538031005859,245.20590161323548,245.23642291641235,245.26694421958922,245.29746552276612,245.327986825943,245.35850812911985,245.38902943229675,245.41955073547362,245.45007203865052,245.4805933418274,245.51111464500426,245.54163594818115,245.57215725135802,245.60267855453492,245.6331998577118,245.66372116088866,245.69424246406555,245.72476376724242,245.75528507041932,245.7858063735962,245.81632767677306,245.84684897994995,245.87737028312682,245.90789158630372,245.9384128894806,245.96893419265746,245.99945549583435,246.02997679901122,246.0604981021881,246.091019405365,246.12154070854186,246.15206201171875,246.18258331489562,246.2131046180725,246.2436259212494,246.27414722442626,246.30466852760316,246.33518983078002,246.3657111339569,246.3962324371338,246.42675374031066,246.45727504348756,246.48779634666442,246.5183176498413,246.5488389530182,246.57936025619506,246.60988155937196,246.64040286254883,246.6709241657257,246.7014454689026,246.73196677207946,246.76248807525633,246.79300937843323,246.8235306816101,246.854051984787,246.88457328796386,246.91509459114073,246.94561589431763,246.9761371974945,247.0066585006714,247.03717980384826,247.06770110702513,247.09822241020203,247.1287437133789,247.1592650165558,247.18978631973266,247.22030762290953,247.25082892608643,247.2813502292633,247.3118715324402,247.34239283561706,247.37291413879393,247.40343544197083,247.4339567451477,247.4644780483246,247.49499935150146,247.52552065467833,247.55604195785523,247.5865632610321,247.61708456420897,247.64760586738586,247.67812717056273,247.70864847373963,247.7391697769165,247.76969108009337,247.80021238327026,247.83073368644713,247.86125498962403,247.8917762928009,247.92229759597777,247.95281889915466,247.98334020233153,248.01386150550843,248.0443828086853,248.07490411186217,248.10542541503906,248.13594671821593,248.16646802139283,248.1969893245697,248.22751062774657,248.25803193092347,248.28855323410033,248.3190745372772,248.3495958404541,248.38011714363097,248.41063844680787,248.44115974998473,248.4716810531616,248.5022023563385,248.53272365951537,248.56324496269227,248.59376626586914,248.624287569046,248.6548088722229,248.68533017539977,248.71585147857667,248.74637278175354,248.7768940849304,248.8074153881073,248.83793669128417,248.86845799446107,248.89897929763794,248.9295006008148,248.9600219039917,248.99054320716857,249.02106451034547,249.05158581352234,249.0821071166992,249.1126284198761,249.14314972305297,249.17367102622984,249.20419232940674,249.2347136325836,249.2652349357605,249.29575623893737,249.32627754211424,249.35679884529114,249.387320148468,249.4178414516449,249.44836275482177,249.47888405799864,249.50940536117554,249.5399266643524,249.5704479675293,249.60096927070617,249.63149057388304,249.66201187705994,249.6925331802368,249.7230544834137,249.75357578659057,249.78409708976744,249.81461839294434,249.8451396961212,249.87566099929808,249.90618230247497,249.93670360565184,249.96722490882874,249.9977462120056,250.02826751518248,250.05878881835937,250.08931012153624,250.11983142471314,250.15035272789,250.18087403106688,250.21139533424378,250.24191663742064,250.27243794059754,250.3029592437744,250.33348054695128,250.36400185012818,250.39452315330504,250.42504445648194,250.4555657596588,250.48608706283568,250.51660836601258,250.54712966918945,250.5776509723663,250.6081722755432,250.63869357872008,250.66921488189698,250.69973618507385,250.73025748825071,250.7607787914276,250.79130009460448,250.82182139778138,250.85234270095825,250.88286400413512,250.913385307312,250.94390661048888,250.97442791366578,251.00494921684265,251.03547052001952,251.0659918231964,251.09651312637328,251.12703442955018,251.15755573272705,251.18807703590392,251.2185983390808,251.24911964225768,251.27964094543458,251.31016224861145,251.34068355178832,251.3712048549652,251.40172615814208,251.43224746131895,251.46276876449585,251.49329006767272,251.52381137084961,251.55433267402648,251.58485397720335,251.61537528038025,251.64589658355712,251.67641788673401,251.70693918991088,251.73746049308775,251.76798179626465,251.79850309944152,251.82902440261842,251.85954570579528,251.89006700897215,251.92058831214905,251.95110961532592,251.98163091850282,252.01215222167968,252.04267352485655,252.07319482803345,252.10371613121032,252.1342374343872,252.16475873756409,252.19528004074095,252.22580134391785,252.25632264709472,252.2868439502716,252.3173652534485,252.34788655662535,252.37840785980225,252.40892916297912,252.439450466156,252.4699717693329,252.50049307250976,252.53101437568665,252.56153567886352,252.5920569820404,252.6225782852173,252.65309958839416,252.68362089157105,252.71414219474792,252.7446634979248,252.7751848011017,252.80570610427856,252.83622740745543,252.86674871063232,252.8972700138092,252.9277913169861,252.95831262016296,252.98883392333983,253.01935522651672,253.0498765296936,253.0803978328705,253.11091913604736,253.14144043922423,253.17196174240112,253.202483045578,253.2330043487549,253.26352565193176,253.29404695510863,253.32456825828552,253.3550895614624,253.3856108646393,253.41613216781616,253.44665347099303,253.47717477416992,253.5076960773468,253.5382173805237,253.56873868370056,253.59925998687743,253.62978129005432,253.6603025932312,253.69082389640806,253.72134519958496,253.75186650276183,253.78238780593873,253.8129091091156,253.84343041229246,253.87395171546936,253.90447301864623,253.93499432182313,253.93499432182313]}], {"xaxis":{"rangeslider":{"visible":false},"gridcolor":"white","rangeselector":{"buttons":[{"step":10,"stepmode":"backward","label":"1m","count":1},{"step":"all"}]},"title":{"text":""},"range":[],"zerolinecolor":"white","ticksuffix":" ms"},"modebar":{"color":"gray","activecolor":"rgb(229,236,246)","yanchor":"bottom","xanchor":"right","y":1,"bgcolor":"rgba(0,0,0,0)","orientation":"h","x":0},"hovermode":"closest","paper_bgcolor":"rgba(0,0,0,0)","template":{"layout":{"coloraxis":{"colorbar":{"ticks":"","outlinewidth":0}},"xaxis":{"gridcolor":"white","zerolinewidth":2,"title":{"standoff":15},"ticks":"","zerolinecolor":"white","automargin":true,"linecolor":"white"},"hovermode":"closest","paper_bgcolor":"white","geo":{"showlakes":true,"showland":true,"landcolor":"#E5ECF6","bgcolor":"white","subunitcolor":"white","lakecolor":"white"},"colorscale":{"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]},"yaxis":{"gridcolor":"white","zerolinewidth":2,"title":{"standoff":15},"ticks":"","zerolinecolor":"white","automargin":true,"linecolor":"white"},"shapedefaults":{"line":{"color":"#2a3f5f"}},"hoverlabel":{"align":"left"},"mapbox":{"style":"light"},"polar":{"angularaxis":{"gridcolor":"white","ticks":"","linecolor":"white"},"bgcolor":"#E5ECF6","radialaxis":{"gridcolor":"white","ticks":"","linecolor":"white"}},"autotypenumbers":"strict","font":{"color":"#2a3f5f"},"ternary":{"baxis":{"gridcolor":"white","ticks":"","linecolor":"white"},"bgcolor":"#E5ECF6","caxis":{"gridcolor":"white","ticks":"","linecolor":"white"},"aaxis":{"gridcolor":"white","ticks":"","linecolor":"white"}},"annotationdefaults":{"arrowhead":0,"arrowwidth":1,"arrowcolor":"#2a3f5f"},"plot_bgcolor":"#E5ECF6","title":{"x":0.05},"scene":{"xaxis":{"gridcolor":"white","gridwidth":2,"backgroundcolor":"#E5ECF6","ticks":"","showbackground":true,"zerolinecolor":"white","linecolor":"white"},"zaxis":{"gridcolor":"white","gridwidth":2,"backgroundcolor":"#E5ECF6","ticks":"","showbackground":true,"zerolinecolor":"white","linecolor":"white"},"yaxis":{"gridcolor":"white","gridwidth":2,"backgroundcolor":"#E5ECF6","ticks":"","showbackground":true,"zerolinecolor":"white","linecolor":"white"}},"colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"]},"data":{"barpolar":[{"type":"barpolar","marker":{"line":{"color":"#E5ECF6","width":0.5}}}],"carpet":[{"aaxis":{"gridcolor":"white","endlinecolor":"#2a3f5f","minorgridcolor":"white","startlinecolor":"#2a3f5f","linecolor":"white"},"type":"carpet","baxis":{"gridcolor":"white","endlinecolor":"#2a3f5f","minorgridcolor":"white","startlinecolor":"#2a3f5f","linecolor":"white"}}],"scatterpolar":[{"type":"scatterpolar","marker":{"colorbar":{"ticks":"","outlinewidth":0}}}],"parcoords":[{"line":{"colorbar":{"ticks":"","outlinewidth":0}},"type":"parcoords"}],"scatter":[{"type":"scatter","marker":{"colorbar":{"ticks":"","outlinewidth":0}}}],"histogram2dcontour":[{"colorbar":{"ticks":"","outlinewidth":0},"type":"histogram2dcontour","colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"contour":[{"colorbar":{"ticks":"","outlinewidth":0},"type":"contour","colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"scattercarpet":[{"type":"scattercarpet","marker":{"colorbar":{"ticks":"","outlinewidth":0}}}],"mesh3d":[{"colorbar":{"ticks":"","outlinewidth":0},"type":"mesh3d"}],"surface":[{"colorbar":{"ticks":"","outlinewidth":0},"type":"surface","colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"scattermapbox":[{"type":"scattermapbox","marker":{"colorbar":{"ticks":"","outlinewidth":0}}}],"scattergeo":[{"type":"scattergeo","marker":{"colorbar":{"ticks":"","outlinewidth":0}}}],"histogram":[{"type":"histogram","marker":{"colorbar":{"ticks":"","outlinewidth":0}}}],"pie":[{"type":"pie","automargin":true}],"choropleth":[{"colorbar":{"ticks":"","outlinewidth":0},"type":"choropleth"}],"heatmapgl":[{"colorbar":{"ticks":"","outlinewidth":0},"type":"heatmapgl","colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"bar":[{"type":"bar","error_y":{"color":"#2a3f5f"},"error_x":{"color":"#2a3f5f"},"marker":{"line":{"color":"#E5ECF6","width":0.5}}}],"heatmap":[{"colorbar":{"ticks":"","outlinewidth":0},"type":"heatmap","colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"contourcarpet":[{"colorbar":{"ticks":"","outlinewidth":0},"type":"contourcarpet"}],"table":[{"type":"table","header":{"line":{"color":"white"},"fill":{"color":"#C8D4E3"}},"cells":{"line":{"color":"white"},"fill":{"color":"#EBF0F8"}}}],"scatter3d":[{"line":{"colorbar":{"ticks":"","outlinewidth":0}},"type":"scatter3d","marker":{"colorbar":{"ticks":"","outlinewidth":0}}}],"scattergl":[{"type":"scattergl","marker":{"colorbar":{"ticks":"","outlinewidth":0}}}],"histogram2d":[{"colorbar":{"ticks":"","outlinewidth":0},"type":"histogram2d","colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"scatterternary":[{"type":"scatterternary","marker":{"colorbar":{"ticks":"","outlinewidth":0}}}],"scatterpolargl":[{"type":"scatterpolargl","marker":{"colorbar":{"ticks":"","outlinewidth":0}}}]}},"height":300,"legend":{"yanchor":"bottom","xanchor":"left","y":1,"orientation":"h","x":0},"yaxis":{"gridcolor":"white","zerolinecolor":"white","fixedrange":false},"shapes":[],"font":{"color":"gray"},"annotations":[],"plot_bgcolor":"rgb(229,236,246)","margin":{"l":0,"b":0,"r":0,"t":0}}, {"modeBarButtonsToRemove":["zoom","autoScale","resetScale2d","pan","tableRotation","resetCameraLastSave","zoomIn","zoomOut"],"displaylogo":false,"toImageButtonOptions":{"format":"svg"},"editable":false,"responsive":true,"staticPlot":false,"scrollZoom":true}, diff --git a/dev/assets/examples/2-phantom1.html b/dev/assets/examples/2-phantom1.html index 4d4a05ce8..44a3b22a3 100644 --- a/dev/assets/examples/2-phantom1.html +++ b/dev/assets/examples/2-phantom1.html @@ -9,7 +9,7 @@
@@ -17,9 +17,9 @@ window.PLOTLYENV = window.PLOTLYENV || {} - if (document.getElementById('9b76679b-7d14-4776-bd97-6a67da59139b')) { + if (document.getElementById('530845c6-fa23-4fb5-88f9-4230193024da')) { Plotly.newPlot( - '9b76679b-7d14-4776-bd97-6a67da59139b', + '530845c6-fa23-4fb5-88f9-4230193024da', [{"x":[-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.6,8.6,8.6,8.6,8.6,8.6],"mode":"markers","y":[-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-1.4000000000000001,-1.2,-1.0,-0.8,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-5.800000000000001,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.4,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.800000000000001,6.0,6.2,6.4,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.4,6.6000000000000005,6.800000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.800000000000001,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.199999999999999,7.8,8.0,8.200000000000001,8.4,8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.199999999999999,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,8.0,8.200000000000001,8.4,8.6,8.799999999999999,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,8.200000000000001,8.4,8.6,8.799999999999999,9.0,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,8.6,8.799999999999999,9.0,9.2,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-8.0,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.799999999999999,9.0,9.2,9.4,-9.0,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-7.8,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.799999999999999,9.0,9.2,9.4,9.6,-9.2,-9.0,-8.799999999999999,-8.6,-8.4,-8.0,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,9.0,9.2,9.4,9.6,-9.2,-9.0,-8.799999999999999,-8.6,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,9.2,9.4,9.6,9.8,-9.4,-9.2,-9.0,-8.799999999999999,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,9.2,9.4,9.6,9.8,-9.4,-9.2,-9.0,-8.799999999999999,-8.4,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.799999999999999,9.0,9.4,9.6,9.8,10.0,-9.4,-9.2,-9.0,-8.4,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.4,9.6,9.8,10.0,-9.6,-9.4,-9.2,-9.0,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,9.4,9.6,9.8,10.0,-9.6,-9.4,-9.2,-9.0,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.2,9.6,9.8,10.0,10.2,-9.6,-9.4,-9.2,-9.0,-8.799999999999999,-8.6,-8.4,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.2,9.6,9.8,10.0,10.2,-9.6,-9.4,-9.2,-9.0,-8.799999999999999,-8.6,-8.4,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.8,10.0,10.2,-9.6,-9.4,-9.2,-8.799999999999999,-8.6,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.8,10.0,10.2,-9.6,-9.4,-9.2,-8.799999999999999,-8.6,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.8,10.0,10.2,10.4,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.8,10.0,10.2,10.4,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.4,10.0,10.2,10.4,10.6,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.4,9.6,10.0,10.2,10.4,10.6,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-8.6,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.4,9.6,10.0,10.2,10.4,10.6,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-8.6,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.4,9.6,10.0,10.2,10.4,10.6,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-8.6,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.4,9.6,10.0,10.2,10.4,10.6,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-8.6,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.4,9.6,10.0,10.2,10.4,10.6,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-8.6,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.6,8.799999999999999,9.2,9.4,9.6,10.0,10.2,10.4,10.6,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.2,9.4,9.6,10.0,10.2,10.4,10.6,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-8.6,-8.200000000000001,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.4,9.6,10.0,10.2,10.4,10.6,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-8.6,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.4,9.6,10.0,10.2,10.4,10.6,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-8.6,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.4,9.6,10.0,10.2,10.4,10.6,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.4,9.6,10.0,10.2,10.4,10.6,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.4,10.0,10.2,10.4,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.4,9.8,10.0,10.2,10.4,-9.6,-9.4,-9.2,-8.799999999999999,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.4,9.8,10.0,10.2,10.4,-9.6,-9.4,-9.2,-8.799999999999999,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.4,9.8,10.0,10.2,10.4,-9.6,-9.4,-9.2,-9.0,-8.6,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.2,9.8,10.0,10.2,-9.6,-9.4,-9.2,-9.0,-8.799999999999999,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.2,9.6,9.8,10.0,10.2,-9.6,-9.4,-9.2,-9.0,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.6,9.8,10.0,10.2,-9.4,-9.2,-9.0,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.6,9.8,10.0,10.2,-9.4,-9.2,-9.0,-8.799999999999999,-8.4,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,9.4,9.6,9.8,10.0,-9.4,-9.2,-9.0,-8.799999999999999,-8.4,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.4,9.6,9.8,10.0,-9.2,-9.0,-8.799999999999999,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.799999999999999,9.4,9.6,9.8,10.0,-9.2,-9.0,-8.799999999999999,-8.6,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.6,9.2,9.4,9.6,9.8,-9.0,-8.799999999999999,-8.6,-8.4,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,9.2,9.4,9.6,9.8,-9.0,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-7.6,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.4,8.6,9.0,9.2,9.4,9.6,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-8.0,-7.6,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.799999999999999,9.0,9.2,9.4,9.6,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.200000000000001,8.6,8.799999999999999,9.0,9.2,9.4,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.199999999999999,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.4,8.6,8.799999999999999,9.0,9.2,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.3999999999999995,7.6,8.200000000000001,8.4,8.6,8.799999999999999,9.0,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,8.0,8.200000000000001,8.4,8.6,8.799999999999999,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,7.000000000000001,7.199999999999999,7.6,7.8,8.0,8.200000000000001,8.4,8.6,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.6000000000000005,6.800000000000001,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,6.0,6.2,6.4,6.6000000000000005,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.800000000000001,6.0,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,2.0,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.2,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-1.6,0.4,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,-0.8,-0.6,-0.4,-0.2,0.0,0.2],"type":"scatter","text":[329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,47.0,47.0,47.0,47.0,47.0,70.0,70.0,70.0,47.0,70.0,70.0,70.0,70.0,70.0,47.0,47.0,47.0,70.0,70.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,70.0,70.0,70.0,329.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,47.0,47.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,47.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,47.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,70.0,47.0,47.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,70.0,47.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,70.0,70.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,47.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,329.0,47.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,70.0,329.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,47.0,329.0,70.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,83.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,329.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,83.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,329.0,47.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,329.0,329.0,83.0,83.0,329.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,329.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,70.0,70.0,329.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,70.0,83.0,329.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,70.0,70.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,70.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,70.0,329.0,70.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,47.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,329.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,47.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,70.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,329.0,83.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,70.0,70.0,329.0,83.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,47.0,329.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,70.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,70.0,70.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,329.0,329.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,83.0,329.0,329.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,70.0,70.0,329.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,329.0,329.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,70.0,329.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,83.0,70.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,70.0,70.0,47.0,329.0,329.0,47.0,329.0,329.0,70.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,329.0,47.0,329.0,329.0,329.0,47.0,329.0,70.0,329.0,83.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,329.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,47.0,70.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,70.0,70.0,329.0,70.0,329.0,329.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,83.0,329.0,329.0,329.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,70.0,329.0,47.0,329.0,329.0,329.0,47.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,329.0,70.0,329.0,329.0,329.0,70.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,70.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,70.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,47.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,47.0,47.0,47.0,329.0,329.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,70.0,329.0,83.0,83.0,83.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,70.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,329.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,329.0,329.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,47.0,70.0,47.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,47.0,47.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,329.0,83.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,329.0,329.0,70.0,329.0,329.0,329.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,329.0,329.0,70.0,70.0,329.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,83.0,329.0,329.0,83.0,83.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,70.0,70.0,329.0,329.0,70.0,70.0,329.0,329.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,47.0,70.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,47.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,70.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,329.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,47.0,47.0,70.0,47.0,47.0,70.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,47.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0],"hovertemplate":"x: %{x:.1f} cm
y: %{y:.1f} cm
T2: %{text} ms","marker":{"color":[329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,47.0,47.0,47.0,47.0,47.0,70.0,70.0,70.0,47.0,70.0,70.0,70.0,70.0,70.0,47.0,47.0,47.0,70.0,70.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,70.0,70.0,70.0,329.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,47.0,47.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,47.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,47.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,70.0,47.0,47.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,70.0,47.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,70.0,70.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,47.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,329.0,47.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,70.0,329.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,47.0,329.0,70.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,83.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,329.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,83.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,329.0,47.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,329.0,329.0,83.0,83.0,329.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,329.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,70.0,70.0,329.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,70.0,83.0,329.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,70.0,70.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,70.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,70.0,329.0,70.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,47.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,329.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,47.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,70.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,329.0,83.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,70.0,70.0,329.0,83.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,47.0,329.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,70.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,70.0,70.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,329.0,329.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,83.0,329.0,329.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,70.0,70.0,329.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,329.0,329.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,70.0,329.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,83.0,70.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,70.0,70.0,47.0,329.0,329.0,47.0,329.0,329.0,70.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,329.0,47.0,329.0,329.0,329.0,47.0,329.0,70.0,329.0,83.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,329.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,47.0,70.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,70.0,70.0,329.0,70.0,329.0,329.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,83.0,329.0,329.0,329.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,70.0,329.0,47.0,329.0,329.0,329.0,47.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,329.0,70.0,329.0,329.0,329.0,70.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,70.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,70.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,47.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,47.0,47.0,47.0,329.0,329.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,70.0,329.0,83.0,83.0,83.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,70.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,329.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,329.0,329.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,47.0,70.0,47.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,47.0,47.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,329.0,83.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,329.0,329.0,70.0,329.0,329.0,329.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,329.0,329.0,70.0,70.0,329.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,83.0,329.0,329.0,83.0,83.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,70.0,70.0,329.0,329.0,70.0,70.0,329.0,329.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,47.0,70.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,47.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,70.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,329.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,47.0,47.0,70.0,47.0,47.0,70.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,47.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0],"colorbar":{"title":"T2","ticksuffix":" ms"},"cmin":0.0,"colorscale":[[0.0,"rgb(10,5,27)"],[0.00041684035014589413,"rgb(10,7,38)"],[0.0008336807002917883,"rgb(10,7,41)"],[0.0012505210504376823,"rgb(10,8,44)"],[0.0016673614005835765,"rgb(10,8,46)"],[0.0020842017507294707,"rgb(10,8,48)"],[0.0025010421008753647,"rgb(10,8,50)"],[0.0029178824510212586,"rgb(10,8,51)"],[0.003334722801167153,"rgb(10,8,53)"],[0.003751563151313047,"rgb(10,8,54)"],[0.004168403501458941,"rgb(10,8,56)"],[0.004585243851604835,"rgb(10,8,57)"],[0.005002084201750729,"rgb(10,8,58)"],[0.005418924551896623,"rgb(10,8,59)"],[0.005835764902042517,"rgb(10,8,61)"],[0.006252605252188412,"rgb(10,8,62)"],[0.006669445602334306,"rgb(10,8,63)"],[0.0070862859524802,"rgb(10,8,64)"],[0.007503126302626094,"rgb(11,8,65)"],[0.007919966652771988,"rgb(11,8,66)"],[0.008336807002917883,"rgb(11,8,67)"],[0.008753647353063776,"rgb(11,8,68)"],[0.00917048770320967,"rgb(11,8,69)"],[0.009587328053355566,"rgb(11,8,70)"],[0.010004168403501459,"rgb(11,8,70)"],[0.010421008753647354,"rgb(11,8,71)"],[0.010837849103793247,"rgb(11,8,72)"],[0.011254689453939141,"rgb(11,8,73)"],[0.011671529804085035,"rgb(11,7,74)"],[0.01208837015423093,"rgb(11,7,75)"],[0.012505210504376824,"rgb(11,7,75)"],[0.012922050854522717,"rgb(11,7,76)"],[0.013338891204668612,"rgb(11,7,77)"],[0.013755731554814505,"rgb(11,7,78)"],[0.0141725719049604,"rgb(11,7,79)"],[0.014589412255106295,"rgb(11,8,79)"],[0.015006252605252188,"rgb(11,8,80)"],[0.015423092955398083,"rgb(11,8,81)"],[0.015839933305543976,"rgb(11,8,81)"],[0.01625677365568987,"rgb(11,8,82)"],[0.016673614005835766,"rgb(11,8,83)"],[0.01709045435598166,"rgb(11,8,83)"],[0.017507294706127552,"rgb(11,8,84)"],[0.01792413505627345,"rgb(11,8,85)"],[0.01834097540641934,"rgb(12,8,85)"],[0.018757815756565235,"rgb(12,8,86)"],[0.01917465610671113,"rgb(12,8,87)"],[0.019591496456857024,"rgb(12,8,87)"],[0.020008336807002917,"rgb(12,8,88)"],[0.02042517715714881,"rgb(12,8,89)"],[0.020842017507294707,"rgb(12,8,89)"],[0.0212588578574406,"rgb(12,8,90)"],[0.021675698207586493,"rgb(12,8,90)"],[0.02209253855773239,"rgb(12,8,91)"],[0.022509378907878283,"rgb(12,8,91)"],[0.022926219258024176,"rgb(12,8,92)"],[0.02334305960817007,"rgb(12,8,93)"],[0.023759899958315966,"rgb(12,8,93)"],[0.02417674030846186,"rgb(12,8,94)"],[0.024593580658607752,"rgb(12,8,94)"],[0.02501042100875365,"rgb(12,8,95)"],[0.02542726135889954,"rgb(12,8,95)"],[0.025844101709045435,"rgb(12,8,96)"],[0.02626094205919133,"rgb(12,8,96)"],[0.026677782409337224,"rgb(12,8,97)"],[0.027094622759483118,"rgb(12,8,97)"],[0.02751146310962901,"rgb(12,8,98)"],[0.027928303459774907,"rgb(12,8,99)"],[0.0283451438099208,"rgb(12,8,99)"],[0.028761984160066693,"rgb(12,8,100)"],[0.02917882451021259,"rgb(12,8,100)"],[0.029595664860358483,"rgb(12,8,100)"],[0.030012505210504376,"rgb(12,8,101)"],[0.03042934556065027,"rgb(12,8,101)"],[0.030846185910796166,"rgb(12,8,102)"],[0.03126302626094206,"rgb(12,8,102)"],[0.03167986661108795,"rgb(12,8,103)"],[0.032096706961233845,"rgb(11,8,103)"],[0.03251354731137974,"rgb(11,8,104)"],[0.03293038766152564,"rgb(11,9,104)"],[0.03334722801167153,"rgb(11,9,105)"],[0.033764068361817424,"rgb(11,9,105)"],[0.03418090871196332,"rgb(11,9,106)"],[0.03459774906210921,"rgb(11,9,106)"],[0.035014589412255104,"rgb(11,9,107)"],[0.035431429762401004,"rgb(11,9,107)"],[0.0358482701125469,"rgb(11,9,107)"],[0.03626511046269279,"rgb(11,9,108)"],[0.03668195081283868,"rgb(11,9,108)"],[0.037098791162984576,"rgb(11,9,109)"],[0.03751563151313047,"rgb(11,9,109)"],[0.03793247186327636,"rgb(11,9,110)"],[0.03834931221342226,"rgb(11,9,110)"],[0.038766152563568156,"rgb(11,9,110)"],[0.03918299291371405,"rgb(11,9,111)"],[0.03959983326385994,"rgb(11,9,111)"],[0.040016673614005835,"rgb(11,9,112)"],[0.04043351396415173,"rgb(11,9,112)"],[0.04085035431429762,"rgb(11,9,112)"],[0.04126719466444352,"rgb(11,10,113)"],[0.041684035014589414,"rgb(11,10,113)"],[0.04210087536473531,"rgb(11,10,114)"],[0.0425177157148812,"rgb(11,10,114)"],[0.042934556065027094,"rgb(11,10,114)"],[0.04335139641517299,"rgb(11,10,115)"],[0.04376823676531888,"rgb(11,10,115)"],[0.04418507711546478,"rgb(11,10,115)"],[0.04460191746561067,"rgb(11,10,116)"],[0.045018757815756566,"rgb(11,10,116)"],[0.04543559816590246,"rgb(10,10,117)"],[0.04585243851604835,"rgb(10,10,117)"],[0.046269278866194245,"rgb(10,10,117)"],[0.04668611921634014,"rgb(10,10,118)"],[0.04710295956648604,"rgb(10,10,118)"],[0.04751979991663193,"rgb(10,11,118)"],[0.047936640266777825,"rgb(10,11,119)"],[0.04835348061692372,"rgb(10,11,119)"],[0.04877032096706961,"rgb(10,11,119)"],[0.049187161317215504,"rgb(10,11,120)"],[0.049604001667361404,"rgb(10,11,120)"],[0.0500208420175073,"rgb(10,11,120)"],[0.05043768236765319,"rgb(10,11,121)"],[0.05085452271779908,"rgb(10,11,121)"],[0.051271363067944976,"rgb(10,11,121)"],[0.05168820341809087,"rgb(10,11,122)"],[0.05210504376823676,"rgb(10,11,122)"],[0.05252188411838266,"rgb(10,11,122)"],[0.052938724468528556,"rgb(10,11,123)"],[0.05335556481867445,"rgb(10,12,123)"],[0.05377240516882034,"rgb(10,12,123)"],[0.054189245518966235,"rgb(9,12,124)"],[0.05460608586911213,"rgb(9,12,124)"],[0.05502292621925802,"rgb(9,12,124)"],[0.05543976656940392,"rgb(9,12,125)"],[0.055856606919549814,"rgb(9,12,125)"],[0.05627344726969571,"rgb(9,12,125)"],[0.0566902876198416,"rgb(9,12,126)"],[0.057107127969987494,"rgb(9,12,126)"],[0.05752396832013339,"rgb(9,12,126)"],[0.05794080867027928,"rgb(9,12,126)"],[0.05835764902042518,"rgb(9,13,127)"],[0.05877448937057107,"rgb(9,13,127)"],[0.059191329720716966,"rgb(9,13,127)"],[0.05960817007086286,"rgb(9,13,128)"],[0.06002501042100875,"rgb(9,13,128)"],[0.060441850771154645,"rgb(9,13,128)"],[0.06085869112130054,"rgb(9,13,129)"],[0.06127553147144644,"rgb(9,13,129)"],[0.06169237182159233,"rgb(8,13,129)"],[0.062109212171738225,"rgb(8,13,129)"],[0.06252605252188412,"rgb(8,13,130)"],[0.06294289287203002,"rgb(8,14,130)"],[0.0633597332221759,"rgb(8,14,130)"],[0.0637765735723218,"rgb(8,14,130)"],[0.06419341392246769,"rgb(8,14,131)"],[0.06461025427261359,"rgb(8,14,131)"],[0.06502709462275948,"rgb(8,14,131)"],[0.06544393497290538,"rgb(8,14,132)"],[0.06586077532305128,"rgb(8,14,132)"],[0.06627761567319716,"rgb(8,14,132)"],[0.06669445602334306,"rgb(8,14,132)"],[0.06711129637348895,"rgb(8,15,133)"],[0.06752813672363485,"rgb(8,15,133)"],[0.06794497707378074,"rgb(8,15,133)"],[0.06836181742392664,"rgb(8,15,133)"],[0.06877865777407254,"rgb(7,15,134)"],[0.06919549812421842,"rgb(7,15,134)"],[0.06961233847436432,"rgb(7,15,134)"],[0.07002917882451021,"rgb(7,15,134)"],[0.07044601917465611,"rgb(7,15,135)"],[0.07086285952480201,"rgb(7,15,135)"],[0.0712796998749479,"rgb(7,16,135)"],[0.0716965402250938,"rgb(7,16,135)"],[0.07211338057523968,"rgb(7,16,136)"],[0.07253022092538558,"rgb(7,16,136)"],[0.07294706127553147,"rgb(7,16,136)"],[0.07336390162567737,"rgb(7,16,136)"],[0.07378074197582327,"rgb(7,16,137)"],[0.07419758232596915,"rgb(7,16,137)"],[0.07461442267611505,"rgb(7,16,137)"],[0.07503126302626094,"rgb(7,17,137)"],[0.07544810337640684,"rgb(6,17,138)"],[0.07586494372655272,"rgb(6,17,138)"],[0.07628178407669862,"rgb(6,17,138)"],[0.07669862442684452,"rgb(6,17,138)"],[0.07711546477699041,"rgb(6,17,138)"],[0.07753230512713631,"rgb(6,17,139)"],[0.0779491454772822,"rgb(6,17,139)"],[0.0783659858274281,"rgb(6,17,139)"],[0.07878282617757398,"rgb(6,18,139)"],[0.07919966652771988,"rgb(6,18,140)"],[0.07961650687786578,"rgb(6,18,140)"],[0.08003334722801167,"rgb(6,18,140)"],[0.08045018757815757,"rgb(6,18,140)"],[0.08086702792830346,"rgb(6,18,140)"],[0.08128386827844936,"rgb(6,18,141)"],[0.08170070862859524,"rgb(6,18,141)"],[0.08211754897874114,"rgb(5,19,141)"],[0.08253438932888704,"rgb(5,19,141)"],[0.08295122967903293,"rgb(5,19,142)"],[0.08336807002917883,"rgb(5,19,142)"],[0.08378491037932471,"rgb(5,19,142)"],[0.08420175072947061,"rgb(5,19,142)"],[0.0846185910796165,"rgb(5,19,142)"],[0.0850354314297624,"rgb(5,19,143)"],[0.0854522717799083,"rgb(5,20,143)"],[0.08586911213005419,"rgb(5,20,143)"],[0.08628595248020009,"rgb(5,20,143)"],[0.08670279283034597,"rgb(5,20,143)"],[0.08711963318049187,"rgb(5,20,144)"],[0.08753647353063776,"rgb(5,20,144)"],[0.08795331388078366,"rgb(5,20,144)"],[0.08837015423092956,"rgb(5,20,144)"],[0.08878699458107545,"rgb(4,21,144)"],[0.08920383493122135,"rgb(4,21,145)"],[0.08962067528136723,"rgb(4,21,145)"],[0.09003751563151313,"rgb(4,21,145)"],[0.09045435598165902,"rgb(4,21,145)"],[0.09087119633180492,"rgb(4,21,145)"],[0.09128803668195082,"rgb(4,21,145)"],[0.0917048770320967,"rgb(4,22,146)"],[0.0921217173822426,"rgb(4,22,146)"],[0.09253855773238849,"rgb(4,22,146)"],[0.09295539808253439,"rgb(4,22,146)"],[0.09337223843268028,"rgb(4,22,146)"],[0.09378907878282618,"rgb(4,22,147)"],[0.09420591913297208,"rgb(4,22,147)"],[0.09462275948311796,"rgb(4,22,147)"],[0.09503959983326386,"rgb(4,23,147)"],[0.09545644018340975,"rgb(4,23,147)"],[0.09587328053355565,"rgb(3,23,147)"],[0.09629012088370154,"rgb(3,23,148)"],[0.09670696123384744,"rgb(3,23,148)"],[0.09712380158399334,"rgb(3,23,148)"],[0.09754064193413922,"rgb(3,23,148)"],[0.09795748228428512,"rgb(3,24,148)"],[0.09837432263443101,"rgb(3,24,149)"],[0.09879116298457691,"rgb(3,24,149)"],[0.09920800333472281,"rgb(3,24,149)"],[0.0996248436848687,"rgb(3,24,149)"],[0.1000416840350146,"rgb(3,24,149)"],[0.10045852438516048,"rgb(3,24,149)"],[0.10087536473530638,"rgb(3,25,150)"],[0.10129220508545227,"rgb(3,25,150)"],[0.10170904543559817,"rgb(3,25,150)"],[0.10212588578574407,"rgb(3,25,150)"],[0.10254272613588995,"rgb(3,25,150)"],[0.10295956648603585,"rgb(3,25,150)"],[0.10337640683618174,"rgb(3,25,150)"],[0.10379324718632764,"rgb(3,26,151)"],[0.10421008753647353,"rgb(2,26,151)"],[0.10462692788661943,"rgb(2,26,151)"],[0.10504376823676533,"rgb(2,26,151)"],[0.10546060858691121,"rgb(2,26,151)"],[0.10587744893705711,"rgb(2,26,151)"],[0.106294289287203,"rgb(2,27,152)"],[0.1067111296373489,"rgb(2,27,152)"],[0.10712796998749478,"rgb(2,27,152)"],[0.10754481033764068,"rgb(2,27,152)"],[0.10796165068778658,"rgb(2,27,152)"],[0.10837849103793247,"rgb(2,27,152)"],[0.10879533138807837,"rgb(2,27,152)"],[0.10921217173822426,"rgb(2,28,153)"],[0.10962901208837016,"rgb(2,28,153)"],[0.11004585243851604,"rgb(2,28,153)"],[0.11046269278866194,"rgb(2,28,153)"],[0.11087953313880784,"rgb(2,28,153)"],[0.11129637348895373,"rgb(2,28,153)"],[0.11171321383909963,"rgb(2,29,153)"],[0.11213005418924551,"rgb(2,29,154)"],[0.11254689453939141,"rgb(2,29,154)"],[0.1129637348895373,"rgb(2,29,154)"],[0.1133805752396832,"rgb(1,29,154)"],[0.1137974155898291,"rgb(1,29,154)"],[0.11421425593997499,"rgb(1,29,154)"],[0.11463109629012089,"rgb(1,30,154)"],[0.11504793664026677,"rgb(1,30,155)"],[0.11546477699041267,"rgb(1,30,155)"],[0.11588161734055856,"rgb(1,30,155)"],[0.11629845769070446,"rgb(1,30,155)"],[0.11671529804085036,"rgb(1,30,155)"],[0.11713213839099625,"rgb(1,31,155)"],[0.11754897874114215,"rgb(1,31,155)"],[0.11796581909128803,"rgb(1,31,156)"],[0.11838265944143393,"rgb(1,31,156)"],[0.11879949979157982,"rgb(1,31,156)"],[0.11921634014172572,"rgb(1,31,156)"],[0.11963318049187162,"rgb(1,32,156)"],[0.1200500208420175,"rgb(1,32,156)"],[0.1204668611921634,"rgb(1,32,156)"],[0.12088370154230929,"rgb(1,32,156)"],[0.12130054189245519,"rgb(1,32,157)"],[0.12171738224260108,"rgb(1,32,157)"],[0.12213422259274698,"rgb(1,33,157)"],[0.12255106294289288,"rgb(1,33,157)"],[0.12296790329303876,"rgb(1,33,157)"],[0.12338474364318466,"rgb(1,33,157)"],[0.12380158399333055,"rgb(1,33,157)"],[0.12421842434347645,"rgb(1,33,157)"],[0.12463526469362234,"rgb(1,34,158)"],[0.12505210504376824,"rgb(1,34,158)"],[0.12546894539391412,"rgb(1,34,158)"],[0.12588578574406004,"rgb(1,34,158)"],[0.12630262609420592,"rgb(0,34,158)"],[0.1267194664443518,"rgb(0,34,158)"],[0.1271363067944977,"rgb(0,35,158)"],[0.1275531471446436,"rgb(0,35,158)"],[0.1279699874947895,"rgb(0,35,158)"],[0.12838682784493538,"rgb(0,35,159)"],[0.1288036681950813,"rgb(0,35,159)"],[0.12922050854522718,"rgb(0,35,159)"],[0.12963734889537307,"rgb(0,36,159)"],[0.13005418924551895,"rgb(0,36,159)"],[0.13047102959566487,"rgb(0,36,159)"],[0.13088786994581075,"rgb(0,36,159)"],[0.13130471029595664,"rgb(0,36,159)"],[0.13172155064610255,"rgb(0,36,159)"],[0.13213839099624844,"rgb(0,37,160)"],[0.13255523134639433,"rgb(0,37,160)"],[0.1329720716965402,"rgb(0,37,160)"],[0.13338891204668613,"rgb(0,37,160)"],[0.133805752396832,"rgb(0,37,160)"],[0.1342225927469779,"rgb(0,37,160)"],[0.1346394330971238,"rgb(0,38,160)"],[0.1350562734472697,"rgb(0,38,160)"],[0.13547311379741558,"rgb(0,38,160)"],[0.13588995414756147,"rgb(0,38,161)"],[0.13630679449770738,"rgb(0,38,161)"],[0.13672363484785327,"rgb(0,38,161)"],[0.13714047519799916,"rgb(0,39,161)"],[0.13755731554814507,"rgb(0,39,161)"],[0.13797415589829096,"rgb(0,39,161)"],[0.13839099624843684,"rgb(0,39,161)"],[0.13880783659858273,"rgb(0,39,161)"],[0.13922467694872864,"rgb(0,39,161)"],[0.13964151729887453,"rgb(0,40,161)"],[0.14005835764902042,"rgb(0,40,162)"],[0.14047519799916633,"rgb(0,40,162)"],[0.14089203834931222,"rgb(0,40,162)"],[0.1413088786994581,"rgb(0,40,162)"],[0.14172571904960402,"rgb(0,41,162)"],[0.1421425593997499,"rgb(0,41,162)"],[0.1425593997498958,"rgb(0,41,162)"],[0.14297624010004167,"rgb(0,41,162)"],[0.1433930804501876,"rgb(0,41,162)"],[0.14380992080033347,"rgb(0,41,162)"],[0.14422676115047936,"rgb(0,42,162)"],[0.14464360150062527,"rgb(0,42,163)"],[0.14506044185077116,"rgb(0,42,163)"],[0.14547728220091705,"rgb(0,42,163)"],[0.14589412255106293,"rgb(0,42,163)"],[0.14631096290120885,"rgb(0,42,163)"],[0.14672780325135473,"rgb(0,43,163)"],[0.14714464360150062,"rgb(0,43,163)"],[0.14756148395164653,"rgb(0,43,163)"],[0.14797832430179242,"rgb(0,43,163)"],[0.1483951646519383,"rgb(0,43,163)"],[0.1488120050020842,"rgb(0,44,163)"],[0.1492288453522301,"rgb(0,44,164)"],[0.149645685702376,"rgb(0,44,164)"],[0.15006252605252188,"rgb(0,44,164)"],[0.1504793664026678,"rgb(0,44,164)"],[0.15089620675281368,"rgb(0,44,164)"],[0.15131304710295956,"rgb(0,45,164)"],[0.15172988745310545,"rgb(0,45,164)"],[0.15214672780325136,"rgb(0,45,164)"],[0.15256356815339725,"rgb(0,45,164)"],[0.15298040850354314,"rgb(0,45,164)"],[0.15339724885368905,"rgb(0,46,164)"],[0.15381408920383494,"rgb(0,46,164)"],[0.15423092955398082,"rgb(0,46,164)"],[0.1546477699041267,"rgb(0,46,165)"],[0.15506461025427262,"rgb(0,46,165)"],[0.1554814506044185,"rgb(0,46,165)"],[0.1558982909545644,"rgb(0,47,165)"],[0.1563151313047103,"rgb(0,47,165)"],[0.1567319716548562,"rgb(0,47,165)"],[0.15714881200500208,"rgb(0,47,165)"],[0.15756565235514797,"rgb(0,47,165)"],[0.15798249270529388,"rgb(0,47,165)"],[0.15839933305543977,"rgb(0,48,165)"],[0.15881617340558565,"rgb(0,48,165)"],[0.15923301375573157,"rgb(0,48,165)"],[0.15964985410587745,"rgb(0,48,165)"],[0.16006669445602334,"rgb(0,48,166)"],[0.16048353480616923,"rgb(0,49,166)"],[0.16090037515631514,"rgb(0,49,166)"],[0.16131721550646103,"rgb(0,49,166)"],[0.1617340558566069,"rgb(0,49,166)"],[0.16215089620675283,"rgb(0,49,166)"],[0.1625677365568987,"rgb(0,49,166)"],[0.1629845769070446,"rgb(0,50,166)"],[0.16340141725719048,"rgb(0,50,166)"],[0.1638182576073364,"rgb(0,50,166)"],[0.16423509795748228,"rgb(0,50,166)"],[0.16465193830762817,"rgb(0,50,166)"],[0.16506877865777408,"rgb(0,51,166)"],[0.16548561900791997,"rgb(0,51,166)"],[0.16590245935806586,"rgb(0,51,167)"],[0.16631929970821174,"rgb(0,51,167)"],[0.16673614005835766,"rgb(0,51,167)"],[0.16715298040850354,"rgb(0,51,167)"],[0.16756982075864943,"rgb(0,52,167)"],[0.16798666110879534,"rgb(0,52,167)"],[0.16840350145894123,"rgb(0,52,167)"],[0.16882034180908712,"rgb(0,52,167)"],[0.169237182159233,"rgb(0,52,167)"],[0.16965402250937892,"rgb(0,53,167)"],[0.1700708628595248,"rgb(0,53,167)"],[0.1704877032096707,"rgb(0,53,167)"],[0.1709045435598166,"rgb(0,53,167)"],[0.1713213839099625,"rgb(0,53,167)"],[0.17173822426010837,"rgb(0,53,167)"],[0.17215506461025426,"rgb(0,54,167)"],[0.17257190496040017,"rgb(0,54,167)"],[0.17298874531054606,"rgb(0,54,168)"],[0.17340558566069195,"rgb(0,54,168)"],[0.17382242601083786,"rgb(0,54,168)"],[0.17423926636098375,"rgb(0,55,168)"],[0.17465610671112963,"rgb(0,55,168)"],[0.17507294706127552,"rgb(0,55,168)"],[0.17548978741142143,"rgb(0,55,168)"],[0.17590662776156732,"rgb(0,55,168)"],[0.1763234681117132,"rgb(0,55,168)"],[0.17674030846185912,"rgb(0,56,168)"],[0.177157148812005,"rgb(0,56,168)"],[0.1775739891621509,"rgb(0,56,168)"],[0.17799082951229678,"rgb(0,56,168)"],[0.1784076698624427,"rgb(0,56,168)"],[0.17882451021258858,"rgb(0,56,168)"],[0.17924135056273446,"rgb(0,57,168)"],[0.17965819091288038,"rgb(0,57,168)"],[0.18007503126302626,"rgb(0,57,168)"],[0.18049187161317215,"rgb(0,57,169)"],[0.18090871196331804,"rgb(0,57,169)"],[0.18132555231346395,"rgb(0,58,169)"],[0.18174239266360984,"rgb(0,58,169)"],[0.18215923301375572,"rgb(0,58,169)"],[0.18257607336390164,"rgb(0,58,169)"],[0.18299291371404752,"rgb(0,58,169)"],[0.1834097540641934,"rgb(0,58,169)"],[0.1838265944143393,"rgb(0,59,169)"],[0.1842434347644852,"rgb(0,59,169)"],[0.1846602751146311,"rgb(0,59,169)"],[0.18507711546477698,"rgb(0,59,169)"],[0.1854939558149229,"rgb(0,59,169)"],[0.18591079616506878,"rgb(0,60,169)"],[0.18632763651521467,"rgb(0,60,169)"],[0.18674447686536055,"rgb(0,60,169)"],[0.18716131721550647,"rgb(0,60,169)"],[0.18757815756565235,"rgb(0,60,169)"],[0.18799499791579824,"rgb(0,60,169)"],[0.18841183826594415,"rgb(0,61,169)"],[0.18882867861609004,"rgb(0,61,169)"],[0.18924551896623593,"rgb(0,61,170)"],[0.1896623593163818,"rgb(0,61,170)"],[0.19007919966652773,"rgb(0,61,170)"],[0.1904960400166736,"rgb(0,62,170)"],[0.1909128803668195,"rgb(0,62,170)"],[0.1913297207169654,"rgb(0,62,170)"],[0.1917465610671113,"rgb(0,62,170)"],[0.19216340141725718,"rgb(0,62,170)"],[0.19258024176740307,"rgb(0,62,170)"],[0.19299708211754898,"rgb(0,63,170)"],[0.19341392246769487,"rgb(0,63,170)"],[0.19383076281784076,"rgb(0,63,170)"],[0.19424760316798667,"rgb(0,63,170)"],[0.19466444351813256,"rgb(0,63,170)"],[0.19508128386827844,"rgb(0,63,170)"],[0.19549812421842436,"rgb(0,64,170)"],[0.19591496456857024,"rgb(0,64,170)"],[0.19633180491871613,"rgb(0,64,170)"],[0.19674864526886202,"rgb(0,64,170)"],[0.19716548561900793,"rgb(0,64,170)"],[0.19758232596915382,"rgb(0,65,170)"],[0.1979991663192997,"rgb(0,65,170)"],[0.19841600666944562,"rgb(0,65,170)"],[0.1988328470195915,"rgb(0,65,170)"],[0.1992496873697374,"rgb(0,65,170)"],[0.19966652771988327,"rgb(0,65,170)"],[0.2000833680700292,"rgb(0,66,170)"],[0.20050020842017507,"rgb(0,66,171)"],[0.20091704877032096,"rgb(0,66,171)"],[0.20133388912046687,"rgb(0,66,171)"],[0.20175072947061276,"rgb(0,66,171)"],[0.20216756982075865,"rgb(0,66,171)"],[0.20258441017090453,"rgb(0,67,171)"],[0.20300125052105045,"rgb(0,67,171)"],[0.20341809087119633,"rgb(0,67,171)"],[0.20383493122134222,"rgb(0,67,171)"],[0.20425177157148813,"rgb(0,67,171)"],[0.20466861192163402,"rgb(0,68,171)"],[0.2050854522717799,"rgb(0,68,171)"],[0.2055022926219258,"rgb(0,68,171)"],[0.2059191329720717,"rgb(0,68,171)"],[0.2063359733222176,"rgb(0,68,171)"],[0.20675281367236348,"rgb(0,68,171)"],[0.2071696540225094,"rgb(0,69,171)"],[0.20758649437265528,"rgb(0,69,171)"],[0.20800333472280116,"rgb(0,69,171)"],[0.20842017507294705,"rgb(0,69,171)"],[0.20883701542309296,"rgb(0,69,171)"],[0.20925385577323885,"rgb(0,69,171)"],[0.20967069612338474,"rgb(0,70,171)"],[0.21008753647353065,"rgb(0,70,171)"],[0.21050437682367654,"rgb(0,70,171)"],[0.21092121717382242,"rgb(0,70,171)"],[0.2113380575239683,"rgb(0,70,171)"],[0.21175489787411422,"rgb(0,70,171)"],[0.2121717382242601,"rgb(0,71,171)"],[0.212588578574406,"rgb(0,71,171)"],[0.2130054189245519,"rgb(0,71,171)"],[0.2134222592746978,"rgb(0,71,171)"],[0.21383909962484368,"rgb(0,71,171)"],[0.21425593997498957,"rgb(0,72,171)"],[0.21467278032513548,"rgb(0,72,171)"],[0.21508962067528137,"rgb(0,72,171)"],[0.21550646102542725,"rgb(0,72,171)"],[0.21592330137557317,"rgb(0,72,172)"],[0.21634014172571905,"rgb(0,72,172)"],[0.21675698207586494,"rgb(0,73,172)"],[0.21717382242601083,"rgb(0,73,172)"],[0.21759066277615674,"rgb(0,73,172)"],[0.21800750312630263,"rgb(0,73,172)"],[0.2184243434764485,"rgb(0,73,172)"],[0.21884118382659443,"rgb(0,73,172)"],[0.2192580241767403,"rgb(0,74,172)"],[0.2196748645268862,"rgb(0,74,172)"],[0.22009170487703208,"rgb(0,74,172)"],[0.220508545227178,"rgb(0,74,172)"],[0.22092538557732389,"rgb(0,74,172)"],[0.22134222592746977,"rgb(0,74,172)"],[0.22175906627761569,"rgb(0,75,172)"],[0.22217590662776157,"rgb(0,75,172)"],[0.22259274697790746,"rgb(0,75,172)"],[0.22300958732805334,"rgb(0,75,172)"],[0.22342642767819926,"rgb(0,75,172)"],[0.22384326802834514,"rgb(0,75,172)"],[0.22426010837849103,"rgb(0,76,172)"],[0.22467694872863694,"rgb(0,76,172)"],[0.22509378907878283,"rgb(0,76,172)"],[0.22551062942892872,"rgb(0,76,172)"],[0.2259274697790746,"rgb(0,76,172)"],[0.22634431012922052,"rgb(0,76,172)"],[0.2267611504793664,"rgb(0,77,172)"],[0.2271779908295123,"rgb(0,77,172)"],[0.2275948311796582,"rgb(0,77,172)"],[0.2280116715298041,"rgb(0,77,172)"],[0.22842851187994997,"rgb(0,77,172)"],[0.22884535223009586,"rgb(0,77,172)"],[0.22926219258024177,"rgb(0,78,172)"],[0.22967903293038766,"rgb(0,78,172)"],[0.23009587328053355,"rgb(0,78,172)"],[0.23051271363067946,"rgb(0,78,172)"],[0.23092955398082535,"rgb(0,78,172)"],[0.23134639433097123,"rgb(0,78,172)"],[0.23176323468111712,"rgb(0,79,172)"],[0.23218007503126303,"rgb(0,79,172)"],[0.23259691538140892,"rgb(0,79,172)"],[0.2330137557315548,"rgb(0,79,172)"],[0.23343059608170072,"rgb(0,79,172)"],[0.2338474364318466,"rgb(0,79,172)"],[0.2342642767819925,"rgb(0,80,172)"],[0.23468111713213838,"rgb(0,80,172)"],[0.2350979574822843,"rgb(0,80,172)"],[0.23551479783243018,"rgb(0,80,172)"],[0.23593163818257606,"rgb(0,80,172)"],[0.23634847853272198,"rgb(0,80,172)"],[0.23676531888286786,"rgb(0,81,172)"],[0.23718215923301375,"rgb(0,81,172)"],[0.23759899958315964,"rgb(0,81,172)"],[0.23801583993330555,"rgb(0,81,172)"],[0.23843268028345144,"rgb(0,81,172)"],[0.23884952063359732,"rgb(0,81,172)"],[0.23926636098374324,"rgb(0,82,172)"],[0.23968320133388912,"rgb(0,82,172)"],[0.240100041684035,"rgb(0,82,172)"],[0.2405168820341809,"rgb(0,82,172)"],[0.2409337223843268,"rgb(0,82,172)"],[0.2413505627344727,"rgb(0,82,172)"],[0.24176740308461858,"rgb(0,82,172)"],[0.2421842434347645,"rgb(0,83,172)"],[0.24260108378491038,"rgb(0,83,172)"],[0.24301792413505627,"rgb(0,83,172)"],[0.24343476448520215,"rgb(0,83,172)"],[0.24385160483534807,"rgb(0,83,172)"],[0.24426844518549395,"rgb(0,83,172)"],[0.24468528553563984,"rgb(0,84,172)"],[0.24510212588578575,"rgb(0,84,172)"],[0.24551896623593164,"rgb(0,84,172)"],[0.24593580658607753,"rgb(0,84,172)"],[0.2463526469362234,"rgb(0,84,172)"],[0.24676948728636933,"rgb(0,84,172)"],[0.2471863276365152,"rgb(0,85,172)"],[0.2476031679866611,"rgb(0,85,172)"],[0.248020008336807,"rgb(0,85,172)"],[0.2484368486869529,"rgb(0,85,172)"],[0.24885368903709879,"rgb(0,85,172)"],[0.24927052938724467,"rgb(0,85,172)"],[0.24968736973739059,"rgb(0,85,172)"],[0.25010421008753647,"rgb(0,86,172)"],[0.25052105043768236,"rgb(0,86,172)"],[0.25093789078782824,"rgb(0,86,172)"],[0.25135473113797413,"rgb(0,86,172)"],[0.25177157148812007,"rgb(0,86,172)"],[0.25218841183826596,"rgb(0,86,172)"],[0.25260525218841184,"rgb(0,87,172)"],[0.25302209253855773,"rgb(0,87,172)"],[0.2534389328887036,"rgb(0,87,172)"],[0.2538557732388495,"rgb(0,87,172)"],[0.2542726135889954,"rgb(0,87,172)"],[0.25468945393914133,"rgb(0,87,172)"],[0.2551062942892872,"rgb(0,88,172)"],[0.2555231346394331,"rgb(0,88,172)"],[0.255939974989579,"rgb(0,88,172)"],[0.2563568153397249,"rgb(0,88,172)"],[0.25677365568987076,"rgb(0,88,172)"],[0.25719049604001665,"rgb(0,88,172)"],[0.2576073363901626,"rgb(0,88,172)"],[0.2580241767403085,"rgb(0,89,172)"],[0.25844101709045436,"rgb(0,89,172)"],[0.25885785744060025,"rgb(0,89,172)"],[0.25927469779074613,"rgb(0,89,172)"],[0.259691538140892,"rgb(0,89,172)"],[0.2601083784910379,"rgb(0,89,172)"],[0.26052521884118385,"rgb(0,90,172)"],[0.26094205919132973,"rgb(0,90,172)"],[0.2613588995414756,"rgb(0,90,172)"],[0.2617757398916215,"rgb(0,90,172)"],[0.2621925802417674,"rgb(0,90,172)"],[0.2626094205919133,"rgb(0,90,172)"],[0.26302626094205916,"rgb(0,90,172)"],[0.2634431012922051,"rgb(0,91,172)"],[0.263859941642351,"rgb(0,91,172)"],[0.2642767819924969,"rgb(0,91,172)"],[0.26469362234264276,"rgb(0,91,172)"],[0.26511046269278865,"rgb(0,91,172)"],[0.26552730304293454,"rgb(0,91,172)"],[0.2659441433930804,"rgb(0,91,172)"],[0.26636098374322636,"rgb(0,92,172)"],[0.26677782409337225,"rgb(0,92,172)"],[0.26719466444351814,"rgb(0,92,172)"],[0.267611504793664,"rgb(0,92,172)"],[0.2680283451438099,"rgb(0,92,172)"],[0.2684451854939558,"rgb(0,92,172)"],[0.2688620258441017,"rgb(0,93,172)"],[0.2692788661942476,"rgb(0,93,172)"],[0.2696957065443935,"rgb(0,93,172)"],[0.2701125468945394,"rgb(0,93,172)"],[0.2705293872446853,"rgb(0,93,172)"],[0.27094622759483117,"rgb(0,93,172)"],[0.27136306794497705,"rgb(0,93,172)"],[0.27177990829512294,"rgb(0,94,172)"],[0.2721967486452689,"rgb(0,94,172)"],[0.27261358899541477,"rgb(0,94,172)"],[0.27303042934556065,"rgb(0,94,172)"],[0.27344726969570654,"rgb(0,94,172)"],[0.2738641100458524,"rgb(0,94,172)"],[0.2742809503959983,"rgb(0,94,172)"],[0.2746977907461442,"rgb(0,95,172)"],[0.27511463109629014,"rgb(0,95,172)"],[0.275531471446436,"rgb(0,95,172)"],[0.2759483117965819,"rgb(0,95,172)"],[0.2763651521467278,"rgb(0,95,172)"],[0.2767819924968737,"rgb(0,95,171)"],[0.27719883284701957,"rgb(0,95,171)"],[0.27761567319716546,"rgb(0,96,171)"],[0.2780325135473114,"rgb(0,96,171)"],[0.2784493538974573,"rgb(0,96,171)"],[0.27886619424760317,"rgb(0,96,171)"],[0.27928303459774906,"rgb(0,96,171)"],[0.27969987494789494,"rgb(0,96,171)"],[0.28011671529804083,"rgb(0,96,171)"],[0.28053355564818677,"rgb(0,97,171)"],[0.28095039599833266,"rgb(0,97,171)"],[0.28136723634847854,"rgb(0,97,171)"],[0.28178407669862443,"rgb(0,97,171)"],[0.2822009170487703,"rgb(0,97,171)"],[0.2826177573989162,"rgb(0,97,171)"],[0.2830345977490621,"rgb(0,97,171)"],[0.28345143809920803,"rgb(0,98,171)"],[0.2838682784493539,"rgb(0,98,171)"],[0.2842851187994998,"rgb(0,98,171)"],[0.2847019591496457,"rgb(0,98,171)"],[0.2851187994997916,"rgb(0,98,171)"],[0.28553563984993746,"rgb(0,98,171)"],[0.28595248020008335,"rgb(0,98,171)"],[0.2863693205502293,"rgb(0,99,171)"],[0.2867861609003752,"rgb(0,99,171)"],[0.28720300125052106,"rgb(0,99,171)"],[0.28761984160066695,"rgb(0,99,171)"],[0.28803668195081283,"rgb(0,99,171)"],[0.2884535223009587,"rgb(0,99,171)"],[0.2888703626511046,"rgb(0,99,171)"],[0.28928720300125055,"rgb(0,99,171)"],[0.28970404335139643,"rgb(0,100,171)"],[0.2901208837015423,"rgb(0,100,171)"],[0.2905377240516882,"rgb(0,100,171)"],[0.2909545644018341,"rgb(0,100,171)"],[0.29137140475198,"rgb(0,100,171)"],[0.29178824510212586,"rgb(0,100,171)"],[0.2922050854522718,"rgb(0,100,171)"],[0.2926219258024177,"rgb(0,101,171)"],[0.2930387661525636,"rgb(0,101,171)"],[0.29345560650270947,"rgb(0,101,171)"],[0.29387244685285535,"rgb(0,101,170)"],[0.29428928720300124,"rgb(0,101,170)"],[0.2947061275531471,"rgb(0,101,170)"],[0.29512296790329307,"rgb(0,101,170)"],[0.29553980825343895,"rgb(0,102,170)"],[0.29595664860358484,"rgb(0,102,170)"],[0.2963734889537307,"rgb(0,102,170)"],[0.2967903293038766,"rgb(0,102,170)"],[0.2972071696540225,"rgb(0,102,170)"],[0.2976240100041684,"rgb(0,102,170)"],[0.2980408503543143,"rgb(0,102,170)"],[0.2984576907044602,"rgb(0,102,170)"],[0.2988745310546061,"rgb(0,103,170)"],[0.299291371404752,"rgb(0,103,170)"],[0.29970821175489787,"rgb(0,103,170)"],[0.30012505210504375,"rgb(0,103,170)"],[0.30054189245518964,"rgb(0,103,170)"],[0.3009587328053356,"rgb(0,103,170)"],[0.30137557315548147,"rgb(0,103,170)"],[0.30179241350562735,"rgb(0,104,170)"],[0.30220925385577324,"rgb(0,104,170)"],[0.3026260942059191,"rgb(0,104,170)"],[0.303042934556065,"rgb(0,104,170)"],[0.3034597749062109,"rgb(0,104,170)"],[0.30387661525635684,"rgb(0,104,170)"],[0.3042934556065027,"rgb(0,104,170)"],[0.3047102959566486,"rgb(0,104,170)"],[0.3051271363067945,"rgb(0,105,170)"],[0.3055439766569404,"rgb(0,105,170)"],[0.30596081700708627,"rgb(0,105,170)"],[0.30637765735723216,"rgb(0,105,169)"],[0.3067944977073781,"rgb(0,105,169)"],[0.307211338057524,"rgb(0,105,169)"],[0.30762817840766987,"rgb(0,105,169)"],[0.30804501875781576,"rgb(0,105,169)"],[0.30846185910796164,"rgb(0,106,169)"],[0.30887869945810753,"rgb(0,106,169)"],[0.3092955398082534,"rgb(0,106,169)"],[0.30971238015839936,"rgb(0,106,169)"],[0.31012922050854524,"rgb(0,106,169)"],[0.31054606085869113,"rgb(0,106,169)"],[0.310962901208837,"rgb(0,106,169)"],[0.3113797415589829,"rgb(0,106,169)"],[0.3117965819091288,"rgb(0,107,169)"],[0.3122134222592747,"rgb(0,107,169)"],[0.3126302626094206,"rgb(0,107,169)"],[0.3130471029595665,"rgb(0,107,169)"],[0.3134639433097124,"rgb(0,107,169)"],[0.3138807836598583,"rgb(0,107,169)"],[0.31429762401000416,"rgb(0,107,169)"],[0.31471446436015005,"rgb(0,107,169)"],[0.31513130471029593,"rgb(0,108,169)"],[0.3155481450604419,"rgb(0,108,169)"],[0.31596498541058776,"rgb(0,108,169)"],[0.31638182576073365,"rgb(0,108,169)"],[0.31679866611087953,"rgb(0,108,168)"],[0.3172155064610254,"rgb(0,108,168)"],[0.3176323468111713,"rgb(0,108,168)"],[0.3180491871613172,"rgb(0,108,168)"],[0.31846602751146313,"rgb(0,109,168)"],[0.318882867861609,"rgb(0,109,168)"],[0.3192997082117549,"rgb(0,109,168)"],[0.3197165485619008,"rgb(0,109,168)"],[0.3201333889120467,"rgb(0,109,168)"],[0.32055022926219257,"rgb(0,109,168)"],[0.32096706961233845,"rgb(0,109,168)"],[0.3213839099624844,"rgb(0,109,168)"],[0.3218007503126303,"rgb(0,110,168)"],[0.32221759066277617,"rgb(0,110,168)"],[0.32263443101292205,"rgb(0,110,168)"],[0.32305127136306794,"rgb(0,110,168)"],[0.3234681117132138,"rgb(0,110,168)"],[0.3238849520633597,"rgb(0,110,168)"],[0.32430179241350565,"rgb(0,110,168)"],[0.32471863276365154,"rgb(0,110,168)"],[0.3251354731137974,"rgb(0,111,168)"],[0.3255523134639433,"rgb(0,111,168)"],[0.3259691538140892,"rgb(0,111,168)"],[0.3263859941642351,"rgb(0,111,167)"],[0.32680283451438097,"rgb(0,111,167)"],[0.3272196748645269,"rgb(0,111,167)"],[0.3276365152146728,"rgb(0,111,167)"],[0.3280533555648187,"rgb(0,111,167)"],[0.32847019591496457,"rgb(0,112,167)"],[0.32888703626511046,"rgb(0,112,167)"],[0.32930387661525634,"rgb(0,112,167)"],[0.3297207169654022,"rgb(0,112,167)"],[0.33013755731554817,"rgb(0,112,167)"],[0.33055439766569406,"rgb(0,112,167)"],[0.33097123801583994,"rgb(0,112,167)"],[0.3313880783659858,"rgb(0,112,167)"],[0.3318049187161317,"rgb(0,112,167)"],[0.3322217590662776,"rgb(0,113,167)"],[0.3326385994164235,"rgb(0,113,167)"],[0.3330554397665694,"rgb(0,113,167)"],[0.3334722801167153,"rgb(0,113,167)"],[0.3338891204668612,"rgb(0,113,167)"],[0.3343059608170071,"rgb(0,113,167)"],[0.334722801167153,"rgb(0,113,166)"],[0.33513964151729886,"rgb(0,113,166)"],[0.33555648186744474,"rgb(0,113,166)"],[0.3359733222175907,"rgb(0,114,166)"],[0.3363901625677366,"rgb(0,114,166)"],[0.33680700291788246,"rgb(0,114,166)"],[0.33722384326802834,"rgb(0,114,166)"],[0.33764068361817423,"rgb(0,114,166)"],[0.3380575239683201,"rgb(0,114,166)"],[0.338474364318466,"rgb(0,114,166)"],[0.33889120466861195,"rgb(0,114,166)"],[0.33930804501875783,"rgb(0,115,166)"],[0.3397248853689037,"rgb(0,115,166)"],[0.3401417257190496,"rgb(0,115,166)"],[0.3405585660691955,"rgb(0,115,166)"],[0.3409754064193414,"rgb(0,115,166)"],[0.34139224676948726,"rgb(0,115,166)"],[0.3418090871196332,"rgb(0,115,166)"],[0.3422259274697791,"rgb(0,115,165)"],[0.342642767819925,"rgb(0,115,165)"],[0.34305960817007086,"rgb(0,116,165)"],[0.34347644852021675,"rgb(0,116,165)"],[0.34389328887036263,"rgb(0,116,165)"],[0.3443101292205085,"rgb(0,116,165)"],[0.34472696957065446,"rgb(0,116,165)"],[0.34514380992080035,"rgb(0,116,165)"],[0.34556065027094623,"rgb(0,116,165)"],[0.3459774906210921,"rgb(0,116,165)"],[0.346394330971238,"rgb(0,116,165)"],[0.3468111713213839,"rgb(0,117,165)"],[0.3472280116715298,"rgb(0,117,165)"],[0.3476448520216757,"rgb(0,117,165)"],[0.3480616923718216,"rgb(0,117,165)"],[0.3484785327219675,"rgb(0,117,165)"],[0.3488953730721134,"rgb(0,117,165)"],[0.34931221342225927,"rgb(0,117,165)"],[0.34972905377240515,"rgb(0,117,164)"],[0.35014589412255104,"rgb(0,117,164)"],[0.350562734472697,"rgb(0,118,164)"],[0.35097957482284287,"rgb(0,118,164)"],[0.35139641517298875,"rgb(0,118,164)"],[0.35181325552313464,"rgb(0,118,164)"],[0.3522300958732805,"rgb(0,118,164)"],[0.3526469362234264,"rgb(0,118,164)"],[0.3530637765735723,"rgb(0,118,164)"],[0.35348061692371824,"rgb(0,118,164)"],[0.3538974572738641,"rgb(0,118,164)"],[0.35431429762401,"rgb(0,118,164)"],[0.3547311379741559,"rgb(0,119,164)"],[0.3551479783243018,"rgb(0,119,164)"],[0.35556481867444767,"rgb(0,119,164)"],[0.35598165902459356,"rgb(0,119,164)"],[0.3563984993747395,"rgb(0,119,163)"],[0.3568153397248854,"rgb(0,119,163)"],[0.35723218007503127,"rgb(0,119,163)"],[0.35764902042517716,"rgb(0,119,163)"],[0.35806586077532304,"rgb(0,119,163)"],[0.3584827011254689,"rgb(0,120,163)"],[0.3588995414756148,"rgb(0,120,163)"],[0.35931638182576076,"rgb(0,120,163)"],[0.35973322217590664,"rgb(0,120,163)"],[0.36015006252605253,"rgb(0,120,163)"],[0.3605669028761984,"rgb(0,120,163)"],[0.3609837432263443,"rgb(0,120,163)"],[0.3614005835764902,"rgb(0,120,163)"],[0.3618174239266361,"rgb(0,120,163)"],[0.362234264276782,"rgb(0,120,163)"],[0.3626511046269279,"rgb(0,121,162)"],[0.3630679449770738,"rgb(0,121,162)"],[0.3634847853272197,"rgb(0,121,162)"],[0.36390162567736556,"rgb(0,121,162)"],[0.36431846602751145,"rgb(0,121,162)"],[0.36473530637765733,"rgb(0,121,162)"],[0.3651521467278033,"rgb(0,121,162)"],[0.36556898707794916,"rgb(0,121,162)"],[0.36598582742809505,"rgb(0,121,162)"],[0.36640266777824093,"rgb(0,121,162)"],[0.3668195081283868,"rgb(0,122,162)"],[0.3672363484785327,"rgb(0,122,162)"],[0.3676531888286786,"rgb(0,122,162)"],[0.36807002917882453,"rgb(0,122,162)"],[0.3684868695289704,"rgb(0,122,162)"],[0.3689037098791163,"rgb(0,122,161)"],[0.3693205502292622,"rgb(0,122,161)"],[0.3697373905794081,"rgb(0,122,161)"],[0.37015423092955396,"rgb(0,122,161)"],[0.37057107127969985,"rgb(0,123,161)"],[0.3709879116298458,"rgb(0,123,161)"],[0.3714047519799917,"rgb(0,123,161)"],[0.37182159233013756,"rgb(0,123,161)"],[0.37223843268028345,"rgb(0,123,161)"],[0.37265527303042933,"rgb(0,123,161)"],[0.3730721133805752,"rgb(0,123,161)"],[0.3734889537307211,"rgb(0,123,161)"],[0.37390579408086705,"rgb(0,123,161)"],[0.37432263443101293,"rgb(0,123,161)"],[0.3747394747811588,"rgb(0,123,160)"],[0.3751563151313047,"rgb(0,124,160)"],[0.3755731554814506,"rgb(0,124,160)"],[0.3759899958315965,"rgb(0,124,160)"],[0.37640683618174237,"rgb(0,124,160)"],[0.3768236765318883,"rgb(0,124,160)"],[0.3772405168820342,"rgb(0,124,160)"],[0.3776573572321801,"rgb(0,124,160)"],[0.37807419758232597,"rgb(0,124,160)"],[0.37849103793247185,"rgb(0,124,160)"],[0.37890787828261774,"rgb(0,124,160)"],[0.3793247186327636,"rgb(0,125,160)"],[0.37974155898290957,"rgb(0,125,160)"],[0.38015839933305545,"rgb(0,125,159)"],[0.38057523968320134,"rgb(0,125,159)"],[0.3809920800333472,"rgb(0,125,159)"],[0.3814089203834931,"rgb(0,125,159)"],[0.381825760733639,"rgb(0,125,159)"],[0.3822426010837849,"rgb(0,125,159)"],[0.3826594414339308,"rgb(0,125,159)"],[0.3830762817840767,"rgb(0,125,159)"],[0.3834931221342226,"rgb(0,126,159)"],[0.3839099624843685,"rgb(0,126,159)"],[0.38432680283451437,"rgb(0,126,159)"],[0.38474364318466026,"rgb(0,126,159)"],[0.38516048353480614,"rgb(0,126,159)"],[0.3855773238849521,"rgb(0,126,158)"],[0.38599416423509797,"rgb(0,126,158)"],[0.38641100458524386,"rgb(0,126,158)"],[0.38682784493538974,"rgb(0,126,158)"],[0.38724468528553563,"rgb(0,126,158)"],[0.3876615256356815,"rgb(0,126,158)"],[0.3880783659858274,"rgb(0,127,158)"],[0.38849520633597334,"rgb(0,127,158)"],[0.38891204668611923,"rgb(0,127,158)"],[0.3893288870362651,"rgb(0,127,158)"],[0.389745727386411,"rgb(0,127,158)"],[0.3901625677365569,"rgb(0,127,158)"],[0.3905794080867028,"rgb(0,127,158)"],[0.3909962484368487,"rgb(0,127,157)"],[0.3914130887869946,"rgb(0,127,157)"],[0.3918299291371405,"rgb(0,127,157)"],[0.3922467694872864,"rgb(0,127,157)"],[0.39266360983743226,"rgb(0,128,157)"],[0.39308045018757815,"rgb(0,128,157)"],[0.39349729053772403,"rgb(0,128,157)"],[0.39391413088787,"rgb(0,128,157)"],[0.39433097123801586,"rgb(0,128,157)"],[0.39474781158816175,"rgb(0,128,157)"],[0.39516465193830763,"rgb(0,128,157)"],[0.3955814922884535,"rgb(0,128,157)"],[0.3959983326385994,"rgb(0,128,156)"],[0.3964151729887453,"rgb(0,128,156)"],[0.39683201333889123,"rgb(0,128,156)"],[0.3972488536890371,"rgb(0,129,156)"],[0.397665694039183,"rgb(0,129,156)"],[0.3980825343893289,"rgb(0,129,156)"],[0.3984993747394748,"rgb(0,129,156)"],[0.39891621508962066,"rgb(0,129,156)"],[0.39933305543976655,"rgb(0,129,156)"],[0.3997498957899125,"rgb(0,129,156)"],[0.4001667361400584,"rgb(0,129,156)"],[0.40058357649020426,"rgb(0,129,156)"],[0.40100041684035015,"rgb(0,129,155)"],[0.40141725719049604,"rgb(0,129,155)"],[0.4018340975406419,"rgb(0,130,155)"],[0.4022509378907878,"rgb(0,130,155)"],[0.40266777824093375,"rgb(0,130,155)"],[0.40308461859107964,"rgb(0,130,155)"],[0.4035014589412255,"rgb(0,130,155)"],[0.4039182992913714,"rgb(0,130,155)"],[0.4043351396415173,"rgb(0,130,155)"],[0.4047519799916632,"rgb(0,130,155)"],[0.40516882034180907,"rgb(0,130,155)"],[0.405585660691955,"rgb(0,130,154)"],[0.4060025010421009,"rgb(0,130,154)"],[0.4064193413922468,"rgb(0,130,154)"],[0.40683618174239267,"rgb(0,131,154)"],[0.40725302209253855,"rgb(0,131,154)"],[0.40766986244268444,"rgb(0,131,154)"],[0.4080867027928303,"rgb(0,131,154)"],[0.40850354314297627,"rgb(0,131,154)"],[0.40892038349312215,"rgb(0,131,154)"],[0.40933722384326804,"rgb(0,131,154)"],[0.4097540641934139,"rgb(0,131,154)"],[0.4101709045435598,"rgb(0,131,153)"],[0.4105877448937057,"rgb(0,131,153)"],[0.4110045852438516,"rgb(0,131,153)"],[0.4114214255939975,"rgb(0,131,153)"],[0.4118382659441434,"rgb(0,132,153)"],[0.4122551062942893,"rgb(0,132,153)"],[0.4126719466444352,"rgb(0,132,153)"],[0.41308878699458107,"rgb(0,132,153)"],[0.41350562734472696,"rgb(0,132,153)"],[0.41392246769487284,"rgb(0,132,153)"],[0.4143393080450188,"rgb(0,132,153)"],[0.41475614839516467,"rgb(0,132,152)"],[0.41517298874531056,"rgb(0,132,152)"],[0.41558982909545644,"rgb(0,132,152)"],[0.41600666944560233,"rgb(0,132,152)"],[0.4164235097957482,"rgb(0,132,152)"],[0.4168403501458941,"rgb(0,133,152)"],[0.41725719049604004,"rgb(0,133,152)"],[0.41767403084618593,"rgb(0,133,152)"],[0.4180908711963318,"rgb(0,133,152)"],[0.4185077115464777,"rgb(0,133,152)"],[0.4189245518966236,"rgb(0,133,152)"],[0.4193413922467695,"rgb(0,133,151)"],[0.41975823259691536,"rgb(0,133,151)"],[0.4201750729470613,"rgb(0,133,151)"],[0.4205919132972072,"rgb(0,133,151)"],[0.4210087536473531,"rgb(0,133,151)"],[0.42142559399749896,"rgb(0,133,151)"],[0.42184243434764485,"rgb(0,134,151)"],[0.42225927469779073,"rgb(0,134,151)"],[0.4226761150479366,"rgb(0,134,151)"],[0.42309295539808256,"rgb(0,134,151)"],[0.42350979574822845,"rgb(0,134,150)"],[0.42392663609837433,"rgb(0,134,150)"],[0.4243434764485202,"rgb(0,134,150)"],[0.4247603167986661,"rgb(0,134,150)"],[0.425177157148812,"rgb(0,134,150)"],[0.4255939974989579,"rgb(0,134,150)"],[0.4260108378491038,"rgb(0,134,150)"],[0.4264276781992497,"rgb(0,134,150)"],[0.4268445185493956,"rgb(0,134,150)"],[0.4272613588995415,"rgb(0,135,150)"],[0.42767819924968736,"rgb(0,135,150)"],[0.42809503959983325,"rgb(0,135,149)"],[0.42851187994997914,"rgb(0,135,149)"],[0.4289287203001251,"rgb(0,135,149)"],[0.42934556065027096,"rgb(0,135,149)"],[0.42976240100041685,"rgb(0,135,149)"],[0.43017924135056274,"rgb(0,135,149)"],[0.4305960817007086,"rgb(0,135,149)"],[0.4310129220508545,"rgb(1,135,149)"],[0.4314297624010004,"rgb(1,135,149)"],[0.43184660275114634,"rgb(1,135,149)"],[0.4322634431012922,"rgb(1,135,148)"],[0.4326802834514381,"rgb(1,136,148)"],[0.433097123801584,"rgb(1,136,148)"],[0.4335139641517299,"rgb(1,136,148)"],[0.43393080450187577,"rgb(1,136,148)"],[0.43434764485202165,"rgb(1,136,148)"],[0.4347644852021676,"rgb(1,136,148)"],[0.4351813255523135,"rgb(1,136,148)"],[0.43559816590245937,"rgb(1,136,148)"],[0.43601500625260525,"rgb(1,136,148)"],[0.43643184660275114,"rgb(1,136,147)"],[0.436848686952897,"rgb(1,136,147)"],[0.4372655273030429,"rgb(1,136,147)"],[0.43768236765318885,"rgb(1,136,147)"],[0.43809920800333474,"rgb(1,137,147)"],[0.4385160483534806,"rgb(1,137,147)"],[0.4389328887036265,"rgb(1,137,147)"],[0.4393497290537724,"rgb(1,137,147)"],[0.4397665694039183,"rgb(1,137,147)"],[0.44018340975406417,"rgb(1,137,146)"],[0.4406002501042101,"rgb(1,137,146)"],[0.441017090454356,"rgb(1,137,146)"],[0.4414339308045019,"rgb(1,137,146)"],[0.44185077115464777,"rgb(1,137,146)"],[0.44226761150479366,"rgb(1,137,146)"],[0.44268445185493954,"rgb(2,137,146)"],[0.44310129220508543,"rgb(2,137,146)"],[0.44351813255523137,"rgb(2,137,146)"],[0.44393497290537726,"rgb(2,138,146)"],[0.44435181325552314,"rgb(2,138,145)"],[0.44476865360566903,"rgb(2,138,145)"],[0.4451854939558149,"rgb(2,138,145)"],[0.4456023343059608,"rgb(2,138,145)"],[0.4460191746561067,"rgb(2,138,145)"],[0.44643601500625263,"rgb(2,138,145)"],[0.4468528553563985,"rgb(2,138,145)"],[0.4472696957065444,"rgb(2,138,145)"],[0.4476865360566903,"rgb(2,138,145)"],[0.4481033764068362,"rgb(2,138,144)"],[0.44852021675698206,"rgb(2,138,144)"],[0.44893705710712795,"rgb(2,138,144)"],[0.4493538974572739,"rgb(2,138,144)"],[0.4497707378074198,"rgb(2,139,144)"],[0.45018757815756566,"rgb(2,139,144)"],[0.45060441850771155,"rgb(2,139,144)"],[0.45102125885785743,"rgb(3,139,144)"],[0.4514380992080033,"rgb(3,139,144)"],[0.4518549395581492,"rgb(3,139,144)"],[0.45227177990829515,"rgb(3,139,143)"],[0.45268862025844103,"rgb(3,139,143)"],[0.4531054606085869,"rgb(3,139,143)"],[0.4535223009587328,"rgb(3,139,143)"],[0.4539391413088787,"rgb(3,139,143)"],[0.4543559816590246,"rgb(3,139,143)"],[0.45477282200917046,"rgb(3,139,143)"],[0.4551896623593164,"rgb(3,139,143)"],[0.4556065027094623,"rgb(3,140,143)"],[0.4560233430596082,"rgb(3,140,142)"],[0.45644018340975406,"rgb(3,140,142)"],[0.45685702375989995,"rgb(3,140,142)"],[0.45727386411004584,"rgb(3,140,142)"],[0.4576907044601917,"rgb(4,140,142)"],[0.45810754481033766,"rgb(4,140,142)"],[0.45852438516048355,"rgb(4,140,142)"],[0.45894122551062944,"rgb(4,140,142)"],[0.4593580658607753,"rgb(4,140,142)"],[0.4597749062109212,"rgb(4,140,141)"],[0.4601917465610671,"rgb(4,140,141)"],[0.460608586911213,"rgb(4,140,141)"],[0.4610254272613589,"rgb(4,140,141)"],[0.4614422676115048,"rgb(4,140,141)"],[0.4618591079616507,"rgb(4,141,141)"],[0.4622759483117966,"rgb(4,141,141)"],[0.46269278866194247,"rgb(4,141,141)"],[0.46310962901208835,"rgb(5,141,141)"],[0.46352646936223424,"rgb(5,141,140)"],[0.4639433097123802,"rgb(5,141,140)"],[0.46436015006252607,"rgb(5,141,140)"],[0.46477699041267195,"rgb(5,141,140)"],[0.46519383076281784,"rgb(5,141,140)"],[0.4656106711129637,"rgb(5,141,140)"],[0.4660275114631096,"rgb(5,141,140)"],[0.4664443518132555,"rgb(5,141,140)"],[0.46686119216340144,"rgb(5,141,140)"],[0.4672780325135473,"rgb(5,141,139)"],[0.4676948728636932,"rgb(5,141,139)"],[0.4681117132138391,"rgb(6,142,139)"],[0.468528553563985,"rgb(6,142,139)"],[0.46894539391413087,"rgb(6,142,139)"],[0.46936223426427676,"rgb(6,142,139)"],[0.4697790746144227,"rgb(6,142,139)"],[0.4701959149645686,"rgb(6,142,139)"],[0.47061275531471447,"rgb(6,142,138)"],[0.47102959566486036,"rgb(6,142,138)"],[0.47144643601500624,"rgb(6,142,138)"],[0.47186327636515213,"rgb(6,142,138)"],[0.472280116715298,"rgb(6,142,138)"],[0.47269695706544396,"rgb(7,142,138)"],[0.47311379741558984,"rgb(7,142,138)"],[0.47353063776573573,"rgb(7,142,138)"],[0.4739474781158816,"rgb(7,142,138)"],[0.4743643184660275,"rgb(7,142,137)"],[0.4747811588161734,"rgb(7,143,137)"],[0.4751979991663193,"rgb(7,143,137)"],[0.4756148395164652,"rgb(7,143,137)"],[0.4760316798666111,"rgb(7,143,137)"],[0.476448520216757,"rgb(7,143,137)"],[0.4768653605669029,"rgb(8,143,137)"],[0.47728220091704876,"rgb(8,143,137)"],[0.47769904126719465,"rgb(8,143,136)"],[0.47811588161734053,"rgb(8,143,136)"],[0.4785327219674865,"rgb(8,143,136)"],[0.47894956231763236,"rgb(8,143,136)"],[0.47936640266777825,"rgb(8,143,136)"],[0.47978324301792413,"rgb(8,143,136)"],[0.48020008336807,"rgb(8,143,136)"],[0.4806169237182159,"rgb(9,143,136)"],[0.4810337640683618,"rgb(9,143,136)"],[0.48145060441850773,"rgb(9,144,135)"],[0.4818674447686536,"rgb(9,144,135)"],[0.4822842851187995,"rgb(9,144,135)"],[0.4827011254689454,"rgb(9,144,135)"],[0.4831179658190913,"rgb(9,144,135)"],[0.48353480616923716,"rgb(9,144,135)"],[0.48395164651938305,"rgb(9,144,135)"],[0.484368486869529,"rgb(10,144,135)"],[0.4847853272196749,"rgb(10,144,134)"],[0.48520216756982076,"rgb(10,144,134)"],[0.48561900791996665,"rgb(10,144,134)"],[0.48603584827011254,"rgb(10,144,134)"],[0.4864526886202584,"rgb(10,144,134)"],[0.4868695289704043,"rgb(10,144,134)"],[0.48728636932055025,"rgb(10,144,134)"],[0.48770320967069614,"rgb(10,144,134)"],[0.488120050020842,"rgb(11,144,134)"],[0.4885368903709879,"rgb(11,145,133)"],[0.4889537307211338,"rgb(11,145,133)"],[0.4893705710712797,"rgb(11,145,133)"],[0.48978741142142557,"rgb(11,145,133)"],[0.4902042517715715,"rgb(11,145,133)"],[0.4906210921217174,"rgb(11,145,133)"],[0.4910379324718633,"rgb(11,145,133)"],[0.49145477282200917,"rgb(12,145,133)"],[0.49187161317215505,"rgb(12,145,132)"],[0.49228845352230094,"rgb(12,145,132)"],[0.4927052938724468,"rgb(12,145,132)"],[0.49312213422259277,"rgb(12,145,132)"],[0.49353897457273865,"rgb(12,145,132)"],[0.49395581492288454,"rgb(12,145,132)"],[0.4943726552730304,"rgb(13,145,132)"],[0.4947894956231763,"rgb(13,145,132)"],[0.4952063359733222,"rgb(13,145,131)"],[0.4956231763234681,"rgb(13,146,131)"],[0.496040016673614,"rgb(13,146,131)"],[0.4964568570237599,"rgb(13,146,131)"],[0.4968736973739058,"rgb(13,146,131)"],[0.4972905377240517,"rgb(13,146,131)"],[0.49770737807419757,"rgb(14,146,131)"],[0.49812421842434346,"rgb(14,146,131)"],[0.49854105877448934,"rgb(14,146,130)"],[0.4989578991246353,"rgb(14,146,130)"],[0.49937473947478117,"rgb(14,146,130)"],[0.49979157982492706,"rgb(14,146,130)"],[0.5002084201750729,"rgb(14,146,130)"],[0.5006252605252188,"rgb(15,146,130)"],[0.5010421008753647,"rgb(15,146,130)"],[0.5014589412255106,"rgb(15,146,130)"],[0.5018757815756565,"rgb(15,146,129)"],[0.5022926219258024,"rgb(15,146,129)"],[0.5027094622759483,"rgb(15,146,129)"],[0.5031263026260943,"rgb(15,147,129)"],[0.5035431429762401,"rgb(16,147,129)"],[0.503959983326386,"rgb(16,147,129)"],[0.5043768236765319,"rgb(16,147,129)"],[0.5047936640266778,"rgb(16,147,129)"],[0.5052105043768237,"rgb(16,147,128)"],[0.5056273447269696,"rgb(16,147,128)"],[0.5060441850771155,"rgb(16,147,128)"],[0.5064610254272613,"rgb(17,147,128)"],[0.5068778657774072,"rgb(17,147,128)"],[0.5072947061275531,"rgb(17,147,128)"],[0.507711546477699,"rgb(17,147,128)"],[0.5081283868278449,"rgb(17,147,128)"],[0.5085452271779908,"rgb(17,147,127)"],[0.5089620675281368,"rgb(17,147,127)"],[0.5093789078782827,"rgb(18,147,127)"],[0.5097957482284285,"rgb(18,147,127)"],[0.5102125885785744,"rgb(18,147,127)"],[0.5106294289287203,"rgb(18,147,127)"],[0.5110462692788662,"rgb(18,148,127)"],[0.5114631096290121,"rgb(18,148,127)"],[0.511879949979158,"rgb(19,148,126)"],[0.5122967903293039,"rgb(19,148,126)"],[0.5127136306794498,"rgb(19,148,126)"],[0.5131304710295956,"rgb(19,148,126)"],[0.5135473113797415,"rgb(19,148,126)"],[0.5139641517298874,"rgb(19,148,126)"],[0.5143809920800333,"rgb(19,148,126)"],[0.5147978324301793,"rgb(20,148,126)"],[0.5152146727803252,"rgb(20,148,125)"],[0.5156315131304711,"rgb(20,148,125)"],[0.516048353480617,"rgb(20,148,125)"],[0.5164651938307628,"rgb(20,148,125)"],[0.5168820341809087,"rgb(20,148,125)"],[0.5172988745310546,"rgb(21,148,125)"],[0.5177157148812005,"rgb(21,148,125)"],[0.5181325552313464,"rgb(21,148,125)"],[0.5185493955814923,"rgb(21,148,124)"],[0.5189662359316382,"rgb(21,149,124)"],[0.519383076281784,"rgb(21,149,124)"],[0.5197999166319299,"rgb(22,149,124)"],[0.5202167569820758,"rgb(22,149,124)"],[0.5206335973322218,"rgb(22,149,124)"],[0.5210504376823677,"rgb(22,149,124)"],[0.5214672780325136,"rgb(22,149,124)"],[0.5218841183826595,"rgb(22,149,123)"],[0.5223009587328054,"rgb(23,149,123)"],[0.5227177990829512,"rgb(23,149,123)"],[0.5231346394330971,"rgb(23,149,123)"],[0.523551479783243,"rgb(23,149,123)"],[0.5239683201333889,"rgb(23,149,123)"],[0.5243851604835348,"rgb(23,149,123)"],[0.5248020008336807,"rgb(24,149,123)"],[0.5252188411838266,"rgb(24,149,122)"],[0.5256356815339724,"rgb(24,149,122)"],[0.5260525218841183,"rgb(24,149,122)"],[0.5264693622342643,"rgb(24,149,122)"],[0.5268862025844102,"rgb(24,149,122)"],[0.5273030429345561,"rgb(25,150,122)"],[0.527719883284702,"rgb(25,150,122)"],[0.5281367236348479,"rgb(25,150,122)"],[0.5285535639849938,"rgb(25,150,121)"],[0.5289704043351396,"rgb(25,150,121)"],[0.5293872446852855,"rgb(25,150,121)"],[0.5298040850354314,"rgb(26,150,121)"],[0.5302209253855773,"rgb(26,150,121)"],[0.5306377657357232,"rgb(26,150,121)"],[0.5310546060858691,"rgb(26,150,121)"],[0.531471446436015,"rgb(26,150,120)"],[0.5318882867861608,"rgb(27,150,120)"],[0.5323051271363068,"rgb(27,150,120)"],[0.5327219674864527,"rgb(27,150,120)"],[0.5331388078365986,"rgb(27,150,120)"],[0.5335556481867445,"rgb(27,150,120)"],[0.5339724885368904,"rgb(27,150,120)"],[0.5343893288870363,"rgb(28,150,120)"],[0.5348061692371822,"rgb(28,150,119)"],[0.535223009587328,"rgb(28,150,119)"],[0.5356398499374739,"rgb(28,150,119)"],[0.5360566902876198,"rgb(28,151,119)"],[0.5364735306377657,"rgb(28,151,119)"],[0.5368903709879116,"rgb(29,151,119)"],[0.5373072113380575,"rgb(29,151,119)"],[0.5377240516882034,"rgb(29,151,119)"],[0.5381408920383494,"rgb(29,151,118)"],[0.5385577323884952,"rgb(29,151,118)"],[0.5389745727386411,"rgb(30,151,118)"],[0.539391413088787,"rgb(30,151,118)"],[0.5398082534389329,"rgb(30,151,118)"],[0.5402250937890788,"rgb(30,151,118)"],[0.5406419341392247,"rgb(30,151,118)"],[0.5410587744893706,"rgb(30,151,118)"],[0.5414756148395165,"rgb(31,151,117)"],[0.5418924551896623,"rgb(31,151,117)"],[0.5423092955398082,"rgb(31,151,117)"],[0.5427261358899541,"rgb(31,151,117)"],[0.5431429762401,"rgb(31,151,117)"],[0.5435598165902459,"rgb(32,151,117)"],[0.5439766569403919,"rgb(32,151,117)"],[0.5443934972905378,"rgb(32,151,117)"],[0.5448103376406837,"rgb(32,151,116)"],[0.5452271779908295,"rgb(32,152,116)"],[0.5456440183409754,"rgb(32,152,116)"],[0.5460608586911213,"rgb(33,152,116)"],[0.5464776990412672,"rgb(33,152,116)"],[0.5468945393914131,"rgb(33,152,116)"],[0.547311379741559,"rgb(33,152,116)"],[0.5477282200917049,"rgb(33,152,115)"],[0.5481450604418507,"rgb(34,152,115)"],[0.5485619007919966,"rgb(34,152,115)"],[0.5489787411421425,"rgb(34,152,115)"],[0.5493955814922884,"rgb(34,152,115)"],[0.5498124218424344,"rgb(34,152,115)"],[0.5502292621925803,"rgb(35,152,115)"],[0.5506461025427262,"rgb(35,152,115)"],[0.551062942892872,"rgb(35,152,114)"],[0.5514797832430179,"rgb(35,152,114)"],[0.5518966235931638,"rgb(35,152,114)"],[0.5523134639433097,"rgb(35,152,114)"],[0.5527303042934556,"rgb(36,152,114)"],[0.5531471446436015,"rgb(36,152,114)"],[0.5535639849937474,"rgb(36,152,114)"],[0.5539808253438933,"rgb(36,152,114)"],[0.5543976656940391,"rgb(36,152,113)"],[0.554814506044185,"rgb(37,153,113)"],[0.5552313463943309,"rgb(37,153,113)"],[0.5556481867444769,"rgb(37,153,113)"],[0.5560650270946228,"rgb(37,153,113)"],[0.5564818674447687,"rgb(37,153,113)"],[0.5568987077949146,"rgb(38,153,113)"],[0.5573155481450605,"rgb(38,153,113)"],[0.5577323884952063,"rgb(38,153,112)"],[0.5581492288453522,"rgb(38,153,112)"],[0.5585660691954981,"rgb(38,153,112)"],[0.558982909545644,"rgb(39,153,112)"],[0.5593997498957899,"rgb(39,153,112)"],[0.5598165902459358,"rgb(39,153,112)"],[0.5602334305960817,"rgb(39,153,112)"],[0.5606502709462275,"rgb(39,153,111)"],[0.5610671112963735,"rgb(39,153,111)"],[0.5614839516465194,"rgb(40,153,111)"],[0.5619007919966653,"rgb(40,153,111)"],[0.5623176323468112,"rgb(40,153,111)"],[0.5627344726969571,"rgb(40,153,111)"],[0.563151313047103,"rgb(40,153,111)"],[0.5635681533972489,"rgb(41,153,111)"],[0.5639849937473947,"rgb(41,153,110)"],[0.5644018340975406,"rgb(41,153,110)"],[0.5648186744476865,"rgb(41,153,110)"],[0.5652355147978324,"rgb(41,154,110)"],[0.5656523551479783,"rgb(42,154,110)"],[0.5660691954981242,"rgb(42,154,110)"],[0.5664860358482701,"rgb(42,154,110)"],[0.5669028761984161,"rgb(42,154,110)"],[0.567319716548562,"rgb(42,154,109)"],[0.5677365568987078,"rgb(43,154,109)"],[0.5681533972488537,"rgb(43,154,109)"],[0.5685702375989996,"rgb(43,154,109)"],[0.5689870779491455,"rgb(43,154,109)"],[0.5694039182992914,"rgb(43,154,109)"],[0.5698207586494373,"rgb(44,154,109)"],[0.5702375989995832,"rgb(44,154,109)"],[0.570654439349729,"rgb(44,154,108)"],[0.5710712796998749,"rgb(44,154,108)"],[0.5714881200500208,"rgb(44,154,108)"],[0.5719049604001667,"rgb(45,154,108)"],[0.5723218007503126,"rgb(45,154,108)"],[0.5727386411004586,"rgb(45,154,108)"],[0.5731554814506045,"rgb(45,154,108)"],[0.5735723218007504,"rgb(45,154,108)"],[0.5739891621508962,"rgb(46,154,107)"],[0.5744060025010421,"rgb(46,154,107)"],[0.574822842851188,"rgb(46,154,107)"],[0.5752396832013339,"rgb(46,154,107)"],[0.5756565235514798,"rgb(46,155,107)"],[0.5760733639016257,"rgb(47,155,107)"],[0.5764902042517716,"rgb(47,155,107)"],[0.5769070446019174,"rgb(47,155,107)"],[0.5773238849520633,"rgb(47,155,106)"],[0.5777407253022092,"rgb(47,155,106)"],[0.5781575656523551,"rgb(48,155,106)"],[0.5785744060025011,"rgb(48,155,106)"],[0.578991246352647,"rgb(48,155,106)"],[0.5794080867027929,"rgb(48,155,106)"],[0.5798249270529388,"rgb(48,155,106)"],[0.5802417674030846,"rgb(49,155,106)"],[0.5806586077532305,"rgb(49,155,105)"],[0.5810754481033764,"rgb(49,155,105)"],[0.5814922884535223,"rgb(49,155,105)"],[0.5819091288036682,"rgb(49,155,105)"],[0.5823259691538141,"rgb(50,155,105)"],[0.58274280950396,"rgb(50,155,105)"],[0.5831596498541058,"rgb(50,155,105)"],[0.5835764902042517,"rgb(50,155,105)"],[0.5839933305543976,"rgb(50,155,104)"],[0.5844101709045436,"rgb(51,155,104)"],[0.5848270112546895,"rgb(51,155,104)"],[0.5852438516048354,"rgb(51,155,104)"],[0.5856606919549813,"rgb(51,155,104)"],[0.5860775323051272,"rgb(51,155,104)"],[0.586494372655273,"rgb(52,155,104)"],[0.5869112130054189,"rgb(52,155,104)"],[0.5873280533555648,"rgb(52,156,103)"],[0.5877448937057107,"rgb(52,156,103)"],[0.5881617340558566,"rgb(52,156,103)"],[0.5885785744060025,"rgb(53,156,103)"],[0.5889954147561484,"rgb(53,156,103)"],[0.5894122551062942,"rgb(53,156,103)"],[0.5898290954564401,"rgb(53,156,103)"],[0.5902459358065861,"rgb(53,156,103)"],[0.590662776156732,"rgb(54,156,102)"],[0.5910796165068779,"rgb(54,156,102)"],[0.5914964568570238,"rgb(54,156,102)"],[0.5919132972071697,"rgb(54,156,102)"],[0.5923301375573156,"rgb(54,156,102)"],[0.5927469779074614,"rgb(55,156,102)"],[0.5931638182576073,"rgb(55,156,102)"],[0.5935806586077532,"rgb(55,156,102)"],[0.5939974989578991,"rgb(55,156,101)"],[0.594414339308045,"rgb(55,156,101)"],[0.5948311796581909,"rgb(56,156,101)"],[0.5952480200083368,"rgb(56,156,101)"],[0.5956648603584827,"rgb(56,156,101)"],[0.5960817007086286,"rgb(56,156,101)"],[0.5964985410587745,"rgb(56,156,101)"],[0.5969153814089204,"rgb(57,156,101)"],[0.5973322217590663,"rgb(57,156,100)"],[0.5977490621092122,"rgb(57,156,100)"],[0.5981659024593581,"rgb(57,156,100)"],[0.598582742809504,"rgb(57,156,100)"],[0.5989995831596499,"rgb(58,156,100)"],[0.5994164235097957,"rgb(58,156,100)"],[0.5998332638599416,"rgb(58,157,100)"],[0.6002501042100875,"rgb(58,157,100)"],[0.6006669445602334,"rgb(58,157,100)"],[0.6010837849103793,"rgb(59,157,99)"],[0.6015006252605252,"rgb(59,157,99)"],[0.6019174656106712,"rgb(59,157,99)"],[0.602334305960817,"rgb(59,157,99)"],[0.6027511463109629,"rgb(59,157,99)"],[0.6031679866611088,"rgb(60,157,99)"],[0.6035848270112547,"rgb(60,157,99)"],[0.6040016673614006,"rgb(60,157,99)"],[0.6044185077115465,"rgb(60,157,98)"],[0.6048353480616924,"rgb(60,157,98)"],[0.6052521884118383,"rgb(61,157,98)"],[0.6056690287619841,"rgb(61,157,98)"],[0.60608586911213,"rgb(61,157,98)"],[0.6065027094622759,"rgb(61,157,98)"],[0.6069195498124218,"rgb(61,157,98)"],[0.6073363901625677,"rgb(62,157,98)"],[0.6077532305127137,"rgb(62,157,98)"],[0.6081700708628596,"rgb(62,157,97)"],[0.6085869112130055,"rgb(62,157,97)"],[0.6090037515631513,"rgb(62,157,97)"],[0.6094205919132972,"rgb(63,157,97)"],[0.6098374322634431,"rgb(63,157,97)"],[0.610254272613589,"rgb(63,157,97)"],[0.6106711129637349,"rgb(63,157,97)"],[0.6110879533138808,"rgb(63,157,97)"],[0.6115047936640267,"rgb(64,157,96)"],[0.6119216340141725,"rgb(64,157,96)"],[0.6123384743643184,"rgb(64,157,96)"],[0.6127553147144643,"rgb(64,157,96)"],[0.6131721550646102,"rgb(64,158,96)"],[0.6135889954147562,"rgb(65,158,96)"],[0.6140058357649021,"rgb(65,158,96)"],[0.614422676115048,"rgb(65,158,96)"],[0.6148395164651939,"rgb(65,158,96)"],[0.6152563568153397,"rgb(65,158,95)"],[0.6156731971654856,"rgb(66,158,95)"],[0.6160900375156315,"rgb(66,158,95)"],[0.6165068778657774,"rgb(66,158,95)"],[0.6169237182159233,"rgb(66,158,95)"],[0.6173405585660692,"rgb(66,158,95)"],[0.6177573989162151,"rgb(67,158,95)"],[0.618174239266361,"rgb(67,158,95)"],[0.6185910796165068,"rgb(67,158,95)"],[0.6190079199666527,"rgb(67,158,94)"],[0.6194247603167987,"rgb(67,158,94)"],[0.6198416006669446,"rgb(68,158,94)"],[0.6202584410170905,"rgb(68,158,94)"],[0.6206752813672364,"rgb(68,158,94)"],[0.6210921217173823,"rgb(68,158,94)"],[0.6215089620675281,"rgb(68,158,94)"],[0.621925802417674,"rgb(69,158,94)"],[0.6223426427678199,"rgb(69,158,93)"],[0.6227594831179658,"rgb(69,158,93)"],[0.6231763234681117,"rgb(69,158,93)"],[0.6235931638182576,"rgb(69,158,93)"],[0.6240100041684035,"rgb(70,158,93)"],[0.6244268445185494,"rgb(70,158,93)"],[0.6248436848686952,"rgb(70,158,93)"],[0.6252605252188412,"rgb(70,158,93)"],[0.6256773655689871,"rgb(70,158,93)"],[0.626094205919133,"rgb(71,158,92)"],[0.6265110462692789,"rgb(71,158,92)"],[0.6269278866194248,"rgb(71,158,92)"],[0.6273447269695707,"rgb(71,158,92)"],[0.6277615673197166,"rgb(71,159,92)"],[0.6281784076698624,"rgb(72,159,92)"],[0.6285952480200083,"rgb(72,159,92)"],[0.6290120883701542,"rgb(72,159,92)"],[0.6294289287203001,"rgb(72,159,92)"],[0.629845769070446,"rgb(72,159,92)"],[0.6302626094205919,"rgb(73,159,91)"],[0.6306794497707378,"rgb(73,159,91)"],[0.6310962901208838,"rgb(73,159,91)"],[0.6315131304710296,"rgb(73,159,91)"],[0.6319299708211755,"rgb(73,159,91)"],[0.6323468111713214,"rgb(74,159,91)"],[0.6327636515214673,"rgb(74,159,91)"],[0.6331804918716132,"rgb(74,159,91)"],[0.6335973322217591,"rgb(74,159,91)"],[0.634014172571905,"rgb(74,159,90)"],[0.6344310129220508,"rgb(75,159,90)"],[0.6348478532721967,"rgb(75,159,90)"],[0.6352646936223426,"rgb(75,159,90)"],[0.6356815339724885,"rgb(75,159,90)"],[0.6360983743226344,"rgb(75,159,90)"],[0.6365152146727803,"rgb(76,159,90)"],[0.6369320550229263,"rgb(76,159,90)"],[0.6373488953730722,"rgb(76,159,90)"],[0.637765735723218,"rgb(76,159,89)"],[0.6381825760733639,"rgb(76,159,89)"],[0.6385994164235098,"rgb(77,159,89)"],[0.6390162567736557,"rgb(77,159,89)"],[0.6394330971238016,"rgb(77,159,89)"],[0.6398499374739475,"rgb(77,159,89)"],[0.6402667778240934,"rgb(77,159,89)"],[0.6406836181742392,"rgb(78,159,89)"],[0.6411004585243851,"rgb(78,159,89)"],[0.641517298874531,"rgb(78,159,89)"],[0.6419341392246769,"rgb(78,159,88)"],[0.6423509795748228,"rgb(78,159,88)"],[0.6427678199249688,"rgb(79,159,88)"],[0.6431846602751147,"rgb(79,159,88)"],[0.6436015006252606,"rgb(79,159,88)"],[0.6440183409754064,"rgb(79,160,88)"],[0.6444351813255523,"rgb(79,160,88)"],[0.6448520216756982,"rgb(80,160,88)"],[0.6452688620258441,"rgb(80,160,88)"],[0.64568570237599,"rgb(80,160,88)"],[0.6461025427261359,"rgb(80,160,87)"],[0.6465193830762818,"rgb(80,160,87)"],[0.6469362234264276,"rgb(81,160,87)"],[0.6473530637765735,"rgb(81,160,87)"],[0.6477699041267194,"rgb(81,160,87)"],[0.6481867444768653,"rgb(81,160,87)"],[0.6486035848270113,"rgb(81,160,87)"],[0.6490204251771572,"rgb(81,160,87)"],[0.6494372655273031,"rgb(82,160,87)"],[0.649854105877449,"rgb(82,160,87)"],[0.6502709462275948,"rgb(82,160,86)"],[0.6506877865777407,"rgb(82,160,86)"],[0.6511046269278866,"rgb(82,160,86)"],[0.6515214672780325,"rgb(83,160,86)"],[0.6519383076281784,"rgb(83,160,86)"],[0.6523551479783243,"rgb(83,160,86)"],[0.6527719883284702,"rgb(83,160,86)"],[0.653188828678616,"rgb(83,160,86)"],[0.6536056690287619,"rgb(84,160,86)"],[0.6540225093789078,"rgb(84,160,86)"],[0.6544393497290538,"rgb(84,160,85)"],[0.6548561900791997,"rgb(84,160,85)"],[0.6552730304293456,"rgb(84,160,85)"],[0.6556898707794915,"rgb(85,160,85)"],[0.6561067111296374,"rgb(85,160,85)"],[0.6565235514797833,"rgb(85,160,85)"],[0.6569403918299291,"rgb(85,160,85)"],[0.657357232180075,"rgb(85,160,85)"],[0.6577740725302209,"rgb(86,160,85)"],[0.6581909128803668,"rgb(86,160,85)"],[0.6586077532305127,"rgb(86,160,85)"],[0.6590245935806586,"rgb(86,160,84)"],[0.6594414339308045,"rgb(86,160,84)"],[0.6598582742809503,"rgb(87,160,84)"],[0.6602751146310963,"rgb(87,160,84)"],[0.6606919549812422,"rgb(87,160,84)"],[0.6611087953313881,"rgb(87,160,84)"],[0.661525635681534,"rgb(87,160,84)"],[0.6619424760316799,"rgb(87,160,84)"],[0.6623593163818258,"rgb(88,161,84)"],[0.6627761567319717,"rgb(88,161,84)"],[0.6631929970821175,"rgb(88,161,83)"],[0.6636098374322634,"rgb(88,161,83)"],[0.6640266777824093,"rgb(88,161,83)"],[0.6644435181325552,"rgb(89,161,83)"],[0.6648603584827011,"rgb(89,161,83)"],[0.665277198832847,"rgb(89,161,83)"],[0.6656940391829929,"rgb(89,161,83)"],[0.6661108795331389,"rgb(89,161,83)"],[0.6665277198832847,"rgb(90,161,83)"],[0.6669445602334306,"rgb(90,161,83)"],[0.6673614005835765,"rgb(90,161,83)"],[0.6677782409337224,"rgb(90,161,83)"],[0.6681950812838683,"rgb(90,161,82)"],[0.6686119216340142,"rgb(90,161,82)"],[0.6690287619841601,"rgb(91,161,82)"],[0.669445602334306,"rgb(91,161,82)"],[0.6698624426844518,"rgb(91,161,82)"],[0.6702792830345977,"rgb(91,161,82)"],[0.6706961233847436,"rgb(91,161,82)"],[0.6711129637348895,"rgb(92,161,82)"],[0.6715298040850355,"rgb(92,161,82)"],[0.6719466444351814,"rgb(92,161,82)"],[0.6723634847853273,"rgb(92,161,82)"],[0.6727803251354731,"rgb(92,161,81)"],[0.673197165485619,"rgb(93,161,81)"],[0.6736140058357649,"rgb(93,161,81)"],[0.6740308461859108,"rgb(93,161,81)"],[0.6744476865360567,"rgb(93,161,81)"],[0.6748645268862026,"rgb(93,161,81)"],[0.6752813672363485,"rgb(93,161,81)"],[0.6756982075864943,"rgb(94,161,81)"],[0.6761150479366402,"rgb(94,161,81)"],[0.6765318882867861,"rgb(94,161,81)"],[0.676948728636932,"rgb(94,161,81)"],[0.677365568987078,"rgb(94,161,81)"],[0.6777824093372239,"rgb(95,161,80)"],[0.6781992496873698,"rgb(95,161,80)"],[0.6786160900375157,"rgb(95,161,80)"],[0.6790329303876615,"rgb(95,161,80)"],[0.6794497707378074,"rgb(95,161,80)"],[0.6798666110879533,"rgb(96,161,80)"],[0.6802834514380992,"rgb(96,161,80)"],[0.6807002917882451,"rgb(96,161,80)"],[0.681117132138391,"rgb(96,161,80)"],[0.6815339724885369,"rgb(96,161,80)"],[0.6819508128386828,"rgb(96,161,80)"],[0.6823676531888286,"rgb(97,161,80)"],[0.6827844935389745,"rgb(97,161,80)"],[0.6832013338891205,"rgb(97,161,79)"],[0.6836181742392664,"rgb(97,161,79)"],[0.6840350145894123,"rgb(97,162,79)"],[0.6844518549395582,"rgb(98,162,79)"],[0.6848686952897041,"rgb(98,162,79)"],[0.68528553563985,"rgb(98,162,79)"],[0.6857023759899958,"rgb(98,162,79)"],[0.6861192163401417,"rgb(98,162,79)"],[0.6865360566902876,"rgb(98,162,79)"],[0.6869528970404335,"rgb(99,162,79)"],[0.6873697373905794,"rgb(99,162,79)"],[0.6877865777407253,"rgb(99,162,79)"],[0.6882034180908712,"rgb(99,162,79)"],[0.688620258441017,"rgb(99,162,78)"],[0.689037098791163,"rgb(100,162,78)"],[0.6894539391413089,"rgb(100,162,78)"],[0.6898707794914548,"rgb(100,162,78)"],[0.6902876198416007,"rgb(100,162,78)"],[0.6907044601917466,"rgb(100,162,78)"],[0.6911213005418925,"rgb(100,162,78)"],[0.6915381408920384,"rgb(101,162,78)"],[0.6919549812421842,"rgb(101,162,78)"],[0.6923718215923301,"rgb(101,162,78)"],[0.692788661942476,"rgb(101,162,78)"],[0.6932055022926219,"rgb(101,162,78)"],[0.6936223426427678,"rgb(102,162,78)"],[0.6940391829929137,"rgb(102,162,77)"],[0.6944560233430596,"rgb(102,162,77)"],[0.6948728636932056,"rgb(102,162,77)"],[0.6952897040433514,"rgb(102,162,77)"],[0.6957065443934973,"rgb(102,162,77)"],[0.6961233847436432,"rgb(103,162,77)"],[0.6965402250937891,"rgb(103,162,77)"],[0.696957065443935,"rgb(103,162,77)"],[0.6973739057940809,"rgb(103,162,77)"],[0.6977907461442268,"rgb(103,162,77)"],[0.6982075864943726,"rgb(104,162,77)"],[0.6986244268445185,"rgb(104,162,77)"],[0.6990412671946644,"rgb(104,162,77)"],[0.6994581075448103,"rgb(104,162,77)"],[0.6998749478949562,"rgb(104,162,77)"],[0.7002917882451021,"rgb(104,162,76)"],[0.7007086285952481,"rgb(105,162,76)"],[0.701125468945394,"rgb(105,162,76)"],[0.7015423092955398,"rgb(105,162,76)"],[0.7019591496456857,"rgb(105,162,76)"],[0.7023759899958316,"rgb(105,162,76)"],[0.7027928303459775,"rgb(105,162,76)"],[0.7032096706961234,"rgb(106,162,76)"],[0.7036265110462693,"rgb(106,162,76)"],[0.7040433513964152,"rgb(106,162,76)"],[0.704460191746561,"rgb(106,162,76)"],[0.7048770320967069,"rgb(106,162,76)"],[0.7052938724468528,"rgb(106,162,76)"],[0.7057107127969987,"rgb(107,162,76)"],[0.7061275531471446,"rgb(107,162,76)"],[0.7065443934972906,"rgb(107,162,75)"],[0.7069612338474365,"rgb(107,162,75)"],[0.7073780741975824,"rgb(107,162,75)"],[0.7077949145477282,"rgb(108,162,75)"],[0.7082117548978741,"rgb(108,162,75)"],[0.70862859524802,"rgb(108,162,75)"],[0.7090454355981659,"rgb(108,162,75)"],[0.7094622759483118,"rgb(108,162,75)"],[0.7098791162984577,"rgb(108,162,75)"],[0.7102959566486036,"rgb(109,162,75)"],[0.7107127969987495,"rgb(109,162,75)"],[0.7111296373488953,"rgb(109,163,75)"],[0.7115464776990412,"rgb(109,163,75)"],[0.7119633180491871,"rgb(109,163,75)"],[0.7123801583993331,"rgb(109,163,75)"],[0.712796998749479,"rgb(110,163,75)"],[0.7132138390996249,"rgb(110,163,75)"],[0.7136306794497708,"rgb(110,163,74)"],[0.7140475197999167,"rgb(110,163,74)"],[0.7144643601500625,"rgb(110,163,74)"],[0.7148812005002084,"rgb(110,163,74)"],[0.7152980408503543,"rgb(111,163,74)"],[0.7157148812005002,"rgb(111,163,74)"],[0.7161317215506461,"rgb(111,163,74)"],[0.716548561900792,"rgb(111,163,74)"],[0.7169654022509379,"rgb(111,163,74)"],[0.7173822426010837,"rgb(111,163,74)"],[0.7177990829512296,"rgb(112,163,74)"],[0.7182159233013756,"rgb(112,163,74)"],[0.7186327636515215,"rgb(112,163,74)"],[0.7190496040016674,"rgb(112,163,74)"],[0.7194664443518133,"rgb(112,163,74)"],[0.7198832847019592,"rgb(112,163,74)"],[0.7203001250521051,"rgb(113,163,74)"],[0.7207169654022509,"rgb(113,163,74)"],[0.7211338057523968,"rgb(113,163,73)"],[0.7215506461025427,"rgb(113,163,73)"],[0.7219674864526886,"rgb(113,163,73)"],[0.7223843268028345,"rgb(113,163,73)"],[0.7228011671529804,"rgb(114,163,73)"],[0.7232180075031263,"rgb(114,163,73)"],[0.7236348478532721,"rgb(114,163,73)"],[0.7240516882034181,"rgb(114,163,73)"],[0.724468528553564,"rgb(114,163,73)"],[0.7248853689037099,"rgb(114,163,73)"],[0.7253022092538558,"rgb(115,163,73)"],[0.7257190496040017,"rgb(115,163,73)"],[0.7261358899541476,"rgb(115,163,73)"],[0.7265527303042935,"rgb(115,163,73)"],[0.7269695706544393,"rgb(115,163,73)"],[0.7273864110045852,"rgb(115,163,73)"],[0.7278032513547311,"rgb(116,163,73)"],[0.728220091704877,"rgb(116,163,73)"],[0.7286369320550229,"rgb(116,163,73)"],[0.7290537724051688,"rgb(116,163,73)"],[0.7294706127553147,"rgb(116,163,72)"],[0.7298874531054607,"rgb(116,163,72)"],[0.7303042934556065,"rgb(117,163,72)"],[0.7307211338057524,"rgb(117,163,72)"],[0.7311379741558983,"rgb(117,163,72)"],[0.7315548145060442,"rgb(117,163,72)"],[0.7319716548561901,"rgb(117,163,72)"],[0.732388495206336,"rgb(117,163,72)"],[0.7328053355564819,"rgb(118,163,72)"],[0.7332221759066277,"rgb(118,163,72)"],[0.7336390162567736,"rgb(118,163,72)"],[0.7340558566069195,"rgb(118,163,72)"],[0.7344726969570654,"rgb(118,163,72)"],[0.7348895373072113,"rgb(118,163,72)"],[0.7353063776573572,"rgb(119,163,72)"],[0.7357232180075032,"rgb(119,163,72)"],[0.7361400583576491,"rgb(119,163,72)"],[0.736556898707795,"rgb(119,163,72)"],[0.7369737390579408,"rgb(119,163,72)"],[0.7373905794080867,"rgb(119,163,72)"],[0.7378074197582326,"rgb(120,163,72)"],[0.7382242601083785,"rgb(120,163,72)"],[0.7386411004585244,"rgb(120,163,72)"],[0.7390579408086703,"rgb(120,163,71)"],[0.7394747811588162,"rgb(120,163,71)"],[0.739891621508962,"rgb(120,163,71)"],[0.7403084618591079,"rgb(120,163,71)"],[0.7407253022092538,"rgb(121,163,71)"],[0.7411421425593997,"rgb(121,163,71)"],[0.7415589829095457,"rgb(121,163,71)"],[0.7419758232596916,"rgb(121,163,71)"],[0.7423926636098375,"rgb(121,163,71)"],[0.7428095039599834,"rgb(121,163,71)"],[0.7432263443101292,"rgb(122,163,71)"],[0.7436431846602751,"rgb(122,163,71)"],[0.744060025010421,"rgb(122,163,71)"],[0.7444768653605669,"rgb(122,163,71)"],[0.7448937057107128,"rgb(122,163,71)"],[0.7453105460608587,"rgb(122,163,71)"],[0.7457273864110046,"rgb(123,163,71)"],[0.7461442267611504,"rgb(123,163,71)"],[0.7465610671112963,"rgb(123,163,71)"],[0.7469779074614422,"rgb(123,163,71)"],[0.7473947478115882,"rgb(123,163,71)"],[0.7478115881617341,"rgb(123,163,71)"],[0.74822842851188,"rgb(123,163,71)"],[0.7486452688620259,"rgb(124,163,71)"],[0.7490621092121718,"rgb(124,163,71)"],[0.7494789495623176,"rgb(124,163,71)"],[0.7498957899124635,"rgb(124,163,71)"],[0.7503126302626094,"rgb(124,163,71)"],[0.7507294706127553,"rgb(124,163,71)"],[0.7511463109629012,"rgb(125,164,70)"],[0.7515631513130471,"rgb(125,164,70)"],[0.751979991663193,"rgb(125,164,70)"],[0.7523968320133388,"rgb(125,164,70)"],[0.7528136723634847,"rgb(125,164,70)"],[0.7532305127136307,"rgb(125,164,70)"],[0.7536473530637766,"rgb(125,164,70)"],[0.7540641934139225,"rgb(126,164,70)"],[0.7544810337640684,"rgb(126,164,70)"],[0.7548978741142143,"rgb(126,164,70)"],[0.7553147144643602,"rgb(126,164,70)"],[0.755731554814506,"rgb(126,164,70)"],[0.7561483951646519,"rgb(126,164,70)"],[0.7565652355147978,"rgb(127,164,70)"],[0.7569820758649437,"rgb(127,164,70)"],[0.7573989162150896,"rgb(127,164,70)"],[0.7578157565652355,"rgb(127,164,70)"],[0.7582325969153814,"rgb(127,164,70)"],[0.7586494372655272,"rgb(127,164,70)"],[0.7590662776156732,"rgb(127,164,70)"],[0.7594831179658191,"rgb(128,164,70)"],[0.759899958315965,"rgb(128,164,70)"],[0.7603167986661109,"rgb(128,164,70)"],[0.7607336390162568,"rgb(128,164,70)"],[0.7611504793664027,"rgb(128,164,70)"],[0.7615673197165486,"rgb(128,164,70)"],[0.7619841600666944,"rgb(128,164,70)"],[0.7624010004168403,"rgb(129,164,70)"],[0.7628178407669862,"rgb(129,164,70)"],[0.7632346811171321,"rgb(129,164,70)"],[0.763651521467278,"rgb(129,164,70)"],[0.7640683618174239,"rgb(129,164,70)"],[0.7644852021675698,"rgb(129,164,70)"],[0.7649020425177158,"rgb(129,164,70)"],[0.7653188828678616,"rgb(130,164,70)"],[0.7657357232180075,"rgb(130,164,70)"],[0.7661525635681534,"rgb(130,164,70)"],[0.7665694039182993,"rgb(130,164,70)"],[0.7669862442684452,"rgb(130,164,70)"],[0.7674030846185911,"rgb(130,164,70)"],[0.767819924968737,"rgb(131,164,70)"],[0.7682367653188829,"rgb(131,164,70)"],[0.7686536056690287,"rgb(131,164,69)"],[0.7690704460191746,"rgb(131,164,69)"],[0.7694872863693205,"rgb(131,164,69)"],[0.7699041267194664,"rgb(131,164,69)"],[0.7703209670696123,"rgb(131,164,69)"],[0.7707378074197583,"rgb(132,164,69)"],[0.7711546477699042,"rgb(132,164,69)"],[0.77157148812005,"rgb(132,164,69)"],[0.7719883284701959,"rgb(132,164,69)"],[0.7724051688203418,"rgb(132,164,69)"],[0.7728220091704877,"rgb(132,164,69)"],[0.7732388495206336,"rgb(132,164,69)"],[0.7736556898707795,"rgb(133,164,69)"],[0.7740725302209254,"rgb(133,164,69)"],[0.7744893705710713,"rgb(133,164,69)"],[0.7749062109212171,"rgb(133,164,69)"],[0.775323051271363,"rgb(133,164,69)"],[0.7757398916215089,"rgb(133,164,69)"],[0.7761567319716548,"rgb(133,164,69)"],[0.7765735723218008,"rgb(134,164,69)"],[0.7769904126719467,"rgb(134,164,69)"],[0.7774072530220926,"rgb(134,164,69)"],[0.7778240933722385,"rgb(134,164,69)"],[0.7782409337223843,"rgb(134,164,69)"],[0.7786577740725302,"rgb(134,164,69)"],[0.7790746144226761,"rgb(134,164,69)"],[0.779491454772822,"rgb(134,164,69)"],[0.7799082951229679,"rgb(135,164,69)"],[0.7803251354731138,"rgb(135,164,69)"],[0.7807419758232597,"rgb(135,164,69)"],[0.7811588161734055,"rgb(135,164,69)"],[0.7815756565235514,"rgb(135,164,69)"],[0.7819924968736974,"rgb(135,164,69)"],[0.7824093372238433,"rgb(135,164,69)"],[0.7828261775739892,"rgb(136,164,69)"],[0.7832430179241351,"rgb(136,164,69)"],[0.783659858274281,"rgb(136,164,69)"],[0.7840766986244269,"rgb(136,164,69)"],[0.7844935389745727,"rgb(136,164,69)"],[0.7849103793247186,"rgb(136,164,69)"],[0.7853272196748645,"rgb(136,164,69)"],[0.7857440600250104,"rgb(137,164,69)"],[0.7861609003751563,"rgb(137,164,69)"],[0.7865777407253022,"rgb(137,164,69)"],[0.7869945810754481,"rgb(137,164,69)"],[0.787411421425594,"rgb(137,164,69)"],[0.78782826177574,"rgb(137,164,69)"],[0.7882451021258858,"rgb(137,164,69)"],[0.7886619424760317,"rgb(138,164,69)"],[0.7890787828261776,"rgb(138,164,69)"],[0.7894956231763235,"rgb(138,164,69)"],[0.7899124635264694,"rgb(138,164,69)"],[0.7903293038766153,"rgb(138,164,69)"],[0.7907461442267611,"rgb(138,164,69)"],[0.791162984576907,"rgb(138,164,69)"],[0.7915798249270529,"rgb(138,164,69)"],[0.7919966652771988,"rgb(139,164,69)"],[0.7924135056273447,"rgb(139,164,69)"],[0.7928303459774906,"rgb(139,164,69)"],[0.7932471863276365,"rgb(139,164,69)"],[0.7936640266777825,"rgb(139,164,69)"],[0.7940808670279283,"rgb(139,164,69)"],[0.7944977073780742,"rgb(139,164,69)"],[0.7949145477282201,"rgb(140,164,69)"],[0.795331388078366,"rgb(140,164,69)"],[0.7957482284285119,"rgb(140,164,69)"],[0.7961650687786578,"rgb(140,164,69)"],[0.7965819091288037,"rgb(140,164,69)"],[0.7969987494789496,"rgb(140,164,69)"],[0.7974155898290954,"rgb(140,164,69)"],[0.7978324301792413,"rgb(140,164,69)"],[0.7982492705293872,"rgb(141,164,69)"],[0.7986661108795331,"rgb(141,164,69)"],[0.799082951229679,"rgb(141,164,69)"],[0.799499791579825,"rgb(141,164,69)"],[0.7999166319299709,"rgb(141,164,69)"],[0.8003334722801168,"rgb(141,164,69)"],[0.8007503126302626,"rgb(141,164,69)"],[0.8011671529804085,"rgb(141,164,69)"],[0.8015839933305544,"rgb(142,164,69)"],[0.8020008336807003,"rgb(142,164,69)"],[0.8024176740308462,"rgb(142,164,69)"],[0.8028345143809921,"rgb(142,164,69)"],[0.803251354731138,"rgb(142,164,69)"],[0.8036681950812838,"rgb(142,164,69)"],[0.8040850354314297,"rgb(142,164,69)"],[0.8045018757815756,"rgb(142,164,69)"],[0.8049187161317215,"rgb(143,164,69)"],[0.8053355564818675,"rgb(143,164,69)"],[0.8057523968320134,"rgb(143,164,69)"],[0.8061692371821593,"rgb(143,164,69)"],[0.8065860775323052,"rgb(143,164,69)"],[0.807002917882451,"rgb(143,164,69)"],[0.8074197582325969,"rgb(143,164,69)"],[0.8078365985827428,"rgb(143,164,69)"],[0.8082534389328887,"rgb(144,164,69)"],[0.8086702792830346,"rgb(144,164,69)"],[0.8090871196331805,"rgb(144,164,69)"],[0.8095039599833264,"rgb(144,164,69)"],[0.8099208003334722,"rgb(144,164,69)"],[0.8103376406836181,"rgb(144,164,69)"],[0.810754481033764,"rgb(144,164,69)"],[0.81117132138391,"rgb(144,164,69)"],[0.8115881617340559,"rgb(145,164,69)"],[0.8120050020842018,"rgb(145,164,69)"],[0.8124218424343477,"rgb(145,164,69)"],[0.8128386827844936,"rgb(145,164,69)"],[0.8132555231346394,"rgb(145,164,69)"],[0.8136723634847853,"rgb(145,164,69)"],[0.8140892038349312,"rgb(145,164,70)"],[0.8145060441850771,"rgb(145,164,70)"],[0.814922884535223,"rgb(146,164,70)"],[0.8153397248853689,"rgb(146,164,70)"],[0.8157565652355148,"rgb(146,164,70)"],[0.8161734055856606,"rgb(146,164,70)"],[0.8165902459358065,"rgb(146,164,70)"],[0.8170070862859525,"rgb(146,164,70)"],[0.8174239266360984,"rgb(146,164,70)"],[0.8178407669862443,"rgb(146,164,70)"],[0.8182576073363902,"rgb(147,164,70)"],[0.8186744476865361,"rgb(147,164,70)"],[0.819091288036682,"rgb(147,164,70)"],[0.8195081283868278,"rgb(147,164,70)"],[0.8199249687369737,"rgb(147,164,70)"],[0.8203418090871196,"rgb(147,164,70)"],[0.8207586494372655,"rgb(147,164,70)"],[0.8211754897874114,"rgb(147,164,70)"],[0.8215923301375573,"rgb(148,164,70)"],[0.8220091704877032,"rgb(148,164,70)"],[0.822426010837849,"rgb(148,164,70)"],[0.822842851187995,"rgb(148,164,70)"],[0.8232596915381409,"rgb(148,164,70)"],[0.8236765318882868,"rgb(148,164,70)"],[0.8240933722384327,"rgb(148,164,70)"],[0.8245102125885786,"rgb(148,164,70)"],[0.8249270529387245,"rgb(148,164,70)"],[0.8253438932888704,"rgb(149,164,70)"],[0.8257607336390163,"rgb(149,164,70)"],[0.8261775739891621,"rgb(149,164,70)"],[0.826594414339308,"rgb(149,164,70)"],[0.8270112546894539,"rgb(149,164,70)"],[0.8274280950395998,"rgb(149,164,70)"],[0.8278449353897457,"rgb(149,164,70)"],[0.8282617757398916,"rgb(149,164,70)"],[0.8286786160900376,"rgb(150,164,70)"],[0.8290954564401835,"rgb(150,164,70)"],[0.8295122967903293,"rgb(150,164,70)"],[0.8299291371404752,"rgb(150,164,70)"],[0.8303459774906211,"rgb(150,164,70)"],[0.830762817840767,"rgb(150,164,70)"],[0.8311796581909129,"rgb(150,164,70)"],[0.8315964985410588,"rgb(150,164,71)"],[0.8320133388912047,"rgb(150,164,71)"],[0.8324301792413505,"rgb(151,164,71)"],[0.8328470195914964,"rgb(151,164,71)"],[0.8332638599416423,"rgb(151,164,71)"],[0.8336807002917882,"rgb(151,164,71)"],[0.8340975406419341,"rgb(151,164,71)"],[0.8345143809920801,"rgb(151,164,71)"],[0.834931221342226,"rgb(151,164,71)"],[0.8353480616923719,"rgb(151,164,71)"],[0.8357649020425177,"rgb(151,164,71)"],[0.8361817423926636,"rgb(152,164,71)"],[0.8365985827428095,"rgb(152,164,71)"],[0.8370154230929554,"rgb(152,164,71)"],[0.8374322634431013,"rgb(152,164,71)"],[0.8378491037932472,"rgb(152,164,71)"],[0.8382659441433931,"rgb(152,164,71)"],[0.838682784493539,"rgb(152,164,71)"],[0.8390996248436848,"rgb(152,164,71)"],[0.8395164651938307,"rgb(152,164,71)"],[0.8399333055439766,"rgb(153,164,71)"],[0.8403501458941226,"rgb(153,164,71)"],[0.8407669862442685,"rgb(153,164,71)"],[0.8411838265944144,"rgb(153,164,71)"],[0.8416006669445603,"rgb(153,164,71)"],[0.8420175072947061,"rgb(153,164,71)"],[0.842434347644852,"rgb(153,164,71)"],[0.8428511879949979,"rgb(153,164,71)"],[0.8432680283451438,"rgb(153,164,71)"],[0.8436848686952897,"rgb(154,164,72)"],[0.8441017090454356,"rgb(154,164,72)"],[0.8445185493955815,"rgb(154,164,72)"],[0.8449353897457273,"rgb(154,164,72)"],[0.8453522300958732,"rgb(154,164,72)"],[0.8457690704460191,"rgb(154,164,72)"],[0.8461859107961651,"rgb(154,164,72)"],[0.846602751146311,"rgb(154,164,72)"],[0.8470195914964569,"rgb(154,164,72)"],[0.8474364318466028,"rgb(155,164,72)"],[0.8478532721967487,"rgb(155,164,72)"],[0.8482701125468946,"rgb(155,164,72)"],[0.8486869528970404,"rgb(155,164,72)"],[0.8491037932471863,"rgb(155,164,72)"],[0.8495206335973322,"rgb(155,164,72)"],[0.8499374739474781,"rgb(155,164,72)"],[0.850354314297624,"rgb(155,164,72)"],[0.8507711546477699,"rgb(155,164,72)"],[0.8511879949979158,"rgb(155,164,72)"],[0.8516048353480616,"rgb(156,164,72)"],[0.8520216756982076,"rgb(156,164,72)"],[0.8524385160483535,"rgb(156,164,72)"],[0.8528553563984994,"rgb(156,164,72)"],[0.8532721967486453,"rgb(156,164,73)"],[0.8536890370987912,"rgb(156,164,73)"],[0.8541058774489371,"rgb(156,164,73)"],[0.854522717799083,"rgb(156,164,73)"],[0.8549395581492288,"rgb(156,164,73)"],[0.8553563984993747,"rgb(156,164,73)"],[0.8557732388495206,"rgb(157,164,73)"],[0.8561900791996665,"rgb(157,164,73)"],[0.8566069195498124,"rgb(157,164,73)"],[0.8570237598999583,"rgb(157,164,73)"],[0.8574406002501042,"rgb(157,164,73)"],[0.8578574406002502,"rgb(157,164,73)"],[0.858274280950396,"rgb(157,164,73)"],[0.8586911213005419,"rgb(157,164,73)"],[0.8591079616506878,"rgb(157,164,73)"],[0.8595248020008337,"rgb(158,164,73)"],[0.8599416423509796,"rgb(158,164,73)"],[0.8603584827011255,"rgb(158,164,73)"],[0.8607753230512714,"rgb(158,164,73)"],[0.8611921634014172,"rgb(158,164,73)"],[0.8616090037515631,"rgb(158,164,73)"],[0.862025844101709,"rgb(158,164,74)"],[0.8624426844518549,"rgb(158,164,74)"],[0.8628595248020008,"rgb(158,164,74)"],[0.8632763651521467,"rgb(158,164,74)"],[0.8636932055022927,"rgb(159,164,74)"],[0.8641100458524386,"rgb(159,164,74)"],[0.8645268862025844,"rgb(159,164,74)"],[0.8649437265527303,"rgb(159,164,74)"],[0.8653605669028762,"rgb(159,164,74)"],[0.8657774072530221,"rgb(159,164,74)"],[0.866194247603168,"rgb(159,164,74)"],[0.8666110879533139,"rgb(159,164,74)"],[0.8670279283034598,"rgb(159,164,74)"],[0.8674447686536056,"rgb(159,164,74)"],[0.8678616090037515,"rgb(159,164,74)"],[0.8682784493538974,"rgb(160,164,74)"],[0.8686952897040433,"rgb(160,164,74)"],[0.8691121300541892,"rgb(160,164,74)"],[0.8695289704043352,"rgb(160,164,75)"],[0.8699458107544811,"rgb(160,164,75)"],[0.870362651104627,"rgb(160,164,75)"],[0.8707794914547728,"rgb(160,164,75)"],[0.8711963318049187,"rgb(160,164,75)"],[0.8716131721550646,"rgb(160,164,75)"],[0.8720300125052105,"rgb(160,164,75)"],[0.8724468528553564,"rgb(161,164,75)"],[0.8728636932055023,"rgb(161,164,75)"],[0.8732805335556482,"rgb(161,164,75)"],[0.873697373905794,"rgb(161,164,75)"],[0.8741142142559399,"rgb(161,164,75)"],[0.8745310546060858,"rgb(161,164,75)"],[0.8749478949562317,"rgb(161,164,75)"],[0.8753647353063777,"rgb(161,164,75)"],[0.8757815756565236,"rgb(161,164,75)"],[0.8761984160066695,"rgb(161,164,76)"],[0.8766152563568154,"rgb(161,164,76)"],[0.8770320967069613,"rgb(162,164,76)"],[0.8774489370571071,"rgb(162,164,76)"],[0.877865777407253,"rgb(162,164,76)"],[0.8782826177573989,"rgb(162,164,76)"],[0.8786994581075448,"rgb(162,164,76)"],[0.8791162984576907,"rgb(162,164,76)"],[0.8795331388078366,"rgb(162,164,76)"],[0.8799499791579825,"rgb(162,164,76)"],[0.8803668195081283,"rgb(162,164,76)"],[0.8807836598582742,"rgb(162,164,76)"],[0.8812005002084202,"rgb(162,164,76)"],[0.8816173405585661,"rgb(163,164,76)"],[0.882034180908712,"rgb(163,164,76)"],[0.8824510212588579,"rgb(163,164,76)"],[0.8828678616090038,"rgb(163,164,77)"],[0.8832847019591497,"rgb(163,164,77)"],[0.8837015423092955,"rgb(163,164,77)"],[0.8841183826594414,"rgb(163,164,77)"],[0.8845352230095873,"rgb(163,164,77)"],[0.8849520633597332,"rgb(163,164,77)"],[0.8853689037098791,"rgb(163,164,77)"],[0.885785744060025,"rgb(163,164,77)"],[0.8862025844101709,"rgb(164,164,77)"],[0.8866194247603167,"rgb(164,164,77)"],[0.8870362651104627,"rgb(164,164,77)"],[0.8874531054606086,"rgb(164,164,77)"],[0.8878699458107545,"rgb(164,164,77)"],[0.8882867861609004,"rgb(164,164,77)"],[0.8887036265110463,"rgb(164,164,78)"],[0.8891204668611922,"rgb(164,164,78)"],[0.8895373072113381,"rgb(164,164,78)"],[0.8899541475614839,"rgb(164,164,78)"],[0.8903709879116298,"rgb(164,164,78)"],[0.8907878282617757,"rgb(165,164,78)"],[0.8912046686119216,"rgb(165,164,78)"],[0.8916215089620675,"rgb(165,164,78)"],[0.8920383493122134,"rgb(165,164,78)"],[0.8924551896623594,"rgb(165,164,78)"],[0.8928720300125053,"rgb(165,164,78)"],[0.8932888703626511,"rgb(165,164,78)"],[0.893705710712797,"rgb(165,164,78)"],[0.8941225510629429,"rgb(165,164,78)"],[0.8945393914130888,"rgb(165,164,79)"],[0.8949562317632347,"rgb(165,164,79)"],[0.8953730721133806,"rgb(165,164,79)"],[0.8957899124635265,"rgb(166,164,79)"],[0.8962067528136723,"rgb(166,164,79)"],[0.8966235931638182,"rgb(166,164,79)"],[0.8970404335139641,"rgb(166,164,79)"],[0.89745727386411,"rgb(166,164,79)"],[0.8978741142142559,"rgb(166,164,79)"],[0.8982909545644019,"rgb(166,164,79)"],[0.8987077949145478,"rgb(166,164,79)"],[0.8991246352646937,"rgb(166,164,79)"],[0.8995414756148395,"rgb(166,164,79)"],[0.8999583159649854,"rgb(166,164,80)"],[0.9003751563151313,"rgb(166,164,80)"],[0.9007919966652772,"rgb(167,164,80)"],[0.9012088370154231,"rgb(167,164,80)"],[0.901625677365569,"rgb(167,164,80)"],[0.9020425177157149,"rgb(167,164,80)"],[0.9024593580658608,"rgb(167,164,80)"],[0.9028761984160066,"rgb(167,164,80)"],[0.9032930387661525,"rgb(167,164,80)"],[0.9037098791162984,"rgb(167,164,80)"],[0.9041267194664444,"rgb(167,164,80)"],[0.9045435598165903,"rgb(167,164,80)"],[0.9049604001667362,"rgb(167,164,81)"],[0.9053772405168821,"rgb(167,164,81)"],[0.905794080867028,"rgb(168,164,81)"],[0.9062109212171738,"rgb(168,164,81)"],[0.9066277615673197,"rgb(168,164,81)"],[0.9070446019174656,"rgb(168,164,81)"],[0.9074614422676115,"rgb(168,164,81)"],[0.9078782826177574,"rgb(168,164,81)"],[0.9082951229679033,"rgb(168,164,81)"],[0.9087119633180492,"rgb(168,164,81)"],[0.909128803668195,"rgb(168,164,81)"],[0.9095456440183409,"rgb(168,164,81)"],[0.9099624843684869,"rgb(168,164,82)"],[0.9103793247186328,"rgb(168,164,82)"],[0.9107961650687787,"rgb(169,164,82)"],[0.9112130054189246,"rgb(169,164,82)"],[0.9116298457690705,"rgb(169,164,82)"],[0.9120466861192164,"rgb(169,164,82)"],[0.9124635264693622,"rgb(169,164,82)"],[0.9128803668195081,"rgb(169,164,82)"],[0.913297207169654,"rgb(169,163,82)"],[0.9137140475197999,"rgb(169,163,82)"],[0.9141308878699458,"rgb(169,163,82)"],[0.9145477282200917,"rgb(169,163,83)"],[0.9149645685702376,"rgb(169,163,83)"],[0.9153814089203834,"rgb(169,163,83)"],[0.9157982492705294,"rgb(169,163,83)"],[0.9162150896206753,"rgb(170,163,83)"],[0.9166319299708212,"rgb(170,163,83)"],[0.9170487703209671,"rgb(170,163,83)"],[0.917465610671113,"rgb(170,163,83)"],[0.9178824510212589,"rgb(170,163,83)"],[0.9182992913714048,"rgb(170,163,83)"],[0.9187161317215506,"rgb(170,163,83)"],[0.9191329720716965,"rgb(170,163,83)"],[0.9195498124218424,"rgb(170,163,84)"],[0.9199666527719883,"rgb(170,163,84)"],[0.9203834931221342,"rgb(170,163,84)"],[0.9208003334722801,"rgb(170,163,84)"],[0.921217173822426,"rgb(170,163,84)"],[0.921634014172572,"rgb(170,163,84)"],[0.9220508545227178,"rgb(171,163,84)"],[0.9224676948728637,"rgb(171,163,84)"],[0.9228845352230096,"rgb(171,163,84)"],[0.9233013755731555,"rgb(171,163,84)"],[0.9237182159233014,"rgb(171,163,85)"],[0.9241350562734473,"rgb(171,163,85)"],[0.9245518966235932,"rgb(171,163,85)"],[0.924968736973739,"rgb(171,163,85)"],[0.9253855773238849,"rgb(171,163,85)"],[0.9258024176740308,"rgb(171,163,85)"],[0.9262192580241767,"rgb(171,163,85)"],[0.9266360983743226,"rgb(171,163,85)"],[0.9270529387244685,"rgb(171,163,85)"],[0.9274697790746145,"rgb(172,163,85)"],[0.9278866194247604,"rgb(172,163,85)"],[0.9283034597749062,"rgb(172,163,86)"],[0.9287203001250521,"rgb(172,163,86)"],[0.929137140475198,"rgb(172,163,86)"],[0.9295539808253439,"rgb(172,163,86)"],[0.9299708211754898,"rgb(172,163,86)"],[0.9303876615256357,"rgb(172,163,86)"],[0.9308045018757816,"rgb(172,163,86)"],[0.9312213422259275,"rgb(172,163,86)"],[0.9316381825760733,"rgb(172,163,86)"],[0.9320550229262192,"rgb(172,163,86)"],[0.9324718632763651,"rgb(172,163,87)"],[0.932888703626511,"rgb(172,163,87)"],[0.933305543976657,"rgb(172,163,87)"],[0.9337223843268029,"rgb(173,163,87)"],[0.9341392246769488,"rgb(173,163,87)"],[0.9345560650270947,"rgb(173,163,87)"],[0.9349729053772405,"rgb(173,163,87)"],[0.9353897457273864,"rgb(173,163,87)"],[0.9358065860775323,"rgb(173,163,87)"],[0.9362234264276782,"rgb(173,163,87)"],[0.9366402667778241,"rgb(173,163,88)"],[0.93705710712797,"rgb(173,163,88)"],[0.9374739474781159,"rgb(173,163,88)"],[0.9378907878282617,"rgb(173,163,88)"],[0.9383076281784076,"rgb(173,163,88)"],[0.9387244685285535,"rgb(173,163,88)"],[0.9391413088786995,"rgb(173,163,88)"],[0.9395581492288454,"rgb(174,163,88)"],[0.9399749895789913,"rgb(174,163,88)"],[0.9403918299291372,"rgb(174,163,88)"],[0.940808670279283,"rgb(174,163,89)"],[0.9412255106294289,"rgb(174,163,89)"],[0.9416423509795748,"rgb(174,163,89)"],[0.9420591913297207,"rgb(174,163,89)"],[0.9424760316798666,"rgb(174,163,89)"],[0.9428928720300125,"rgb(174,163,89)"],[0.9433097123801584,"rgb(174,163,89)"],[0.9437265527303043,"rgb(174,163,89)"],[0.9441433930804501,"rgb(174,163,89)"],[0.944560233430596,"rgb(174,163,90)"],[0.944977073780742,"rgb(174,163,90)"],[0.9453939141308879,"rgb(174,163,90)"],[0.9458107544810338,"rgb(175,163,90)"],[0.9462275948311797,"rgb(175,163,90)"],[0.9466444351813256,"rgb(175,163,90)"],[0.9470612755314715,"rgb(175,163,90)"],[0.9474781158816173,"rgb(175,163,90)"],[0.9478949562317632,"rgb(175,163,90)"],[0.9483117965819091,"rgb(175,163,90)"],[0.948728636932055,"rgb(175,163,91)"],[0.9491454772822009,"rgb(175,163,91)"],[0.9495623176323468,"rgb(175,163,91)"],[0.9499791579824927,"rgb(175,163,91)"],[0.9503959983326385,"rgb(175,163,91)"],[0.9508128386827845,"rgb(175,163,91)"],[0.9512296790329304,"rgb(175,163,91)"],[0.9516465193830763,"rgb(175,163,91)"],[0.9520633597332222,"rgb(175,163,91)"],[0.9524802000833681,"rgb(176,163,92)"],[0.952897040433514,"rgb(176,163,92)"],[0.9533138807836599,"rgb(176,163,92)"],[0.9537307211338057,"rgb(176,163,92)"],[0.9541475614839516,"rgb(176,163,92)"],[0.9545644018340975,"rgb(176,163,92)"],[0.9549812421842434,"rgb(176,163,92)"],[0.9553980825343893,"rgb(176,163,92)"],[0.9558149228845352,"rgb(176,163,92)"],[0.9562317632346811,"rgb(176,163,93)"],[0.9566486035848271,"rgb(176,163,93)"],[0.957065443934973,"rgb(176,163,93)"],[0.9574822842851188,"rgb(176,163,93)"],[0.9578991246352647,"rgb(176,163,93)"],[0.9583159649854106,"rgb(176,163,93)"],[0.9587328053355565,"rgb(176,163,93)"],[0.9591496456857024,"rgb(176,163,93)"],[0.9595664860358483,"rgb(177,163,93)"],[0.9599833263859942,"rgb(177,163,94)"],[0.96040016673614,"rgb(177,163,94)"],[0.9608170070862859,"rgb(177,163,94)"],[0.9612338474364318,"rgb(177,163,94)"],[0.9616506877865777,"rgb(177,163,94)"],[0.9620675281367236,"rgb(177,163,94)"],[0.9624843684868696,"rgb(177,163,94)"],[0.9629012088370155,"rgb(177,163,94)"],[0.9633180491871614,"rgb(177,163,94)"],[0.9637348895373072,"rgb(177,163,95)"],[0.9641517298874531,"rgb(177,163,95)"],[0.964568570237599,"rgb(177,163,95)"],[0.9649854105877449,"rgb(177,163,95)"],[0.9654022509378908,"rgb(177,163,95)"],[0.9658190912880367,"rgb(177,163,95)"],[0.9662359316381826,"rgb(177,163,95)"],[0.9666527719883284,"rgb(178,163,95)"],[0.9670696123384743,"rgb(178,163,96)"],[0.9674864526886202,"rgb(178,163,96)"],[0.9679032930387661,"rgb(178,163,96)"],[0.9683201333889121,"rgb(178,163,96)"],[0.968736973739058,"rgb(178,163,96)"],[0.9691538140892039,"rgb(178,163,96)"],[0.9695706544393498,"rgb(178,163,96)"],[0.9699874947894956,"rgb(178,163,96)"],[0.9704043351396415,"rgb(178,163,96)"],[0.9708211754897874,"rgb(178,163,97)"],[0.9712380158399333,"rgb(178,163,97)"],[0.9716548561900792,"rgb(178,163,97)"],[0.9720716965402251,"rgb(178,163,97)"],[0.972488536890371,"rgb(178,163,97)"],[0.9729053772405168,"rgb(178,163,97)"],[0.9733222175906627,"rgb(178,163,97)"],[0.9737390579408086,"rgb(178,163,97)"],[0.9741558982909546,"rgb(179,163,98)"],[0.9745727386411005,"rgb(179,163,98)"],[0.9749895789912464,"rgb(179,163,98)"],[0.9754064193413923,"rgb(179,163,98)"],[0.9758232596915382,"rgb(179,163,98)"],[0.976240100041684,"rgb(179,163,98)"],[0.9766569403918299,"rgb(179,163,98)"],[0.9770737807419758,"rgb(179,163,98)"],[0.9774906210921217,"rgb(179,163,98)"],[0.9779074614422676,"rgb(179,163,99)"],[0.9783243017924135,"rgb(179,163,99)"],[0.9787411421425594,"rgb(179,163,99)"],[0.9791579824927052,"rgb(179,163,99)"],[0.9795748228428511,"rgb(179,163,99)"],[0.9799916631929971,"rgb(179,163,99)"],[0.980408503543143,"rgb(179,163,99)"],[0.9808253438932889,"rgb(179,163,99)"],[0.9812421842434348,"rgb(179,163,100)"],[0.9816590245935807,"rgb(179,163,100)"],[0.9820758649437266,"rgb(180,163,100)"],[0.9824927052938724,"rgb(180,163,100)"],[0.9829095456440183,"rgb(180,163,100)"],[0.9833263859941642,"rgb(180,163,100)"],[0.9837432263443101,"rgb(180,163,100)"],[0.984160066694456,"rgb(180,163,100)"],[0.9845769070446019,"rgb(180,163,101)"],[0.9849937473947478,"rgb(180,163,101)"],[0.9854105877448937,"rgb(180,163,101)"],[0.9858274280950396,"rgb(180,163,101)"],[0.9862442684451855,"rgb(180,163,101)"],[0.9866611087953314,"rgb(180,163,101)"],[0.9870779491454773,"rgb(180,163,101)"],[0.9874947894956232,"rgb(180,163,101)"],[0.9879116298457691,"rgb(180,163,102)"],[0.988328470195915,"rgb(180,163,102)"],[0.9887453105460609,"rgb(180,163,102)"],[0.9891621508962067,"rgb(180,163,102)"],[0.9895789912463526,"rgb(180,163,102)"],[0.9899958315964985,"rgb(181,163,102)"],[0.9904126719466444,"rgb(181,163,102)"],[0.9908295122967903,"rgb(181,163,102)"],[0.9912463526469362,"rgb(181,163,103)"],[0.9916631929970822,"rgb(181,163,103)"],[0.992080033347228,"rgb(181,163,103)"],[0.9924968736973739,"rgb(181,163,103)"],[0.9929137140475198,"rgb(181,163,103)"],[0.9933305543976657,"rgb(181,163,103)"],[0.9937473947478116,"rgb(181,163,103)"],[0.9941642350979575,"rgb(181,163,103)"],[0.9945810754481034,"rgb(181,163,104)"],[0.9949979157982493,"rgb(181,163,104)"],[0.9954147561483951,"rgb(181,163,104)"],[0.995831596498541,"rgb(181,163,104)"],[0.9962484368486869,"rgb(181,163,104)"],[0.9966652771988328,"rgb(181,163,104)"],[0.9970821175489787,"rgb(181,163,104)"],[0.9974989578991247,"rgb(181,163,104)"],[0.9979157982492706,"rgb(181,163,105)"],[0.9983326385994165,"rgb(181,163,105)"],[0.9987494789495623,"rgb(181,163,105)"],[0.9991663192997082,"rgb(182,163,105)"],[0.9995831596498541,"rgb(182,163,105)"],[1.0,"rgb(182,163,105)"]],"size":4,"cmax":250.0,"showscale":true}}], {"xaxis":{"gridcolor":"white","title":{"text":"x"},"zerolinecolor":"white","constrain":"domain"},"modebar":{"color":"gray","activecolor":"rgb(229,236,246)","bgcolor":"rgba(0,0,0,0)","orientation":"h"},"paper_bgcolor":"rgba(0,0,0,0)","hovermode":"closest","template":{"layout":{"coloraxis":{"colorbar":{"ticks":"","outlinewidth":0}},"xaxis":{"gridcolor":"white","zerolinewidth":2,"title":{"standoff":15},"ticks":"","zerolinecolor":"white","automargin":true,"linecolor":"white"},"hovermode":"closest","paper_bgcolor":"white","geo":{"showlakes":true,"showland":true,"landcolor":"#E5ECF6","bgcolor":"white","subunitcolor":"white","lakecolor":"white"},"colorscale":{"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]},"yaxis":{"gridcolor":"white","zerolinewidth":2,"title":{"standoff":15},"ticks":"","zerolinecolor":"white","automargin":true,"linecolor":"white"},"shapedefaults":{"line":{"color":"#2a3f5f"}},"hoverlabel":{"align":"left"},"mapbox":{"style":"light"},"polar":{"angularaxis":{"gridcolor":"white","ticks":"","linecolor":"white"},"bgcolor":"#E5ECF6","radialaxis":{"gridcolor":"white","ticks":"","linecolor":"white"}},"autotypenumbers":"strict","font":{"color":"#2a3f5f"},"ternary":{"baxis":{"gridcolor":"white","ticks":"","linecolor":"white"},"bgcolor":"#E5ECF6","caxis":{"gridcolor":"white","ticks":"","linecolor":"white"},"aaxis":{"gridcolor":"white","ticks":"","linecolor":"white"}},"annotationdefaults":{"arrowhead":0,"arrowwidth":1,"arrowcolor":"#2a3f5f"},"plot_bgcolor":"#E5ECF6","title":{"x":0.05},"scene":{"xaxis":{"gridcolor":"white","gridwidth":2,"backgroundcolor":"#E5ECF6","ticks":"","showbackground":true,"zerolinecolor":"white","linecolor":"white"},"zaxis":{"gridcolor":"white","gridwidth":2,"backgroundcolor":"#E5ECF6","ticks":"","showbackground":true,"zerolinecolor":"white","linecolor":"white"},"yaxis":{"gridcolor":"white","gridwidth":2,"backgroundcolor":"#E5ECF6","ticks":"","showbackground":true,"zerolinecolor":"white","linecolor":"white"}},"colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"]},"data":{"barpolar":[{"type":"barpolar","marker":{"line":{"color":"#E5ECF6","width":0.5}}}],"carpet":[{"aaxis":{"gridcolor":"white","endlinecolor":"#2a3f5f","minorgridcolor":"white","startlinecolor":"#2a3f5f","linecolor":"white"},"type":"carpet","baxis":{"gridcolor":"white","endlinecolor":"#2a3f5f","minorgridcolor":"white","startlinecolor":"#2a3f5f","linecolor":"white"}}],"scatterpolar":[{"type":"scatterpolar","marker":{"colorbar":{"ticks":"","outlinewidth":0}}}],"parcoords":[{"line":{"colorbar":{"ticks":"","outlinewidth":0}},"type":"parcoords"}],"scatter":[{"type":"scatter","marker":{"colorbar":{"ticks":"","outlinewidth":0}}}],"histogram2dcontour":[{"colorbar":{"ticks":"","outlinewidth":0},"type":"histogram2dcontour","colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"contour":[{"colorbar":{"ticks":"","outlinewidth":0},"type":"contour","colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"scattercarpet":[{"type":"scattercarpet","marker":{"colorbar":{"ticks":"","outlinewidth":0}}}],"mesh3d":[{"colorbar":{"ticks":"","outlinewidth":0},"type":"mesh3d"}],"surface":[{"colorbar":{"ticks":"","outlinewidth":0},"type":"surface","colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"scattermapbox":[{"type":"scattermapbox","marker":{"colorbar":{"ticks":"","outlinewidth":0}}}],"scattergeo":[{"type":"scattergeo","marker":{"colorbar":{"ticks":"","outlinewidth":0}}}],"histogram":[{"type":"histogram","marker":{"colorbar":{"ticks":"","outlinewidth":0}}}],"pie":[{"type":"pie","automargin":true}],"choropleth":[{"colorbar":{"ticks":"","outlinewidth":0},"type":"choropleth"}],"heatmapgl":[{"colorbar":{"ticks":"","outlinewidth":0},"type":"heatmapgl","colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"bar":[{"type":"bar","error_y":{"color":"#2a3f5f"},"error_x":{"color":"#2a3f5f"},"marker":{"line":{"color":"#E5ECF6","width":0.5}}}],"heatmap":[{"colorbar":{"ticks":"","outlinewidth":0},"type":"heatmap","colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"contourcarpet":[{"colorbar":{"ticks":"","outlinewidth":0},"type":"contourcarpet"}],"table":[{"type":"table","header":{"line":{"color":"white"},"fill":{"color":"#C8D4E3"}},"cells":{"line":{"color":"white"},"fill":{"color":"#EBF0F8"}}}],"scatter3d":[{"line":{"colorbar":{"ticks":"","outlinewidth":0}},"type":"scatter3d","marker":{"colorbar":{"ticks":"","outlinewidth":0}}}],"scattergl":[{"type":"scattergl","marker":{"colorbar":{"ticks":"","outlinewidth":0}}}],"histogram2d":[{"colorbar":{"ticks":"","outlinewidth":0},"type":"histogram2d","colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"scatterternary":[{"type":"scatterternary","marker":{"colorbar":{"ticks":"","outlinewidth":0}}}],"scatterpolargl":[{"type":"scatterpolargl","marker":{"colorbar":{"ticks":"","outlinewidth":0}}}]}},"height":400,"yaxis":{"gridcolor":"white","scaleanchor":"x","title":{"text":"y"},"zerolinecolor":"white"},"font":{"color":"gray"},"scene":{"xaxis":{"gridcolor":"white","backgroundcolor":"rgb(229,236,246)","title":"x","range":[-10.6,10.6],"ticksuffix":" cm","zerolinecolor":"white"},"aspectratio":{"y":1,"z":1,"x":1},"yaxis":{"gridcolor":"white","backgroundcolor":"rgb(229,236,246)","title":"y","range":[-10.6,10.6],"ticksuffix":" cm","zerolinecolor":"white"},"zaxis":{"gridcolor":"white","backgroundcolor":"rgb(229,236,246)","title":"z","range":[-10.6,10.6],"ticksuffix":" cm","zerolinecolor":"white"},"aspectmode":"manual"},"title":"brain2D_axial: T2","plot_bgcolor":"rgb(229,236,246)","margin":{"l":0,"b":50,"r":0,"t":50},"width":400}, {"modeBarButtonsToRemove":["zoom","pan","tableRotation","resetCameraLastSave3d","orbitRotation","resetCameraDefault3d"],"displaylogo":false,"toImageButtonOptions":{"format":"svg"},"editable":false,"responsive":true,"staticPlot":false,"scrollZoom":true}, diff --git a/dev/assets/examples/2-phantom2.html b/dev/assets/examples/2-phantom2.html index 08b00e79c..db21dadcb 100644 --- a/dev/assets/examples/2-phantom2.html +++ b/dev/assets/examples/2-phantom2.html @@ -9,7 +9,7 @@
@@ -17,9 +17,9 @@ window.PLOTLYENV = window.PLOTLYENV || {} - if (document.getElementById('42872982-a3e2-452f-932b-c9c252836289')) { + if (document.getElementById('79c42426-5ccb-420b-b8b7-070c88df3fe0')) { Plotly.newPlot( - '42872982-a3e2-452f-932b-c9c252836289', + '79c42426-5ccb-420b-b8b7-070c88df3fe0', [{"x":[-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.6,8.6,8.6,8.6,8.6,8.6],"mode":"markers","y":[-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-1.4000000000000001,-1.2,-1.0,-0.8,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-5.800000000000001,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.4,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.800000000000001,6.0,6.2,6.4,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.4,6.6000000000000005,6.800000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.800000000000001,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.199999999999999,7.8,8.0,8.200000000000001,8.4,8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.199999999999999,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,8.0,8.200000000000001,8.4,8.6,8.799999999999999,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,8.200000000000001,8.4,8.6,8.799999999999999,9.0,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,8.6,8.799999999999999,9.0,9.2,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-8.0,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.799999999999999,9.0,9.2,9.4,-9.0,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-7.8,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.799999999999999,9.0,9.2,9.4,9.6,-9.2,-9.0,-8.799999999999999,-8.6,-8.4,-8.0,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,9.0,9.2,9.4,9.6,-9.2,-9.0,-8.799999999999999,-8.6,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,9.2,9.4,9.6,9.8,-9.4,-9.2,-9.0,-8.799999999999999,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,9.2,9.4,9.6,9.8,-9.4,-9.2,-9.0,-8.799999999999999,-8.4,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.799999999999999,9.0,9.4,9.6,9.8,10.0,-9.4,-9.2,-9.0,-8.4,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.4,9.6,9.8,10.0,-9.6,-9.4,-9.2,-9.0,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,9.4,9.6,9.8,10.0,-9.6,-9.4,-9.2,-9.0,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.2,9.6,9.8,10.0,10.2,-9.6,-9.4,-9.2,-9.0,-8.799999999999999,-8.6,-8.4,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.2,9.6,9.8,10.0,10.2,-9.6,-9.4,-9.2,-9.0,-8.799999999999999,-8.6,-8.4,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.8,10.0,10.2,-9.6,-9.4,-9.2,-8.799999999999999,-8.6,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.8,10.0,10.2,-9.6,-9.4,-9.2,-8.799999999999999,-8.6,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.8,10.0,10.2,10.4,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.8,10.0,10.2,10.4,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.4,10.0,10.2,10.4,10.6,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.4,9.6,10.0,10.2,10.4,10.6,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-8.6,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.4,9.6,10.0,10.2,10.4,10.6,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-8.6,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.4,9.6,10.0,10.2,10.4,10.6,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-8.6,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.4,9.6,10.0,10.2,10.4,10.6,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-8.6,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.4,9.6,10.0,10.2,10.4,10.6,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-8.6,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.6,8.799999999999999,9.2,9.4,9.6,10.0,10.2,10.4,10.6,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.2,9.4,9.6,10.0,10.2,10.4,10.6,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-8.6,-8.200000000000001,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.4,9.6,10.0,10.2,10.4,10.6,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-8.6,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.4,9.6,10.0,10.2,10.4,10.6,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-8.6,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.4,9.6,10.0,10.2,10.4,10.6,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.4,9.6,10.0,10.2,10.4,10.6,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.4,10.0,10.2,10.4,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.4,9.8,10.0,10.2,10.4,-9.6,-9.4,-9.2,-8.799999999999999,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.4,9.8,10.0,10.2,10.4,-9.6,-9.4,-9.2,-8.799999999999999,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.4,9.8,10.0,10.2,10.4,-9.6,-9.4,-9.2,-9.0,-8.6,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.2,9.8,10.0,10.2,-9.6,-9.4,-9.2,-9.0,-8.799999999999999,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.2,9.6,9.8,10.0,10.2,-9.6,-9.4,-9.2,-9.0,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.6,9.8,10.0,10.2,-9.4,-9.2,-9.0,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.6,9.8,10.0,10.2,-9.4,-9.2,-9.0,-8.799999999999999,-8.4,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,9.4,9.6,9.8,10.0,-9.4,-9.2,-9.0,-8.799999999999999,-8.4,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.4,9.6,9.8,10.0,-9.2,-9.0,-8.799999999999999,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.799999999999999,9.4,9.6,9.8,10.0,-9.2,-9.0,-8.799999999999999,-8.6,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.6,9.2,9.4,9.6,9.8,-9.0,-8.799999999999999,-8.6,-8.4,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,9.2,9.4,9.6,9.8,-9.0,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-7.6,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.4,8.6,9.0,9.2,9.4,9.6,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-8.0,-7.6,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.799999999999999,9.0,9.2,9.4,9.6,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.200000000000001,8.6,8.799999999999999,9.0,9.2,9.4,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.199999999999999,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.4,8.6,8.799999999999999,9.0,9.2,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.3999999999999995,7.6,8.200000000000001,8.4,8.6,8.799999999999999,9.0,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,8.0,8.200000000000001,8.4,8.6,8.799999999999999,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,7.000000000000001,7.199999999999999,7.6,7.8,8.0,8.200000000000001,8.4,8.6,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.6000000000000005,6.800000000000001,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,6.0,6.2,6.4,6.6000000000000005,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.800000000000001,6.0,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,2.0,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.2,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-1.6,0.4,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,-0.8,-0.6,-0.4,-0.2,0.0,0.2],"type":"scatter","text":[-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-220.0,-220.0,-0.0,-220.0,-220.0,-220.0,-220.0,-220.0,-0.0,-0.0,-0.0,-220.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-220.0,-220.0,-0.0,-0.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-220.0,-0.0,-0.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-0.0,-0.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-0.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-0.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-220.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-220.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-0.0,-0.0,-0.0,-0.0,-220.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-0.0,-0.0,-0.0,-0.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-0.0,-0.0,-0.0,-0.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-0.0,-0.0,-0.0,-220.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-0.0,-0.0,-0.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-0.0,-0.0,-0.0,-0.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-0.0,-0.0,-0.0,-0.0,-220.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-220.0,-220.0,-220.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-220.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-0.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-0.0,-0.0,-220.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-220.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-0.0,-0.0,-220.0,-0.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.0,-220.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0],"hovertemplate":"x: %{x:.1f} cm
y: %{y:.1f} cm
Δw: %{text} Hz","marker":{"color":[-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-220.00000000000003,-220.00000000000003,-0.0,-220.00000000000003,-220.00000000000003,-220.00000000000003,-220.00000000000003,-220.00000000000003,-0.0,-0.0,-0.0,-220.00000000000003,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-220.00000000000003,-220.00000000000003,-0.0,-0.0,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-220.00000000000003,-0.0,-0.0,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-0.0,-0.0,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-0.0,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-0.0,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-220.00000000000003,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-220.00000000000003,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-0.0,-0.0,-0.0,-220.00000000000003,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-0.0,-0.0,-0.0,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-220.00000000000003,-220.00000000000003,-220.00000000000003,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-220.00000000000003,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-0.0,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-0.0,-0.0,-220.00000000000003,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-220.00000000000003,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-0.0,-0.0,-220.00000000000003,-0.0,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-220.00000000000003,-220.00000000000003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0],"colorbar":{"title":"Δw","ticksuffix":" Hz"},"cmin":-220.00000000000003,"colorscale":"Greys","size":4,"cmax":-0.0,"showscale":true}}], {"xaxis":{"gridcolor":"white","title":{"text":"x"},"zerolinecolor":"white","constrain":"domain"},"modebar":{"color":"gray","activecolor":"rgb(229,236,246)","bgcolor":"rgba(0,0,0,0)","orientation":"h"},"paper_bgcolor":"rgba(0,0,0,0)","hovermode":"closest","template":{"layout":{"coloraxis":{"colorbar":{"ticks":"","outlinewidth":0}},"xaxis":{"gridcolor":"white","zerolinewidth":2,"title":{"standoff":15},"ticks":"","zerolinecolor":"white","automargin":true,"linecolor":"white"},"hovermode":"closest","paper_bgcolor":"white","geo":{"showlakes":true,"showland":true,"landcolor":"#E5ECF6","bgcolor":"white","subunitcolor":"white","lakecolor":"white"},"colorscale":{"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]},"yaxis":{"gridcolor":"white","zerolinewidth":2,"title":{"standoff":15},"ticks":"","zerolinecolor":"white","automargin":true,"linecolor":"white"},"shapedefaults":{"line":{"color":"#2a3f5f"}},"hoverlabel":{"align":"left"},"mapbox":{"style":"light"},"polar":{"angularaxis":{"gridcolor":"white","ticks":"","linecolor":"white"},"bgcolor":"#E5ECF6","radialaxis":{"gridcolor":"white","ticks":"","linecolor":"white"}},"autotypenumbers":"strict","font":{"color":"#2a3f5f"},"ternary":{"baxis":{"gridcolor":"white","ticks":"","linecolor":"white"},"bgcolor":"#E5ECF6","caxis":{"gridcolor":"white","ticks":"","linecolor":"white"},"aaxis":{"gridcolor":"white","ticks":"","linecolor":"white"}},"annotationdefaults":{"arrowhead":0,"arrowwidth":1,"arrowcolor":"#2a3f5f"},"plot_bgcolor":"#E5ECF6","title":{"x":0.05},"scene":{"xaxis":{"gridcolor":"white","gridwidth":2,"backgroundcolor":"#E5ECF6","ticks":"","showbackground":true,"zerolinecolor":"white","linecolor":"white"},"zaxis":{"gridcolor":"white","gridwidth":2,"backgroundcolor":"#E5ECF6","ticks":"","showbackground":true,"zerolinecolor":"white","linecolor":"white"},"yaxis":{"gridcolor":"white","gridwidth":2,"backgroundcolor":"#E5ECF6","ticks":"","showbackground":true,"zerolinecolor":"white","linecolor":"white"}},"colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"]},"data":{"barpolar":[{"type":"barpolar","marker":{"line":{"color":"#E5ECF6","width":0.5}}}],"carpet":[{"aaxis":{"gridcolor":"white","endlinecolor":"#2a3f5f","minorgridcolor":"white","startlinecolor":"#2a3f5f","linecolor":"white"},"type":"carpet","baxis":{"gridcolor":"white","endlinecolor":"#2a3f5f","minorgridcolor":"white","startlinecolor":"#2a3f5f","linecolor":"white"}}],"scatterpolar":[{"type":"scatterpolar","marker":{"colorbar":{"ticks":"","outlinewidth":0}}}],"parcoords":[{"line":{"colorbar":{"ticks":"","outlinewidth":0}},"type":"parcoords"}],"scatter":[{"type":"scatter","marker":{"colorbar":{"ticks":"","outlinewidth":0}}}],"histogram2dcontour":[{"colorbar":{"ticks":"","outlinewidth":0},"type":"histogram2dcontour","colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"contour":[{"colorbar":{"ticks":"","outlinewidth":0},"type":"contour","colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"scattercarpet":[{"type":"scattercarpet","marker":{"colorbar":{"ticks":"","outlinewidth":0}}}],"mesh3d":[{"colorbar":{"ticks":"","outlinewidth":0},"type":"mesh3d"}],"surface":[{"colorbar":{"ticks":"","outlinewidth":0},"type":"surface","colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"scattermapbox":[{"type":"scattermapbox","marker":{"colorbar":{"ticks":"","outlinewidth":0}}}],"scattergeo":[{"type":"scattergeo","marker":{"colorbar":{"ticks":"","outlinewidth":0}}}],"histogram":[{"type":"histogram","marker":{"colorbar":{"ticks":"","outlinewidth":0}}}],"pie":[{"type":"pie","automargin":true}],"choropleth":[{"colorbar":{"ticks":"","outlinewidth":0},"type":"choropleth"}],"heatmapgl":[{"colorbar":{"ticks":"","outlinewidth":0},"type":"heatmapgl","colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"bar":[{"type":"bar","error_y":{"color":"#2a3f5f"},"error_x":{"color":"#2a3f5f"},"marker":{"line":{"color":"#E5ECF6","width":0.5}}}],"heatmap":[{"colorbar":{"ticks":"","outlinewidth":0},"type":"heatmap","colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"contourcarpet":[{"colorbar":{"ticks":"","outlinewidth":0},"type":"contourcarpet"}],"table":[{"type":"table","header":{"line":{"color":"white"},"fill":{"color":"#C8D4E3"}},"cells":{"line":{"color":"white"},"fill":{"color":"#EBF0F8"}}}],"scatter3d":[{"line":{"colorbar":{"ticks":"","outlinewidth":0}},"type":"scatter3d","marker":{"colorbar":{"ticks":"","outlinewidth":0}}}],"scattergl":[{"type":"scattergl","marker":{"colorbar":{"ticks":"","outlinewidth":0}}}],"histogram2d":[{"colorbar":{"ticks":"","outlinewidth":0},"type":"histogram2d","colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"scatterternary":[{"type":"scatterternary","marker":{"colorbar":{"ticks":"","outlinewidth":0}}}],"scatterpolargl":[{"type":"scatterpolargl","marker":{"colorbar":{"ticks":"","outlinewidth":0}}}]}},"height":400,"yaxis":{"gridcolor":"white","scaleanchor":"x","title":{"text":"y"},"zerolinecolor":"white"},"font":{"color":"gray"},"scene":{"xaxis":{"gridcolor":"white","backgroundcolor":"rgb(229,236,246)","title":"x","range":[-10.6,10.6],"ticksuffix":" cm","zerolinecolor":"white"},"aspectratio":{"y":1,"z":1,"x":1},"yaxis":{"gridcolor":"white","backgroundcolor":"rgb(229,236,246)","title":"y","range":[-10.6,10.6],"ticksuffix":" cm","zerolinecolor":"white"},"zaxis":{"gridcolor":"white","backgroundcolor":"rgb(229,236,246)","title":"z","range":[-10.6,10.6],"ticksuffix":" cm","zerolinecolor":"white"},"aspectmode":"manual"},"title":"brain2D_axial: Δw","plot_bgcolor":"rgb(229,236,246)","margin":{"l":0,"b":50,"r":0,"t":50},"width":400}, {"modeBarButtonsToRemove":["zoom","pan","tableRotation","resetCameraLastSave3d","orbitRotation","resetCameraDefault3d"],"displaylogo":false,"toImageButtonOptions":{"format":"svg"},"editable":false,"responsive":true,"staticPlot":false,"scrollZoom":true}, diff --git a/dev/assets/examples/2-recon.html b/dev/assets/examples/2-recon.html index 8a59657cf..266bd62b7 100644 --- a/dev/assets/examples/2-recon.html +++ b/dev/assets/examples/2-recon.html @@ -9,7 +9,7 @@
@@ -17,9 +17,9 @@ window.PLOTLYENV = window.PLOTLYENV || {} - if (document.getElementById('597035ac-daff-4d39-9e54-9ef54e9631b4')) { + if (document.getElementById('42856bf0-9aa4-4fb3-a23e-bff938dcb6d5')) { Plotly.newPlot( - '597035ac-daff-4d39-9e54-9ef54e9631b4', + '42856bf0-9aa4-4fb3-a23e-bff938dcb6d5', [{"zmax":1.3656764,"type":"heatmap","zmin":0.00036444722,"colorscale":"Greys","z":[[0.002953182,0.0030257886,0.0031636418,0.0032907778,0.0034938424,0.0037128031,0.0040038014,0.004393881,0.004793359,0.0053646383,0.006043337,0.0070052124,0.008375322,0.010958158,0.011622269,0.0142229395,0.022900289,0.03433741,0.05478883,0.18806659,0.039971977,0.024697682,0.015862457,0.014902497,0.0130794095,0.021415083,0.013571018,0.018115198,0.015553646,0.051984943,0.056125987,0.117990956,0.057561994,0.027395979,0.025131784,0.017321933,0.04327264,0.019555207,0.024481446,0.016194906,0.04306289,0.013860933,0.021148594,0.011910601,0.035709202,0.040979065,0.025950478,0.014078067,0.01816045,0.010915242,0.033492427,0.011932238,0.029385677,0.013294949,0.014570192,0.03727047,0.05789956,0.064218484,0.008533206,0.04222853,0.023337506,0.04159647,0.029458594,0.016043354,0.040497538,0.041805305,0.09832175,0.075366825,0.0761322,0.017504133,0.009444342,0.012453957,0.013818634,0.025865478,0.0067356825,0.008930339,0.0110565685,0.0113387965,0.007653524,0.023417816,0.018311232,0.022119952,0.058352176,0.07525748,0.01646864,0.013087833,0.0012309087,0.0029847967,0.0047135083,0.0032489477,0.0029156827,0.0027287349,0.002633368,0.0026103647,0.0025910619,0.002569385,0.0026363598,0.0026247557,0.0027307959,0.0027420376],[0.0040554143,0.0039585982,0.0039111087,0.0038403186,0.0038392723,0.0038733024,0.0038651316,0.003930451,0.004018122,0.0041060853,0.004265561,0.004471594,0.0045974683,0.0038756959,0.006056797,0.010392985,0.011862188,0.050717033,0.13237493,0.16000448,0.03157493,0.01618024,0.02505278,0.015027873,0.014829393,0.022749797,0.035441022,0.035822045,0.015510689,0.030323317,0.021615941,0.033168465,0.028054878,0.020976378,0.03528057,0.017846253,0.041594345,0.027871095,0.017048893,0.017476305,0.044880204,0.009739774,0.022252321,0.016189199,0.038171817,0.040954705,0.03207903,0.0061315177,0.01703694,0.0143686235,0.025290698,0.014578477,0.024726044,0.0140445335,0.011131407,0.044714328,0.056107763,0.06603981,0.0078182295,0.039336104,0.027584588,0.03436632,0.026305096,0.024105567,0.04380765,0.03458772,0.03368683,0.07052706,0.07000803,0.025359262,0.056544766,0.021006098,0.02584234,0.03268109,0.0042624483,0.00802025,0.012084226,0.009660313,0.009018153,0.024331732,0.027312577,0.017707897,0.24190873,0.07871447,0.024201006,0.00886249,0.014593631,0.012226052,0.0072780126,0.00697158,0.0064649982,0.005977616,0.005610518,0.005265989,0.005039949,0.004753555,0.004547552,0.0044083046,0.0042154137,0.004160293],[0.0059737996,0.0059358,0.005907952,0.0059399395,0.005888258,0.0059226453,0.0059750034,0.006119622,0.006214291,0.0064174593,0.0066402187,0.0069558634,0.0074289856,0.008536446,0.007453094,0.0071576443,0.015257759,0.04183182,0.052779812,0.03728883,0.07517457,0.023816656,0.034449965,0.017309504,0.018259142,0.019959388,0.042352982,0.049475577,0.05407626,0.05718796,0.08173941,0.033857107,0.016445978,0.02018007,0.032135777,0.015495512,0.045779377,0.027571147,0.011183043,0.02528942,0.044399716,0.006373764,0.022072727,0.021209646,0.043873478,0.041306492,0.040360462,0.0031288497,0.021519376,0.011618507,0.017142696,0.012315139,0.026531914,0.008429963,0.01811207,0.04599762,0.061953884,0.061322186,0.010247702,0.04801956,0.020613505,0.04483637,0.035630062,0.013369909,0.03218096,0.047442462,0.038073555,0.05759744,0.06453479,0.0132701015,0.050702937,0.06183769,0.02157727,0.026920095,0.007076832,0.015001858,0.017822638,0.0090493485,0.0052408627,0.02027835,0.018843962,0.024434352,0.1562235,0.07307279,0.019914731,0.017984314,0.014181347,0.008189412,0.011735814,0.009700371,0.00875616,0.008078097,0.0076174526,0.0072205104,0.006955311,0.006675511,0.0064872047,0.0062974766,0.0061265756,0.006113632],[0.009701116,0.009822444,0.009999407,0.010296515,0.010432432,0.010789069,0.0112527255,0.011728977,0.012331702,0.0130547015,0.013940766,0.015055097,0.016624868,0.01968043,0.020289667,0.021698628,0.030029941,0.02451524,0.028856777,0.2005014,0.20018467,0.040687162,0.0127610965,0.0075126435,0.0028764307,0.006700266,0.030176345,0.0425248,0.07991666,0.115117796,0.050386816,0.0338504,0.022779966,0.017913831,0.024705512,0.01528803,0.04960535,0.026808728,0.009936967,0.03457473,0.041811634,0.0036146326,0.021998068,0.02825935,0.051019445,0.04368152,0.049908105,0.007060244,0.028922474,0.011113151,0.0131227095,0.014031375,0.03130045,0.008486616,0.025595611,0.053138692,0.06756787,0.062318783,0.009777126,0.052367352,0.018596731,0.049088396,0.03950078,0.017962754,0.023832224,0.050423127,0.039267126,0.04957437,0.05434345,0.014807031,0.008705115,0.07683968,0.07643669,0.03471934,0.04233029,0.031908657,0.023299541,0.023347655,0.017490374,0.029645726,0.031027414,0.020601992,0.027328849,0.03584423,0.015879877,0.020083986,0.011657435,0.00909097,0.013098274,0.011404842,0.010694283,0.010266904,0.0100039225,0.009773115,0.00963874,0.009527527,0.009453153,0.009476647,0.009478998,0.009588816],[0.004726391,0.004810825,0.004875396,0.0049921693,0.005068729,0.0051866453,0.0054355953,0.005612528,0.00589498,0.0061768405,0.006545928,0.0069767265,0.0075852154,0.008602702,0.009146915,0.012329875,0.009777329,0.01842235,0.05608481,0.08892076,0.06712551,0.024179399,0.035771724,0.018847425,0.019485578,0.016820177,0.04665829,0.054799955,0.09375846,0.071291044,0.03578747,0.025051583,0.025303619,0.008363594,0.016517192,0.0113256825,0.051691957,0.025665045,0.014967035,0.04280498,0.03729526,0.009626252,0.024638074,0.032685444,0.06066236,0.052977942,0.063579656,0.022455461,0.038434114,0.008222944,0.013792135,0.016490318,0.03827147,0.018325806,0.035022676,0.065149136,0.07458441,0.06573486,0.008517303,0.056467462,0.023298213,0.052412108,0.0408021,0.029164353,0.023421865,0.050013762,0.032100633,0.03855846,0.03943847,0.007994353,0.01853307,0.050628833,0.11975673,0.083179146,0.061094336,0.02958058,0.01544609,0.01643816,0.01956987,0.02162292,0.038669694,0.018647244,0.012914578,0.020794509,0.01128944,0.015496067,0.0048760264,0.003827141,0.0073005636,0.005980436,0.0055297087,0.0052358066,0.005055735,0.0049315076,0.004797332,0.004739717,0.0046915845,0.0046620797,0.0047081704,0.0046983697],[0.0035984132,0.0037555047,0.003864759,0.003963158,0.004120989,0.004246188,0.0044767596,0.0046616793,0.004949414,0.005189646,0.0055098264,0.005895816,0.0063674874,0.007174211,0.008130564,0.010251387,0.0073108617,0.01860344,0.045044202,0.048862237,0.02153389,0.015911091,0.03929483,0.015450579,0.024910495,0.03028316,0.06520926,0.08880051,0.04718497,0.056621198,0.027983274,0.023939434,0.024855161,0.008115214,0.017448762,0.011067975,0.054331504,0.03116231,0.015317268,0.053502917,0.039805178,0.01082465,0.032823753,0.04147814,0.07757136,0.06906556,0.0861251,0.0433592,0.049986858,0.021477567,0.024210652,0.03166985,0.050939728,0.039765827,0.048913635,0.08595638,0.08577226,0.07126382,0.009097886,0.06277082,0.03325325,0.054033954,0.04218244,0.037487037,0.027629094,0.0524187,0.023710169,0.029340118,0.029933773,0.0047908234,0.025159912,0.043969076,0.05877555,0.054152317,0.07017736,0.041400302,0.009735844,0.011381989,0.018058846,0.016294084,0.0461031,0.022473969,0.0114053,0.013400077,0.0070296205,0.013334727,0.0016119006,0.0031827313,0.0046241335,0.0036250318,0.0034069282,0.003340164,0.0032836413,0.003310734,0.0032835584,0.00334797,0.0033821696,0.0034055437,0.003516592,0.0035408847],[0.0037952021,0.004034044,0.004195011,0.004339787,0.004590301,0.00476019,0.005066,0.0052847853,0.005700486,0.0059947628,0.006431442,0.0069214054,0.0075034406,0.008246834,0.00933538,0.013321238,0.009129275,0.018272214,0.047032673,0.049621627,0.050076716,0.030639712,0.045865927,0.01900011,0.04085985,0.08484271,0.09653315,0.06124928,0.03447841,0.049080715,0.027031034,0.023631927,0.02956502,0.0069555766,0.017656323,0.011514556,0.062658615,0.037484214,0.016115114,0.07291148,0.045835175,0.020882925,0.04492595,0.0561886,0.12486264,0.11054172,0.14464585,0.097014055,0.084445626,0.061594296,0.06894371,0.06984499,0.09621097,0.093216494,0.09228412,0.13203917,0.12108113,0.07527978,0.019173177,0.07662019,0.04779174,0.06157071,0.04990533,0.048889056,0.032435384,0.05938373,0.019057067,0.028023625,0.031376537,0.006316568,0.023318063,0.038774695,0.023331251,0.023815008,0.07116501,0.06720617,0.027205184,0.013649614,0.01833474,0.012433486,0.06645349,0.030803656,0.011837972,0.008728495,0.004700326,0.01111975,0.0009849683,0.0046469867,0.0024693778,0.0023973312,0.0025818313,0.0027807066,0.0028666407,0.0030522472,0.0030891744,0.0032854632,0.0033428303,0.0034523145,0.0036371248,0.0036975294],[0.006710243,0.0067888405,0.0069062654,0.006924811,0.0070714774,0.0072304676,0.0074166213,0.0076033277,0.008004918,0.008200529,0.008697415,0.009055831,0.009670116,0.009188608,0.0128214145,0.017592952,0.014391133,0.036383104,0.058479294,0.039511055,0.1531092,0.13062133,0.09120429,0.04514068,0.0692986,0.11156271,0.06099619,0.054059546,0.02618474,0.043251418,0.025246412,0.024504764,0.034253817,0.0049473997,0.018950215,0.012746357,0.07542046,0.048238,0.019953147,0.12091767,0.069019176,0.05809301,0.083306104,0.09048981,0.42668137,0.39967543,0.4751611,0.41603342,0.36871773,0.35640943,0.373513,0.36054513,0.41175076,0.4162561,0.39267576,0.43440872,0.40513182,0.076156676,0.058699492,0.11229516,0.08982678,0.0758532,0.06485406,0.061883762,0.04199966,0.073067956,0.011505858,0.030307254,0.039673492,0.018180458,0.029231932,0.038842477,0.018444171,0.017400438,0.03127518,0.075892806,0.10884837,0.05466135,0.039602205,0.042985145,0.1147939,0.066619515,0.028871726,0.018299928,0.010616378,0.0041394867,0.014084303,0.0125310905,0.00823301,0.008277032,0.008188711,0.007823493,0.007702998,0.0073453775,0.007279415,0.0070543624,0.006892705,0.0068577095,0.0068145706,0.00670764],[0.0028156477,0.002694023,0.002572423,0.0026371793,0.0026463112,0.002793975,0.0028940965,0.002939947,0.0033336482,0.0033930265,0.003797658,0.004193862,0.004554879,0.005152993,0.005892239,0.010116596,0.0040948642,0.01905552,0.03767625,0.02664485,0.045956485,0.080775365,0.098061584,0.0603599,0.090770915,0.07483794,0.05158935,0.050761648,0.020690583,0.034567803,0.022472553,0.020640312,0.038039576,0.006910611,0.028974174,0.010575559,0.09312493,0.10250251,0.077264056,0.5552338,0.42442182,0.45977953,0.45875734,0.50111955,0.7162869,0.67542315,0.2436909,0.3616922,0.5025091,0.48347783,0.44589686,0.4928263,0.38691714,0.35265505,0.44307828,0.405796,0.47183773,0.06257057,0.46562222,0.46933037,0.5311471,0.19710559,0.13246614,0.08501049,0.058399063,0.100131154,0.017064603,0.043454625,0.05744038,0.018673668,0.0142632015,0.020991143,0.011719401,0.027138855,0.016949555,0.02480931,0.10442137,0.069944255,0.07669898,0.12582989,0.2811844,0.091788836,0.021440212,0.023606757,0.015837329,0.016124507,0.0112606175,0.005188327,0.00953471,0.0071541495,0.0062259864,0.005267326,0.0049519115,0.004233737,0.004027473,0.0036057695,0.003397229,0.0031110854,0.0030060357,0.002792429],[0.0017607699,0.0019690369,0.0018830325,0.0017624245,0.002133525,0.0022449598,0.0024512683,0.002891547,0.0031681466,0.003632073,0.004081076,0.0048224055,0.0053924844,0.0050046835,0.008335248,0.013363064,0.00844204,0.028873714,0.04624315,0.021201218,0.04374956,0.056673087,0.036061626,0.028558323,0.048053835,0.04484019,0.04905492,0.05693015,0.02693012,0.02516897,0.026628606,0.022493597,0.05435048,0.014482614,0.031335883,0.021709042,0.54324317,0.6050817,0.43550754,0.38957837,0.34214976,0.71118027,0.50199264,0.30424836,0.42387703,0.6063171,0.08716526,0.35922274,0.08134175,0.0966122,0.45451504,0.36393917,0.47624525,0.21783233,0.08823103,0.025503399,0.080052026,0.6788577,0.42191768,0.3612621,0.37483248,0.43907204,0.58878094,0.6112527,0.059734795,0.112113915,0.022943813,0.040028233,0.06355247,0.013925167,0.009782232,0.030407134,0.018722026,0.023780482,0.008179805,0.0295384,0.069564246,0.071400896,0.05062605,0.116066255,0.12245107,0.058427464,0.023053762,0.023274278,0.0184547,0.02088668,0.009619408,0.0055526714,0.009394266,0.007123024,0.005868794,0.0050720843,0.0044857427,0.003906786,0.003450745,0.0031498089,0.0026808837,0.0024001652,0.0021137751,0.002145173],[0.002990889,0.0028011992,0.0027649123,0.002425644,0.0021442096,0.00198511,0.0017186641,0.0015934454,0.0014299954,0.0011086382,0.00084988005,0.00055395736,0.00036847754,0.0004932627,0.0018413141,0.007558076,0.0011471438,0.0215394,0.034742363,0.021205688,0.02896771,0.019848056,0.27142128,0.026089175,0.0529354,0.05037047,0.030495057,0.036753118,0.0051857107,0.016567556,0.014092768,0.019646747,0.058337443,0.066396445,0.40676486,0.6403969,0.56310576,0.35608914,0.38631365,0.62984097,0.41492864,0.54531837,0.52707595,0.5574031,0.52401745,0.6468016,0.5610699,0.8225319,0.44290885,0.3243819,0.4391021,0.4361786,0.4497412,0.4744384,0.22820093,0.5015023,0.57829016,0.5422671,0.39079937,0.6709339,0.12020782,0.49585634,0.55084884,0.1395155,0.613266,0.51665115,0.054065034,0.04458561,0.082804084,0.0042278334,0.014107942,0.053857066,0.039501544,0.029896235,0.026248846,0.06726005,0.07862441,0.08393729,0.16537927,0.14037238,0.09351529,0.007350378,0.0033108657,0.009019493,0.007869671,0.009842297,0.008590663,0.0038152155,0.0076920367,0.0061382786,0.0055931066,0.0050400277,0.0048109284,0.0044706087,0.00437207,0.0040488993,0.0039215335,0.0034867455,0.0034101654,0.0031151888],[0.0048706573,0.004741263,0.0051168664,0.0050186366,0.005514399,0.0054628532,0.0059477026,0.0061074705,0.006539612,0.007018542,0.007474758,0.008112837,0.008566574,0.008414796,0.011544383,0.017500147,0.013274803,0.03315473,0.047983382,0.016024299,0.052167013,0.06643906,0.2134965,0.055529527,0.013048618,0.032808013,0.025923416,0.040468145,0.025878504,0.015357967,0.0050050723,0.019731099,0.12263461,0.39294365,0.41024253,0.11296473,0.22866765,0.49998853,0.6060848,0.47365218,0.29474115,0.39555842,0.07575958,0.09258603,0.13415736,0.06592912,0.1132429,0.17575257,0.08685102,0.15403235,0.15521841,0.17235771,0.17396876,0.21405526,0.064086154,0.09193111,0.101160236,0.16584627,0.23556624,0.1962935,0.5406381,0.53385794,0.58238035,0.28366476,0.34243983,0.1928517,0.70010674,0.2898458,0.1392666,0.018767452,0.030110251,0.08007851,0.05185017,0.025450207,0.03094327,0.062312268,0.08079639,0.07634238,0.25944433,0.22412531,0.13277729,0.02132656,0.014921955,0.011858894,0.007657489,0.0030534363,0.0115187215,0.008358647,0.0071547823,0.0063484856,0.005977147,0.005748814,0.0052965158,0.0052671707,0.004946932,0.0049760826,0.0047568134,0.0047835503,0.0047882665,0.00457808],[0.0077654985,0.0074678073,0.007313094,0.0069732713,0.006893612,0.006565704,0.006417747,0.006310272,0.006168869,0.005865232,0.005714516,0.0056429966,0.005494504,0.005649392,0.004808631,0.0058505717,0.007322052,0.024171274,0.026395958,0.023144014,0.042953882,0.076611005,0.17828035,0.027978783,0.03565333,0.06259866,0.03360521,0.036660492,0.006736475,0.019158227,0.08640349,0.30621836,0.6143786,0.35979658,0.03357616,0.55304736,0.61373025,0.13290285,0.07917831,0.104041025,0.035673853,0.1495618,0.3217745,0.3886358,0.18783367,0.24755159,0.27305475,0.51100326,0.4093371,0.50562435,0.46120074,0.49590543,0.47672194,0.5579914,0.2646582,0.20409171,0.183753,0.13021703,0.058554117,0.16932596,0.16601612,0.10685278,0.10064334,0.45928827,0.40779305,0.24412097,0.09597974,0.39563748,0.64960194,0.20811471,0.007755418,0.11331263,0.07008311,0.031198462,0.04049788,0.07191195,0.07879434,0.11093673,0.16709323,0.12692252,0.0837668,0.026394268,0.01627735,0.020019835,0.017706523,0.011758139,0.018277334,0.01230999,0.014675011,0.012815408,0.011936968,0.011344561,0.010586828,0.01013553,0.009740339,0.0093387235,0.0089617465,0.008575232,0.008334167,0.007887387],[0.009056526,0.009167269,0.00919597,0.008907047,0.008974031,0.008704043,0.008741312,0.008647648,0.008821647,0.00858541,0.008567261,0.008646959,0.008709529,0.008546191,0.008742784,0.00872217,0.010596923,0.027300267,0.027443357,0.02287313,0.073787756,0.05851852,0.08858759,0.017477043,0.08099282,0.101548046,0.06232857,0.060930178,0.0053832084,0.11158109,0.46035403,0.30400914,0.060017012,0.41491088,0.6008582,0.31957194,0.20694156,0.15523784,0.19082265,0.45610836,0.33021978,0.45042592,0.119240455,0.155261,0.566713,0.6237376,0.36754334,0.1918665,0.15248126,0.20779851,0.14750195,0.09511313,0.16438806,0.2142647,0.17385203,0.18574545,0.07959689,0.47225592,0.38233626,0.0713609,0.09142336,0.17384075,0.20794164,0.1068672,0.02380299,0.5715575,0.5668941,0.12541884,0.2660145,0.5960665,0.1490236,0.27267447,0.106517486,0.03899496,0.042598795,0.08506472,0.084473476,0.11316147,0.056057304,0.11277016,0.10306752,0.027949156,0.015126245,0.018760107,0.01756065,0.011602706,0.018371353,0.012632827,0.01480035,0.013177822,0.012372342,0.011991277,0.011293326,0.010966753,0.010608969,0.010496027,0.009991623,0.0099607045,0.009633429,0.009403987],[0.0013237641,0.0011916402,0.001403436,0.0015573768,0.001728324,0.0021563815,0.0021111178,0.002766281,0.0027851292,0.003389217,0.0034294035,0.004028226,0.004195145,0.0037592805,0.0067506754,0.01353084,0.005183751,0.022272902,0.041339446,0.035727035,0.097608544,0.081452236,0.071926594,0.034981303,0.20312108,0.12890272,0.04303512,0.05776761,0.1911396,0.6447668,0.43754095,0.41209468,0.45874375,0.5959565,0.17288963,0.092696,0.12267587,0.21900679,0.20833482,0.100696556,0.10140359,0.17318223,0.45704976,0.3139292,0.6460868,0.81703746,0.47787026,0.366239,0.65848863,0.5276128,0.7018557,0.76578903,0.739891,0.51167035,1.0706171,0.7370563,0.2992753,0.77221775,0.6631373,0.4305019,0.15231967,0.53917044,0.2705978,0.12015045,0.059856776,0.2352563,0.3278691,0.5862322,0.38089988,0.10276384,0.1567005,0.5461948,0.26103777,0.05333919,0.037398227,0.11616169,0.13320884,0.24067396,0.080648,0.094094194,0.120764256,0.025806013,0.0028354283,0.008403148,0.011078989,0.012096901,0.008029715,0.0017101751,0.0060147773,0.0034639717,0.0031139986,0.0023147315,0.0019768202,0.0015842953,0.0013338831,0.00094198686,0.00093182636,0.0010078095,0.00080693304,0.0010246001],[0.010406877,0.010780517,0.010178524,0.010330298,0.010662196,0.010519257,0.010560659,0.010326972,0.01065823,0.010302856,0.0108788945,0.010548507,0.010889972,0.010563087,0.011433764,0.013329414,0.0124672195,0.027011508,0.03863192,0.085003085,0.045977347,0.048006177,0.07778136,0.06037678,0.101441264,0.22161146,0.08592965,0.15356672,0.6447415,0.20693384,0.41510937,0.7360605,0.3655659,0.103119954,0.17998601,0.07447255,0.10030952,0.2016784,0.09044999,0.95081496,0.7123929,0.7205895,0.6633099,0.4404512,0.11447281,0.15583448,0.1474571,0.7842274,1.1867794,1.0312532,1.0602282,0.22812262,0.65190536,0.88839424,0.38963985,0.31152725,0.20588174,0.07146356,0.26866418,0.7235396,0.30845886,0.643027,0.6010561,0.60104865,0.11963413,0.119953305,0.12304274,0.25904694,0.5550705,0.4180721,0.18990044,0.37382415,0.39246482,0.25098357,0.11534464,0.23664975,0.2183042,0.058746953,0.0637208,0.05507734,0.044853177,0.06219085,0.0052686427,0.014657929,0.017633848,0.012862672,0.018651385,0.012120237,0.015319195,0.013617257,0.01282787,0.012618928,0.011803877,0.01197468,0.011188768,0.0112248035,0.011132498,0.010885462,0.010885563,0.010458147],[0.002993344,0.0032663336,0.0028695513,0.0032038884,0.0029977092,0.0035139595,0.0036145917,0.0041359738,0.004126713,0.005058155,0.005410461,0.00617614,0.0070004705,0.0071221506,0.011012856,0.018339239,0.014601167,0.033162013,0.06523923,0.061952773,0.037001338,0.029420365,0.064179555,0.09897551,0.11632482,0.23073074,0.73934513,0.5256114,0.19623251,0.48312205,0.8958704,0.14787176,0.24230447,0.087219164,0.2264534,0.11468806,0.8324763,0.79283035,0.4256025,0.39304417,0.77682453,1.1443044,0.785169,0.36420187,0.38252595,0.32215822,0.32865968,0.3568042,0.40290064,0.7596592,1.0443867,0.32510588,0.35017952,0.7140268,0.16972435,0.49148104,0.3781121,0.40201396,0.30346042,0.1316694,0.23653825,0.10385531,0.8934287,1.2676089,0.7161666,0.08866654,0.102355435,0.095875755,0.21274523,0.7445313,0.7205318,0.60086656,0.12697183,0.6694228,0.21856456,0.18615331,0.022662437,0.04384884,0.04953285,0.05224878,0.032980565,0.06272069,0.038464792,0.011479746,0.009223117,0.01724414,0.00037548362,0.006578031,0.0038109527,0.0036363334,0.003583952,0.0037397095,0.0034060637,0.0039117807,0.0030666129,0.0035317533,0.0034496258,0.0034141794,0.0032040353,0.0035135255],[0.014628854,0.015519734,0.015397121,0.016103338,0.016612915,0.0167403,0.017521122,0.018092245,0.019058198,0.019621009,0.020920938,0.02203637,0.023580754,0.025156505,0.028363539,0.030538863,0.04148625,0.06675729,0.10476503,0.051333725,0.024386441,0.011001208,0.020300213,0.12474349,0.18405764,0.6284602,0.65861756,0.27394664,0.41415402,0.71647596,0.17490254,0.19000298,0.17703648,0.1830729,0.6234904,0.90251184,0.4926017,0.31656957,0.3906741,0.17850803,0.68575877,0.50493664,0.8126704,0.9863545,0.222596,0.27671504,0.15485917,0.27698058,0.28243583,0.4177717,0.8354873,1.0275316,0.9834188,0.7142317,0.21090223,0.25871274,0.71027386,0.23330992,0.22099446,0.43943956,0.2625666,0.5143333,0.79294235,0.35445032,0.32641605,1.110156,0.4797113,0.17159958,0.06462707,0.11037721,0.46899173,0.7477454,0.47527733,0.20503817,0.69177324,0.75963,0.012989536,0.07673544,0.032162786,0.051948175,0.0010230922,0.08085108,0.09550952,0.029848415,0.0137127545,0.0031197742,0.018836308,0.013838658,0.01434406,0.0133322645,0.013412642,0.013277339,0.013091896,0.013457339,0.0132804895,0.014004818,0.0134024285,0.014010244,0.01424588,0.014054458],[0.027310072,0.025781997,0.026310686,0.026534185,0.026607987,0.027026396,0.02736044,0.027868427,0.028414091,0.029392168,0.030310962,0.0316438,0.033204604,0.03576988,0.037949096,0.036561012,0.058632076,0.08387902,0.040345673,0.025221825,0.021145195,0.014432252,0.010873662,0.22262174,0.6848277,0.5976529,0.29648107,0.49697062,0.42652208,0.07992048,0.24008363,0.16038483,0.08400382,0.66836274,0.617774,0.2830724,0.3510663,0.19854446,0.3903176,0.32651556,0.34481445,0.3519607,0.23846054,0.2681896,0.40924072,0.38606367,0.2895159,0.23081303,0.30517143,0.3315809,0.35494637,1.0181216,0.7799112,0.23740993,0.37057695,0.38951716,0.35894033,0.30356783,0.23242892,0.21175124,0.28088945,0.5580665,0.9569281,0.63761413,0.32190073,0.31560686,0.29104352,0.23860274,0.033292837,0.15963373,0.09580974,0.2774188,0.47691625,0.18119001,0.16435628,0.478961,0.345822,0.06470592,0.04953836,0.10638949,0.044287823,0.06109346,0.073808104,0.047883283,0.045900922,0.034039307,0.041607007,0.03222118,0.035533622,0.032565247,0.030872067,0.029860197,0.029015787,0.028182302,0.027830135,0.027017562,0.027035013,0.026314843,0.02639053,0.026393132],[0.020897277,0.021885797,0.022261593,0.022307925,0.022257136,0.022846276,0.023149876,0.023502609,0.024336144,0.025155004,0.02600518,0.027268507,0.028972689,0.032247204,0.03327666,0.029848792,0.063607454,0.09683108,0.061147813,0.013557058,0.013292844,0.027852595,0.08048393,0.6025573,0.56986713,0.22329774,0.6764698,0.58179045,0.20471959,0.12414412,0.19005233,0.31962687,0.3928723,0.67137665,0.1725638,0.37416795,0.19888045,0.31594086,0.30400285,0.3145976,0.19173585,0.22366752,0.28647864,0.2994836,0.2378235,0.27238226,0.2479244,0.2288604,0.3038813,0.35836315,0.3419621,1.0669435,0.60206467,0.33533147,0.34446186,0.2625516,0.2308833,0.20243153,0.44983536,0.64408994,0.31009418,0.42009103,0.20086473,0.653622,0.37022448,0.34394327,0.50573003,0.9933603,0.5180783,0.20040938,0.13180882,0.09987933,0.37178794,0.7560158,0.25059876,0.05273644,0.49021304,0.71561444,0.07746589,0.115018725,0.044552956,0.042925194,0.054871302,0.038673144,0.045124356,0.03483365,0.03540145,0.025937244,0.03079098,0.02789379,0.026083587,0.025117334,0.02437099,0.023759829,0.022990659,0.022916442,0.022090033,0.022390509,0.02178389,0.021930225],[0.010300682,0.010243936,0.01048221,0.010275716,0.010523671,0.01058685,0.011072458,0.010954609,0.011607864,0.011916585,0.012670176,0.013651594,0.014927896,0.017546995,0.018633045,0.024558567,0.065617904,0.024266843,0.09240273,0.02260157,0.02723363,0.08768302,0.27216914,0.48973683,0.07900954,0.51137614,0.6385606,0.13027872,0.078393094,0.3499339,0.50728816,0.6916816,0.32504666,0.29417714,0.28856573,0.21066071,0.2643573,0.32247558,0.37764037,0.29910085,0.25320992,0.26774642,0.19398847,0.19475372,0.29070845,0.25692046,0.27897808,0.23437093,0.35981312,0.29398906,0.43970132,0.5445352,0.2513339,0.3005315,0.35586756,0.2527709,0.2963269,0.32178918,0.4538636,0.51886785,0.21675757,0.27356225,0.40610772,0.33862042,0.29970732,0.30047214,0.3442184,0.13101389,0.6707312,0.31679437,0.3890188,0.06052539,0.20666036,0.43237466,0.28437325,0.04841951,0.31980208,0.43730214,0.18513341,0.110450394,0.020856723,0.011330418,0.06482512,0.031169977,0.047479324,0.034367476,0.013388805,0.012584964,0.014691504,0.013073681,0.012317261,0.011760263,0.01146978,0.011142275,0.010958375,0.010726317,0.010613335,0.010589315,0.010322779,0.010154374],[0.0005990788,0.00036444722,0.00060225197,0.00041489932,0.00037694923,0.001180257,0.00064845104,0.0014258822,0.0012643959,0.0019976108,0.0022925043,0.0028393276,0.003566044,0.0053333803,0.0054963273,0.016887391,0.045321483,0.0028276835,0.06183205,0.029217033,0.05186324,0.23958763,0.5218927,0.08696345,0.17353186,0.7444805,0.22944216,0.19539317,0.49486804,1.2426671,1.0635076,0.24032694,0.35115263,0.2515881,0.22556485,0.24237224,0.23645696,0.32749853,0.33449942,0.2970357,0.22206911,0.21649392,0.2942945,0.2811296,0.20258892,0.20687091,0.22649541,0.3382682,0.34214327,0.3387423,0.29678154,0.6369313,0.2928618,0.2629597,0.23384501,0.20042312,0.2698934,0.31005666,0.3405085,0.30227205,0.24914166,0.26144564,0.23154871,0.3340872,0.21137278,0.35196835,0.3057012,0.42310157,0.2503503,0.36347446,0.71486896,0.5326935,0.090247944,0.082711056,0.21010393,0.37322128,0.32059154,0.08291891,0.5845513,0.29385093,0.06952051,0.035027426,0.08070936,0.05368589,0.017996635,0.008273126,0.015294114,0.008619138,0.006204284,0.00445758,0.0034284957,0.0028967478,0.002239709,0.0018145288,0.0014296978,0.0014668711,0.001038355,0.00068291073,0.0008972716,0.00037239504],[0.0076245326,0.0064619766,0.006698168,0.006701135,0.006402604,0.0072555454,0.0067693572,0.0073099164,0.007314516,0.007753721,0.008185676,0.008632604,0.009366512,0.0107838055,0.014360641,0.021679156,0.07893911,0.04661895,0.06329196,0.025906403,0.16765249,0.80740756,0.22283164,0.006519569,0.57455665,0.3291704,0.19051698,0.49559408,0.60864234,0.85925454,0.65040076,0.31361827,0.3399173,0.19037019,0.29791626,0.20476519,0.3389623,0.31007418,0.36923474,0.23604,0.27458912,0.24353585,0.26539722,0.19498107,0.30141157,0.26135615,0.3990607,0.30948752,0.37913886,0.27743924,0.9025931,0.96363,0.24839404,0.33728558,0.26968288,0.2673855,0.3546237,0.36880827,0.31581038,0.22765663,0.22401385,0.20476289,0.393601,0.36461678,0.31875414,0.2466248,0.28795663,0.22763908,0.42307207,0.24234587,0.27176875,0.7070242,0.2775171,0.1461965,0.1929418,0.64797944,0.48551136,0.021286411,0.20959465,0.71265763,0.1982022,0.026352888,0.053721234,0.057542514,0.0023181569,0.027449748,0.034607608,0.019970685,0.017090311,0.013746351,0.0115836235,0.01019628,0.0093194125,0.008513831,0.008159963,0.007284236,0.0072467527,0.007102369,0.0064591565,0.0072524124],[0.02620945,0.025803277,0.026258018,0.026783062,0.026656905,0.027930347,0.028305387,0.029525273,0.030688358,0.032280702,0.034185212,0.03686398,0.040242933,0.04560516,0.053524747,0.08467326,0.07208485,0.0992006,0.11585335,0.19184026,0.7574158,0.43873638,0.08316064,0.1144315,0.16883487,0.1297624,0.1682014,0.6394813,0.6650662,0.2287824,0.5935921,0.419844,0.42872128,0.23825435,0.27154025,0.19432631,0.3562792,0.31849203,0.24970669,0.19684128,0.2642449,0.16516936,0.43946227,0.36929345,0.2018067,0.21364203,0.23541713,0.23137082,0.32492584,0.27679923,0.3318611,0.3109111,0.28419557,0.3706482,0.31413716,0.24494746,0.21028663,0.25466096,0.25685018,0.27595684,0.25948387,0.27728683,0.16838114,0.31354848,0.34398702,0.39579192,0.28848404,0.4557647,0.25727582,0.3044751,0.30881685,0.43848205,0.61352247,0.1793998,0.11379507,0.11354269,0.7552096,0.035307825,0.08022042,0.603821,0.45560914,0.13684571,0.071699694,0.06941877,0.045597315,0.09801697,0.045148473,0.04171189,0.036910795,0.033977613,0.031633098,0.030126082,0.029027982,0.027818844,0.02739508,0.026420204,0.026306463,0.026096392,0.0256801,0.02596156],[0.018457301,0.018173581,0.017938271,0.017682051,0.017937388,0.017978162,0.01854116,0.018564265,0.019320453,0.020384222,0.021563606,0.023308853,0.026198268,0.029088318,0.040563785,0.06623434,0.00819337,0.035785303,0.052852403,0.3374546,0.5756385,0.21028522,0.5287454,0.57558346,0.108734146,0.15809776,0.32143313,1.1979846,0.4604535,0.34417295,0.73092335,0.98015183,0.856988,0.28246263,0.33909452,0.21116517,0.28170976,0.18543358,0.29069254,0.23306651,0.2752332,0.33789173,0.7755388,0.34811807,0.28475556,0.25978753,0.2823592,0.24260883,0.25403985,0.20309587,0.36501476,0.44844046,0.21606661,0.22701433,0.25979498,0.2585179,0.26986232,0.23271023,0.21258496,0.19839501,0.2149712,0.20706134,0.3162211,0.26113003,0.33114317,0.28128254,0.3856747,0.2576601,0.31703272,0.38621116,0.25487515,0.34456652,0.4811051,0.2919813,0.07016439,0.093132555,0.26847655,0.08225907,0.15653092,0.18556605,0.25389728,0.4680657,0.15037212,0.08236068,0.07571873,0.09506157,0.041017383,0.04567169,0.035467714,0.033130847,0.030566843,0.028116945,0.026204802,0.024755724,0.023040678,0.022250554,0.02105308,0.02047497,0.019698787,0.0190649],[0.007994386,0.0081371,0.008536277,0.008638937,0.009604036,0.009973446,0.010947242,0.011778151,0.012919088,0.01432785,0.016409442,0.018518034,0.021659316,0.025664236,0.035485804,0.038168877,0.022240676,0.074965805,0.11284869,0.7605594,0.35686332,0.16305895,0.11069607,0.21136472,0.03329332,0.16263595,0.49720106,1.0431352,0.4142185,0.33120868,0.3211787,0.22882424,0.34392783,0.5182001,0.2249538,0.25554115,0.19744101,0.31932232,0.17227551,0.27389947,0.1973814,0.72175276,0.5286439,0.2124906,0.22031352,0.19439633,0.2532487,0.3517093,0.31153,0.24990793,0.36069512,0.7487355,0.2866455,0.271286,0.21337414,0.24942566,0.31518307,0.2871793,0.29176855,0.29862374,0.27537498,0.27788907,0.15927826,0.23250489,0.34205368,0.39795953,0.27908674,0.34527734,0.3500765,0.34316355,0.20077753,0.31437343,0.17325449,0.6439371,0.6464109,0.121240705,0.034151576,0.6259785,0.16645734,0.2514337,0.5296663,0.7143371,0.22477062,0.078402065,0.07856524,0.07773513,0.00711587,0.01772532,0.009617606,0.010625819,0.010217637,0.0096880505,0.009124772,0.00867956,0.008511593,0.007992768,0.008067094,0.0076083667,0.0077976775,0.007874941],[0.014362958,0.013145208,0.0127986735,0.012635318,0.011660874,0.011564314,0.010825723,0.01048436,0.009975449,0.0097744055,0.009390251,0.009304369,0.009496697,0.010582244,0.015603179,0.007260091,0.051223736,0.03361047,0.43105784,0.53591704,0.04732897,0.43499464,0.33935153,0.029458333,0.056651365,0.49681273,1.2310511,0.5787886,0.22502545,0.41380814,0.21078056,0.37479118,0.19565974,0.32104638,0.32261315,0.29540387,0.24843352,0.1888565,0.25335214,0.32736462,0.3775117,0.2788829,0.26300615,0.28727022,0.29708886,0.29451776,0.2415891,0.26744813,0.29611146,0.31900436,0.36193678,0.30698988,0.24683006,0.23881684,0.23285839,0.3344489,0.3017582,0.35227746,0.23553674,0.19822507,0.17208666,0.24944967,0.31842732,0.28104308,0.15346701,0.30094948,0.33959475,0.3248925,0.30830044,0.19742906,0.2470287,0.31573322,0.29747674,0.25809303,0.55759376,0.71545017,0.18158993,0.3016354,0.48670593,0.29004142,0.177758,0.4543015,0.20652436,0.1452056,0.1343832,0.05902027,0.0678028,0.042470854,0.04231805,0.03517763,0.030661087,0.027354408,0.024820426,0.022596935,0.020894824,0.019374412,0.018190224,0.016828729,0.016016267,0.0154460855],[0.008704113,0.008339653,0.008967807,0.009697253,0.009573807,0.01030181,0.010527374,0.011312448,0.011657865,0.012825844,0.013690443,0.014673717,0.016247757,0.01793759,0.014258418,0.08740046,0.12250135,0.09985747,0.69531304,0.38885257,0.07149536,0.22241996,0.31619024,0.19746189,0.10897191,1.1578614,0.7871087,0.48255125,0.34143534,0.3248222,0.36174414,0.30288523,0.38138464,0.3181946,0.16050327,0.3732816,0.26910102,0.37009257,0.19658509,0.20466232,0.3075966,0.38935375,0.4312619,0.36919117,0.29758814,0.19445045,0.21925971,0.26346,0.28075364,0.2540173,0.27019566,0.348426,0.27548578,0.251103,0.23510902,0.20246667,0.24715388,0.37344813,0.75077385,0.7229032,0.79143155,0.52016044,0.13253313,0.23123264,0.36746508,0.36617434,0.48739198,0.30376512,0.17595862,0.30424294,0.20867683,0.24347238,0.14708164,0.3625806,0.19942568,0.8507699,0.3660329,0.08947263,0.64323974,0.11276095,0.25332862,0.5362424,0.35810447,0.063628025,0.06572089,0.016338183,0.018545063,0.009098482,0.010959719,0.008519107,0.007817554,0.0074802935,0.007564142,0.00760873,0.0075773057,0.0077747935,0.0077986345,0.0077190376,0.008005569,0.008786088],[0.018289728,0.01918337,0.018390523,0.017557077,0.017516177,0.016925445,0.016842358,0.016520865,0.017049318,0.017175244,0.017927248,0.019812288,0.022733433,0.030120192,0.042157758,0.049649496,0.09046079,0.4770604,0.5723177,0.091480926,0.2187585,0.42205253,0.06799716,0.60438305,0.7004335,0.99605924,0.7386133,0.17408831,0.3811845,0.31468818,0.36803296,0.34027755,0.3416566,0.3149722,0.4211426,0.13983954,0.25261632,0.38082057,0.3266849,0.48941177,0.432342,0.25131387,0.26605326,0.29358488,0.39742,0.3366945,0.33848903,0.3032036,0.3943476,0.35275054,0.77569705,0.30802834,0.35783386,0.23558545,0.3107776,0.21825841,0.41354844,0.27646148,0.7842282,0.81750727,0.60754275,0.41617483,0.45758194,0.3158052,0.44215998,0.3008136,0.09393173,0.17855889,0.32699153,0.2614656,0.31320366,0.30690348,0.2878539,0.3129175,0.34365967,0.7886679,0.886296,0.18447469,0.3115642,0.5989332,0.111102805,0.10394633,0.6120278,0.13153546,0.05940775,0.07199166,0.06722825,0.06173965,0.04765496,0.041919302,0.037354674,0.034062345,0.03096896,0.028612502,0.026812118,0.025191635,0.023523992,0.022526864,0.021267317,0.019797016],[0.0037630037,0.005713898,0.0062764124,0.0067661265,0.007909598,0.008728735,0.009767836,0.0108144125,0.012447835,0.014100879,0.016407192,0.019375185,0.023004169,0.02860333,0.044164464,0.016920282,0.08705169,0.636449,0.4557969,0.39745054,0.4462532,0.4975597,0.21168976,1.0920585,0.4758918,0.746395,0.72521275,0.30818725,0.40251356,0.23312902,0.27211016,0.23817904,0.36996964,0.33040047,0.26420006,0.28798893,0.2553352,0.16161735,0.26609102,0.49902633,0.33041316,0.4948601,0.6743887,0.38671172,0.29441422,0.27932397,0.3421082,0.33432057,0.33053145,0.28323373,0.51411754,0.29741094,0.47892168,0.94132763,0.5222816,0.2002535,0.3870016,0.24124625,0.5115242,0.91065717,0.10178216,0.40594435,0.34599775,0.28159615,0.12683849,0.2467603,0.30787387,0.3051203,0.26248026,0.428732,0.32433468,0.35023627,0.26559648,0.39663416,0.26997513,0.44442952,0.5692666,0.74456817,0.066598006,0.5160667,0.3306173,0.14362668,0.25426534,0.46895367,0.03576046,0.041167296,0.008177851,0.015423702,0.009171554,0.006791921,0.005042652,0.0037679377,0.0027424446,0.0019659726,0.0016377635,0.0019785522,0.002173277,0.0029546858,0.003253723,0.0036343224],[0.006557045,0.006543022,0.0059900493,0.005857845,0.005698175,0.005646261,0.0057930583,0.005826701,0.006029417,0.006601092,0.007346013,0.008668354,0.0102768475,0.012679994,0.013642315,0.10163577,0.5477806,0.5642906,0.06226648,0.26232195,0.57073563,0.17774987,0.7266638,0.46399507,0.16674481,0.3340645,0.36987928,0.2960189,0.2838567,0.37793195,0.21567623,0.2894731,0.2078903,0.2870461,0.24498671,0.23042381,0.19818364,0.34278202,0.17974712,0.27983776,0.21621571,0.7544493,0.31382537,0.65398914,0.6706366,0.5419803,0.46700728,0.28721413,0.33061543,0.32094446,0.84020174,0.30250823,0.38651216,0.44342032,0.4000805,0.46721828,0.4143845,0.26248118,0.50195855,0.45210359,0.3685141,0.28082812,0.3431561,0.22595364,0.3458492,0.2244597,0.20547113,0.16277993,0.3531309,0.2608957,0.3482706,0.3328331,0.40154505,0.2916517,0.41476223,0.27533126,0.32169986,0.87232906,0.04140875,0.40610483,0.81072295,0.17015886,0.019373352,0.7441515,0.09104533,0.03099581,0.030468315,0.030796025,0.022599282,0.018925803,0.016353248,0.01431402,0.012846365,0.01155806,0.010482863,0.00971085,0.008643255,0.008274873,0.0076853363,0.0070573674],[0.0068665836,0.0055001955,0.0056598354,0.0053109243,0.004810314,0.0048949467,0.004462745,0.004570808,0.004546598,0.0045902357,0.004992945,0.006067243,0.00788446,0.0117347585,0.036088012,0.123826295,0.5641489,0.35817882,0.13593702,0.40416276,0.6179858,0.11010338,0.7899744,0.4703148,0.3594001,0.41850784,0.27329934,0.48377496,0.4107053,0.3011615,0.24580373,0.20626843,0.25674552,0.22104888,0.21178778,0.27294725,0.25000563,0.1998503,0.24448733,0.2864123,0.295885,0.36243093,0.42672566,0.37021416,0.3120537,0.31064025,0.21306868,0.32949817,0.32538357,0.29419097,0.9147194,0.3409854,0.32662806,0.28379261,0.3063638,0.2951022,0.37902856,0.5564685,0.9830827,0.6074313,0.24574338,0.30724147,0.2255867,0.25646028,0.16191939,0.25537285,0.2802547,0.30244234,0.19970821,0.32279143,0.31733453,0.33202165,0.27130118,0.3597642,0.273933,0.37600514,1.0092032,1.0099076,0.23176418,0.18655132,0.76064396,0.3480752,0.17791381,0.52658665,0.53281206,0.09370541,0.028483035,0.03738227,0.019216942,0.017330866,0.014900917,0.013199986,0.011660803,0.010287032,0.009749176,0.008647476,0.008036477,0.0073537915,0.0067596524,0.0065914667],[0.024275593,0.02493277,0.02699834,0.028734379,0.030184427,0.032695666,0.034964744,0.03792253,0.041920077,0.046303753,0.05254832,0.060832676,0.074016854,0.09902218,0.1788798,0.5654162,0.565499,0.17446181,0.18567473,0.62597495,0.018275643,0.4573476,0.5656933,0.16208811,0.2529632,0.28244153,0.3188761,0.5884361,0.57343173,0.2546594,0.38364914,0.21524705,0.3129519,0.22464602,0.3327772,0.16389337,0.28039506,0.22886854,0.2901287,0.15755436,0.3221525,0.32812828,0.35144618,0.30109906,0.3919296,0.22701962,0.29933774,0.28718814,0.35617167,0.37978563,0.9020347,0.324603,0.3345918,0.20085573,0.36107615,0.31404257,0.97333026,0.8703998,0.6972559,0.30379087,0.40843236,0.34712481,0.29032713,0.22610281,0.31315038,0.22515024,0.20965494,0.17765124,0.28621477,0.23850873,0.26898956,0.34147564,0.26906413,0.2822894,0.44297636,0.9804546,0.76097393,0.8201087,0.8708744,0.2605582,0.6276938,0.4293959,0.51213676,0.33530748,0.679157,0.1259268,0.031608682,0.013958593,0.013713388,0.013399362,0.013950942,0.0148965735,0.015929405,0.016603883,0.017855894,0.018661655,0.019489948,0.020460019,0.021468913,0.023100976],[0.014270396,0.015236046,0.014866682,0.01509755,0.01566047,0.016057769,0.016542204,0.017376604,0.018221404,0.019528447,0.021113707,0.023738943,0.028229268,0.041924912,0.16172293,0.6384103,0.22156684,0.14459404,0.5419832,0.50357807,0.34552386,0.37027425,0.2875113,0.43028504,0.27378052,0.3724259,0.33063418,0.30439246,0.29960686,0.3044338,0.2663067,0.3591942,0.3448051,0.37158912,0.24307655,0.26459172,0.24596602,0.22148812,0.23001382,0.27313066,0.2623701,0.34117758,0.37456715,0.36067376,0.27794743,0.24642617,0.2816519,0.2555503,0.3094404,0.25867525,0.8783176,0.34012488,0.32725686,0.23598607,0.2548377,0.31587994,0.5992953,0.2948181,0.24282765,0.32392067,0.24483126,0.30614567,0.2310228,0.23897219,0.18822563,0.24944843,0.27684063,0.3134175,0.29674405,0.63672584,0.40594608,0.2891512,0.37543604,0.30087286,0.594192,0.7717858,0.3568199,0.31352764,0.724452,0.20426922,0.13590257,0.7622931,0.17846833,0.12888065,0.5251097,0.5751931,0.154276,0.05072157,0.042855304,0.031325642,0.025803326,0.022406412,0.019899998,0.018446093,0.01712987,0.01639066,0.015692819,0.015440683,0.015190139,0.014301192],[0.025592022,0.027282069,0.028377874,0.030238494,0.03238929,0.034539662,0.03778904,0.041501943,0.046229728,0.052864835,0.061715987,0.075833134,0.10055423,0.15988557,0.55959827,0.5380033,0.23886326,0.8307843,0.8265804,0.38014817,0.59529465,0.8206494,0.1638298,0.36539173,0.08341719,0.28020543,0.23835336,0.45321244,0.26884034,0.7220649,0.68891567,0.35762894,0.29031745,0.3674348,0.29172292,0.22772752,0.21978463,0.27758363,0.23397559,0.23974147,0.20976692,0.2797778,0.25504506,0.29284257,0.22439794,0.30061853,0.3525454,0.38278124,0.31776154,0.69888103,0.94723326,0.32320595,0.35194862,0.3440728,0.25187835,0.2695707,0.31665656,0.38315153,0.32581794,0.20023043,0.27060735,0.22993577,0.2596901,0.250758,0.2824401,0.24581087,0.18798305,0.23905219,0.32428628,0.60172564,0.38879338,0.32357392,0.37846115,0.2795707,0.24811077,0.18452413,0.39910424,0.20508942,0.5317652,0.7866192,0.17860895,0.69397444,0.3620344,0.18945579,0.40411875,0.42786247,0.22166303,0.007076236,0.0072905947,0.011937533,0.015608096,0.017586157,0.018936627,0.019860303,0.020632885,0.021410113,0.022210855,0.022695854,0.024076577,0.024373699],[0.0017881178,0.0040343646,0.005536988,0.008103704,0.010447175,0.012974475,0.016203554,0.019718386,0.023816075,0.029232834,0.035896197,0.04628661,0.0634466,0.10540584,0.40071246,0.55632937,0.13277742,0.023557944,0.85646653,0.23290536,0.37733012,0.7105838,0.15299907,0.46376404,0.25809917,0.41246158,0.15134197,0.33270293,0.16869037,0.60750353,0.5586209,0.36394033,0.33354607,0.3530931,0.17914326,0.29755503,0.21357773,0.26138303,0.1892973,0.2882467,0.20906861,0.2780704,0.22860412,0.27054754,0.1940923,0.27600214,0.2433111,0.39068988,0.22723325,0.8987637,0.93133724,0.3211302,0.33667117,0.33385524,0.33032465,0.24462596,0.2552564,0.25408128,0.163988,0.29910067,0.18936872,0.26252142,0.19516064,0.25338256,0.18070772,0.25958386,0.27105764,0.28027424,0.22723909,0.23466796,0.23549117,0.28586015,0.25016373,0.3713931,0.27276522,0.43978995,0.30444333,0.8206862,0.7773883,0.98481315,0.24893504,0.48210582,0.81629896,0.6354202,0.14477098,0.38081053,0.526501,0.15694103,0.07842912,0.05527391,0.04093681,0.031815965,0.024887001,0.019730058,0.015600473,0.011998051,0.009138588,0.006555986,0.0038728388,0.0024046283],[0.02209993,0.019519238,0.01873312,0.017037481,0.015547018,0.014407124,0.012569498,0.011080892,0.009059738,0.00726804,0.0075899228,0.014084022,0.03047439,0.079956576,0.43821067,0.5740061,0.11042421,0.66584206,0.541727,0.5236199,0.99228656,0.8993888,0.8298732,0.8043924,0.30334082,0.31648228,0.31462917,0.30114436,0.22032817,0.19258979,0.14031446,0.2869107,0.22270001,0.2599954,0.24464343,0.24739371,0.20945235,0.2785685,0.3325165,0.3259422,0.2328085,0.2687597,0.17661789,0.2817559,0.22284012,0.28881475,0.19822845,0.37108707,0.27263188,0.94515246,0.98448133,0.31661907,0.34414956,0.34958103,0.29144734,0.2625987,0.22530013,0.26265296,0.28258377,0.20914121,0.26485032,0.2648066,0.26087594,0.27210587,0.25850013,0.26803094,0.16757973,0.24517778,0.21411064,0.29874453,0.2738539,0.35760564,0.27470535,0.39947602,0.27556986,0.37000632,0.2276288,0.6587257,0.8676834,1.2156553,0.39453483,0.23574123,0.76284647,0.5750299,0.09087727,0.31015426,0.49216312,0.12080354,0.09176384,0.06919593,0.05640451,0.048599407,0.042340063,0.037882157,0.034408875,0.031044435,0.028806483,0.026730709,0.024352172,0.023197407],[0.027528636,0.026632424,0.027951077,0.028738026,0.029882634,0.031734742,0.033928722,0.036751866,0.040566687,0.04605595,0.054314364,0.068873346,0.1050065,0.32217667,0.72124994,0.2837686,0.07683233,0.83946764,0.37341204,0.3319983,0.8481059,0.21014501,0.5221569,0.35863253,0.4221866,0.31697714,0.35687125,0.17391706,0.27887568,0.26517057,0.35017937,0.1829262,0.28894046,0.20937206,0.2521009,0.21036798,0.3044071,0.16579108,0.493788,0.95801324,0.9798901,0.56345594,0.22863767,0.27744865,0.18306598,0.2871061,0.31658196,0.34524596,0.31720063,0.74827975,0.91064477,0.36460721,0.31985614,0.2262693,0.25987226,0.21587428,0.25563595,0.22590457,0.1966944,0.29476896,0.19877204,0.2101814,0.19209059,0.22163269,0.21070705,0.23130998,0.2971323,0.26273683,0.24029003,0.28771457,0.36628407,0.3383007,0.35879257,0.31972325,0.35065958,0.366407,0.36447135,0.2539046,0.39524764,0.3108813,0.3609611,0.34076363,0.59987324,0.769901,0.14805582,0.38227957,0.40727335,0.14643806,0.06834506,0.051686216,0.042026933,0.0364251,0.032814894,0.03031442,0.028642857,0.02742141,0.026724163,0.026349407,0.025847448,0.026318114],[0.008176052,0.007938323,0.0061521675,0.0053963163,0.0044979705,0.004154207,0.004722931,0.006154699,0.008868256,0.012833674,0.01892679,0.030557003,0.061697133,0.2749244,0.8900648,0.31591263,0.5774889,0.84703726,0.37576994,0.38197517,0.79664713,0.17599772,0.33186063,0.08018996,0.2791033,0.13170004,0.2827189,0.22987184,0.30222854,0.23812634,0.33806556,0.22531782,0.29104552,0.18245268,0.32739356,0.17690033,0.29114518,0.16438664,0.43699455,1.0289645,0.95052034,1.0394987,0.37396458,0.15102923,0.35554117,0.1697914,0.4546065,0.15473932,0.96369034,0.3470147,0.9712713,0.96893626,0.25921902,0.40007725,0.32109103,0.29465786,0.21980977,0.25400522,0.29283583,0.1418292,0.3476153,0.46045217,0.5629578,0.27895874,0.27446467,0.2446625,0.19575036,0.20681632,0.25512746,0.2333776,0.31964043,0.302788,0.33333248,0.32769868,0.36039022,0.2727357,0.36208802,0.33669195,0.40193537,0.2336785,0.79231435,0.48286372,0.43314683,0.7559352,0.20836256,0.22309218,0.12846705,0.11439285,0.044005953,0.035597287,0.030436568,0.026364328,0.023133663,0.020615708,0.01839839,0.016442696,0.014829811,0.0131424805,0.011845692,0.01004894],[0.0064534396,0.0049724453,0.0023767813,0.002532244,0.004968989,0.008542113,0.012450486,0.01740094,0.023383468,0.031683296,0.043290533,0.06331073,0.10878313,0.35046518,0.5933175,0.20200531,0.35733655,0.7656477,0.44712135,0.29953068,0.85623366,0.13753104,0.44977987,0.19013135,0.37770754,0.22115152,0.3975109,0.26960948,0.40821996,0.32179892,0.43387777,0.28317428,0.36781767,0.18645722,0.2602738,0.17907308,0.32754564,0.14790273,0.42204532,1.0095105,0.9681344,0.98064613,0.66873944,0.15042286,0.25996673,0.17978668,0.28268552,0.13241237,0.57031167,0.8314285,0.7485314,0.60552603,0.3017655,0.2915142,0.2789861,0.17888583,0.2977466,0.18563594,0.25782648,0.50520194,0.7847644,1.0777525,0.81917423,0.26443803,0.20304495,0.22378312,0.31401265,0.24555656,0.2691896,0.20499673,0.2764855,0.17785989,0.33669505,0.2826943,0.3934299,0.30471817,0.4311149,0.19608247,0.48355284,0.11683458,0.8160472,0.33308747,0.4081819,0.84462863,0.5666777,0.14317782,0.51967084,0.409792,0.14609972,0.08747638,0.06346628,0.049499974,0.03988596,0.033209797,0.027593302,0.023180313,0.019411085,0.016064417,0.013153079,0.009805947],[0.0058881342,0.0044675567,0.0030518686,0.0046439474,0.0071745594,0.01087486,0.01488245,0.020124419,0.026173629,0.03478304,0.046706393,0.06706711,0.11317104,0.3590319,0.6098599,0.22749372,0.102356836,0.67129606,0.29063264,0.34632143,0.8402747,0.13476765,0.48218247,0.078585036,0.3352926,0.24538605,0.38540092,0.29237714,0.39790678,0.24254172,0.3584212,0.27434036,0.27481195,0.19893539,0.38288245,0.22155496,0.2986653,0.13931674,0.47245628,1.0289389,0.96671295,0.959683,1.0439597,0.6169471,0.2757031,0.24679475,0.26401037,0.2519258,0.23252389,0.07923827,0.18994108,0.16931874,0.24362321,0.21494566,0.26475415,0.24074185,0.25148216,0.19476849,0.7499686,1.0667717,0.98882544,0.9876615,0.34754628,0.1477653,0.3548855,0.18935947,0.24040209,0.16192923,0.2930368,0.19414948,0.29108992,0.26455122,0.41668695,0.28907886,0.41273966,0.23554116,0.41477785,0.27650982,0.41943035,0.17348954,0.8663688,0.30172944,0.42526647,0.72754943,0.65764564,0.19178417,0.34229997,0.41244262,0.13791989,0.08958769,0.06616585,0.05192938,0.04177091,0.03447274,0.02840925,0.023783114,0.019351128,0.015970608,0.012711305,0.009268691],[0.010503162,0.009681893,0.0071297204,0.005221784,0.0031336388,0.000529915,0.0018182406,0.0053226557,0.009148113,0.014800009,0.023000702,0.038144354,0.0762686,0.30631697,0.65951,0.05622855,0.47817054,0.77046764,0.050869912,0.39735422,0.79051447,0.19489817,0.39571163,0.2860493,0.47203493,0.30462143,0.43086132,0.23147339,0.3292451,0.31473765,0.43886492,0.25528255,0.5921888,0.60532486,0.26038632,0.3728335,0.31173083,0.25206637,0.24308477,0.73163086,1.0350025,0.94134074,0.992654,1.0044156,0.20780782,0.2162872,0.2448198,0.21005054,0.25856805,0.32922322,0.28208238,0.26236537,0.26433432,0.23639254,0.24077559,0.22872363,0.24102789,0.70906776,1.0289185,0.9275359,0.93612045,1.0568221,0.4920458,0.15586416,0.25503233,0.17570934,0.35127795,0.21530895,0.29324564,0.18158346,0.3055887,0.22525686,0.3357088,0.20572507,0.35372198,0.23327208,0.39631155,0.12213566,0.39790064,0.13145965,0.8101842,0.36128584,0.4335909,0.8242942,0.6032447,0.13578734,0.4852807,0.38740727,0.14470373,0.087404296,0.06369854,0.049973853,0.040838264,0.034435496,0.029106226,0.025211282,0.02161111,0.018726682,0.016262168,0.013558977],[0.0022035255,0.003317397,0.0059460793,0.00852155,0.011676926,0.01542558,0.019364905,0.024738148,0.031201877,0.040071264,0.053361636,0.07589655,0.12735772,0.3909522,0.42488742,0.10401639,0.57388556,0.6974908,0.10949222,0.38347155,0.8162527,0.113458335,0.34476313,0.11070028,0.28178948,0.18156002,0.36258283,0.28108975,0.33058217,0.25008544,0.36162457,0.26262128,0.40362877,0.48819375,0.2938793,0.6819079,0.42758602,0.18879303,0.27402237,0.16919725,0.8292588,0.97519886,0.9794758,0.91615325,0.77074724,0.18883215,0.29558143,0.21763314,0.2802196,0.1221704,0.2647634,0.17691527,0.2630324,0.20370997,0.2870345,0.19824459,0.34405574,0.9724845,1.0197754,0.9329189,1.098734,0.5969701,0.22607535,0.22042094,0.3287766,0.29549298,0.27161622,0.25671148,0.3314151,0.2817136,0.2714775,0.19066526,0.2678847,0.19270356,0.275826,0.13536352,0.27234185,0.18451993,0.35893932,0.20050874,0.8372494,0.3268288,0.12410945,0.7268082,0.5760086,0.13038562,0.41004837,0.3910683,0.11086065,0.0697133,0.050021827,0.038128596,0.030151282,0.024120418,0.019106658,0.015371352,0.011762041,0.008732579,0.0062642302,0.0035950653],[0.002630597,0.0014236196,0.0030133934,0.005431855,0.008288044,0.01204263,0.015501104,0.020747794,0.026818356,0.03507773,0.04746525,0.06863212,0.11729533,0.3714393,0.4628105,0.0691121,0.6862908,0.69750744,0.035515957,0.3868327,0.8162466,0.17512202,0.362263,0.3086067,0.44004276,0.31052622,0.49779284,0.3026402,0.38331926,0.77039766,0.47624168,0.2916371,0.4199582,0.21266748,0.36636832,0.39755496,0.5019882,0.13975418,0.361868,0.13432932,0.5951199,1.0178188,0.9970936,0.9969926,1.0331298,0.668925,0.22154422,0.2286701,0.24951762,0.30695915,0.26175293,0.25355,0.28630567,0.21605915,0.2653574,0.27298126,0.8578372,0.941625,0.96901006,0.9900191,0.66125226,0.12721962,0.32859832,0.16978236,0.34597585,0.22601445,0.7300241,0.64394516,0.30526835,0.3714774,0.34014216,0.30327424,0.27234355,0.2158415,0.28831846,0.2427991,0.33477408,0.13127561,0.3711866,0.17889601,0.7152246,0.62265116,0.1125659,0.70535624,0.6393303,0.1269068,0.49725318,0.36157346,0.13676487,0.077818185,0.054510206,0.041190915,0.03288306,0.026389174,0.021406122,0.017557032,0.01398811,0.011034406,0.0084457835,0.0053905398],[0.014401784,0.013038459,0.011122774,0.009092623,0.007455987,0.0055576726,0.0037357537,0.0033786246,0.0060386453,0.011161065,0.020201152,0.03740915,0.081211716,0.33346418,0.51364577,0.17609462,0.6603343,0.5960994,0.4046571,1.1241425,0.56424063,0.28380936,0.37393302,0.21269831,0.2794394,0.44681782,0.9211468,0.59136474,0.23867369,0.33789623,0.2890393,0.2121581,0.29307845,0.38427553,0.3791974,0.26645967,0.21423219,0.37767696,0.27674446,0.24856304,0.20781279,0.6520168,0.99011356,0.8984005,1.0047626,1.093417,0.68916076,0.15413141,0.3075731,0.09757737,0.28595218,0.15357868,0.22852674,0.23031363,0.27068797,0.76632303,1.0692397,0.91964287,1.07689,0.6660458,0.28784963,0.23096783,0.25971663,0.20879106,0.38900337,0.28323424,0.28985924,0.2830644,0.3327785,0.2908737,0.36142388,0.31021857,0.35221827,0.31469682,0.32317993,0.1372183,0.2774625,0.20672537,0.33393162,0.24775574,0.9039484,0.30534512,0.14491925,0.665517,0.71458507,0.46431518,0.34041938,0.43942598,0.12435519,0.08491165,0.064155936,0.05124282,0.042888053,0.03627192,0.03143329,0.027356042,0.024246119,0.021336697,0.019176275,0.016742857],[0.023656314,0.02408439,0.022630734,0.021583214,0.020643387,0.019807784,0.018799841,0.017340474,0.01536472,0.012599875,0.008531888,0.013084867,0.049417134,0.28806123,0.5642489,0.22468047,0.7606894,0.51818323,0.443556,0.7102497,0.2265524,0.40087703,0.30421293,0.57947916,0.6665846,1.0170966,0.3508899,0.27689874,0.39750105,0.32762408,0.36270916,0.5692272,0.51118,0.3664433,0.22574599,0.52089137,0.6038513,0.33783126,0.3328134,0.24298063,0.24441001,0.21789286,0.86393857,1.1254325,0.741042,0.85550433,0.8736793,0.40106112,0.23610148,0.48341018,0.23151991,0.4572786,0.43727422,0.37232095,0.21560602,0.8370288,1.0122347,0.9853202,0.7075146,0.20151547,0.23161729,0.20484956,0.27682275,0.3357107,0.21568806,0.2752127,0.50274694,0.36583424,0.41318956,0.34183994,0.37860483,0.30376172,0.3910372,0.29412714,0.38493896,0.37608755,0.43994233,0.15871343,0.3099809,0.4139808,1.1095616,0.36815518,0.14543907,0.6431998,0.802343,0.41470942,0.45275947,0.37183067,0.18421663,0.105439566,0.07628337,0.060284782,0.050642252,0.043465223,0.038881417,0.034897696,0.031842344,0.029653586,0.02779306,0.02587521],[0.006010775,0.0062979143,0.0049836296,0.0038120819,0.0033270854,0.0033057379,0.0047056335,0.0068558725,0.01071735,0.015703045,0.024790606,0.04200195,0.08618719,0.33928317,0.5104878,0.113745324,0.68384075,0.584681,0.45623606,1.0538778,0.33472246,0.33329523,0.3161134,0.68796295,0.7461546,0.6841805,0.78015846,0.48613444,0.2430127,0.2501568,0.32976195,0.82489616,1.0861495,0.97993857,0.37031522,0.8392936,0.80652666,0.31659523,0.31489372,0.18832736,0.29494858,0.18412493,0.5923378,0.68336827,0.25102264,0.47866422,1.1693405,0.5641302,0.32218656,0.9957985,0.6164308,1.1316508,0.734831,0.118407056,0.2729536,0.89882576,1.3656764,0.6436952,0.29183674,0.2056743,0.35416353,0.23504509,0.35445338,0.31889242,0.7150682,0.27343044,0.14796937,0.2320964,0.27905086,0.25932854,0.3277309,0.32025522,0.33126095,0.3216683,0.36577946,0.19668545,0.29508042,0.3915609,0.3233497,0.17427269,0.60516703,0.27809897,0.073980786,0.6063757,0.712155,0.54035103,0.18325828,0.4908055,0.013115085,0.02679116,0.02689372,0.023815967,0.02103995,0.018502327,0.016272955,0.014154524,0.012556562,0.0108219255,0.009779748,0.008048635],[0.031958412,0.030724537,0.030919047,0.031143563,0.031233229,0.03235417,0.033491645,0.03528112,0.038658373,0.043304257,0.051726192,0.06779807,0.10982602,0.3534874,0.48771587,0.16503376,0.6207577,0.6700111,0.20377065,0.67534417,0.9821057,0.389939,0.35641408,0.27760917,0.31343028,0.23970185,0.4500977,0.53444576,0.4995998,0.8890039,0.24840127,0.3997947,0.5716163,0.72145104,0.37133843,0.6114976,0.46571314,0.23742753,0.24815986,0.25563878,0.22182016,0.2605953,0.1648729,0.20418303,0.28602314,0.3830186,0.6918236,0.4457669,0.088850096,0.8712817,1.0131512,0.9821935,0.7438622,0.22479321,0.29411855,0.42765868,0.50875366,0.16433772,0.28817368,0.1965501,0.38267574,0.32809368,0.2555857,0.59416795,0.60613674,0.24421494,0.6545033,0.78785855,0.7065304,0.71136314,0.6147103,0.32513654,0.39714372,0.33022013,0.3114178,0.6722882,0.73418874,0.114213765,0.3777491,0.30469987,0.36524367,0.11056977,0.06763006,0.6308727,0.7299582,0.59699905,0.018324384,0.5622542,0.31686676,0.12491883,0.08182718,0.06334394,0.05288736,0.046250775,0.041878685,0.038625237,0.036244933,0.03464058,0.03277667,0.032559726],[0.030580766,0.030154001,0.032063253,0.033105876,0.03503792,0.037703,0.040708665,0.044756625,0.050457746,0.05824018,0.07055442,0.09198725,0.14239715,0.40504393,0.43440276,0.07269866,0.5962739,0.74420446,0.08506095,0.25305578,0.9806136,0.32834667,0.33977774,0.23989093,0.3408829,0.27627665,0.39549416,0.22440045,0.57991654,0.5716972,0.38816026,0.33079922,0.28555778,0.25624493,0.4197292,0.44571096,0.43584797,0.27123463,0.22564404,0.24097288,0.24232256,0.24801502,0.26137745,0.2842374,0.18549137,0.26229173,0.25322297,0.30833083,0.20398688,0.88209033,0.9575339,1.0600474,0.779765,0.19578251,0.44096768,0.25948808,0.2578285,0.2664377,0.24010037,0.26122126,0.1857637,0.17479177,0.2525191,0.3732384,0.3152651,0.6538506,0.7489716,0.5047473,0.66304517,0.91068816,1.1725091,0.55782,0.14139286,0.3843412,0.3138196,0.45281234,0.9975965,0.5846967,0.3053258,0.3041405,0.3727768,0.12806678,0.053235985,0.61980355,0.6866843,0.5885468,0.024263393,0.5335953,0.24715917,0.08975777,0.056937154,0.04400764,0.037429594,0.033542313,0.031527493,0.029725676,0.029033381,0.029006291,0.02867999,0.029505216],[0.021106595,0.021303575,0.023280371,0.024460034,0.026759172,0.029234046,0.03249436,0.03642698,0.04234784,0.04979717,0.061835866,0.0825288,0.13115661,0.38426045,0.42558667,0.053694785,0.64900804,0.7055099,0.12550187,0.41828427,0.7141899,0.13423733,0.36721826,0.14364865,0.28052992,0.1747794,0.30403507,0.25001636,0.27767664,0.25476664,0.3416541,0.24670418,0.4359304,0.32452467,0.45443293,0.3041742,0.19186416,0.1960286,0.2692282,0.23242694,0.24887146,0.22942713,0.2340541,0.21458036,0.2733723,0.2499253,0.342441,0.35819528,0.17111467,0.81843674,1.0265685,0.9307168,0.83400005,0.2627986,0.34833738,0.15276974,0.30095834,0.1455976,0.30970585,0.16167009,0.33246455,0.21721725,0.29603663,0.17606184,0.3904685,0.3724581,0.48667574,0.32087746,0.23623233,0.3506662,0.5561033,0.8467836,0.2750342,0.31462252,0.38565195,0.25541157,0.911002,1.0311677,0.37771398,0.31145558,0.6403311,0.39613235,0.18641599,0.71203274,0.63960594,0.6526839,0.0502661,0.5655792,0.24756816,0.07944165,0.04493584,0.032094818,0.025591567,0.022122877,0.020528255,0.019233432,0.018945368,0.0190066,0.018974725,0.019951139],[0.035472535,0.03555978,0.037126243,0.038599197,0.040969264,0.04359178,0.04722037,0.05160493,0.057896055,0.06601558,0.07904945,0.10118007,0.1520793,0.4147749,0.45814458,0.15316677,0.553961,0.7845657,0.39311823,0.34417933,0.86643696,0.22278096,0.36306453,0.23335993,0.42107683,0.2704328,0.3878323,0.21272546,0.32217643,0.26737365,0.28040898,0.36456943,0.5134791,0.3638608,0.28177485,0.31860775,0.35107172,0.23733087,0.2536445,0.2185504,0.26415163,0.22558436,0.26889035,0.24215394,0.23167282,0.22048357,0.22065814,0.38608143,0.2887663,0.37379324,0.9210004,1.0856022,0.7898171,0.17712207,0.30119517,0.22370912,0.27298266,0.2527015,0.24988781,0.24595276,0.23097777,0.20927931,0.24942082,0.33258188,0.4407247,0.3719215,0.29451612,0.51492065,0.52529055,0.27416626,0.36058694,0.35596555,0.41840678,0.31891954,0.37457734,0.24032904,0.9005748,0.37025732,0.26100484,0.28057402,0.3033516,0.029084692,0.15947786,0.63320446,0.715448,0.5761244,0.035489306,0.5925458,0.26322863,0.096644945,0.062336136,0.048905674,0.041907124,0.037996538,0.035750937,0.034263015,0.033510342,0.03348703,0.033223033,0.034153353],[0.011747594,0.011466419,0.009983979,0.008949337,0.007755725,0.0063137314,0.0050421716,0.0040133074,0.004128632,0.006381457,0.011633909,0.022273334,0.052143782,0.25846022,0.8264591,0.097361214,0.53725725,0.8488913,0.40567324,0.26187184,0.75787526,0.17073867,0.36261955,0.25298637,0.3893347,0.28721574,0.39329764,0.3036476,0.36549613,0.26623267,0.41594365,0.22922531,0.68982893,0.63633937,0.32643154,0.3742991,0.27428132,0.2345694,0.24452299,0.24742511,0.23749323,0.23712388,0.2394497,0.22291134,0.271446,0.2329887,0.34832615,0.31722984,0.256376,0.18513897,0.9160302,0.93244195,0.7426431,0.2708486,0.24848954,0.20176098,0.2624313,0.1840006,0.2775148,0.19386885,0.28889987,0.22642955,0.2728595,0.27786678,0.90094256,0.7184719,0.34820563,0.2827217,0.2770001,0.40866318,0.3897161,0.28435475,0.340705,0.26853606,0.39239365,0.37161434,1.0233964,0.954873,0.6126603,0.26642466,0.4715739,0.4444431,0.05252738,0.6856879,0.6933914,0.5460616,0.26204628,0.8062762,0.09593382,0.015076909,0.023411507,0.024186134,0.02359179,0.022118816,0.02041326,0.019117467,0.017609082,0.016211335,0.015269509,0.01341816],[0.010106305,0.010242963,0.009395828,0.0095564965,0.009160466,0.008638203,0.008417065,0.00802524,0.0067986245,0.005575249,0.0024940227,0.008475225,0.03803292,0.25833365,0.88511616,0.15453334,0.43717307,0.66522235,0.6476417,0.21877573,0.56630206,0.936138,0.21553941,0.3119038,0.17148395,0.37420356,0.29470238,0.37665412,0.30897337,0.61154646,0.2907374,0.5136214,0.6483813,0.2401053,0.34528682,0.29907817,0.40374228,0.24039376,0.25140312,0.2206725,0.26381886,0.22354712,0.26679438,0.22992663,0.24467121,0.20075452,0.20935784,0.35855734,0.41755122,0.2649245,0.9955316,0.9697078,0.18418193,0.27193174,0.23396017,0.2916054,0.21239583,0.29969782,0.20629284,0.28436095,0.2022064,0.25461453,0.21794187,0.26007423,0.30307707,0.3098785,0.23068346,0.36862582,0.29974896,0.25807393,0.16279252,0.43272665,0.4816969,0.40376982,0.27219778,0.7045356,0.8062498,0.74392205,0.7214687,1.0083071,0.5799406,0.1678079,0.52562475,0.48523405,0.8774866,0.39916015,0.40654317,0.32611454,0.14670007,0.07440385,0.048748724,0.0351484,0.02736121,0.022233773,0.018572072,0.01638914,0.014328708,0.01275873,0.012147201,0.0105254315],[0.0030560982,0.0032657555,0.004415035,0.005108719,0.0063793515,0.007709053,0.0092321215,0.011112443,0.01385491,0.017255632,0.023433754,0.03468183,0.06526556,0.26841858,0.7900116,0.3127898,0.111687414,0.6822318,0.6152818,0.19595765,0.16721208,0.92085516,0.7338785,0.37381065,0.2967255,0.23055135,0.32704586,0.30588907,0.5716112,0.28788084,0.30221412,0.24447346,0.30869696,0.37628517,0.3527861,0.35780206,0.2928979,0.23846415,0.23761797,0.25813606,0.22237898,0.256938,0.21851142,0.26211447,0.24763452,0.34819943,0.5047287,0.15751964,0.33418813,0.12903383,0.7212416,0.5369075,0.47375765,0.7296411,0.4201158,0.27588332,0.24261336,0.21017317,0.2517463,0.22221343,0.254686,0.2501976,0.234878,0.28179052,0.294109,0.4424672,0.74301004,0.458004,0.29774538,0.38544026,0.28949445,0.25942245,0.42201036,0.26087117,0.29976833,0.26798928,0.19124898,0.39331955,0.18579276,0.5625385,0.6001279,0.27047768,0.6384222,0.69131273,0.7038451,0.33728933,0.62684035,0.36310464,0.06812191,0.037714973,0.023866348,0.015940178,0.011597566,0.007999735,0.0059072813,0.004173133,0.0027908755,0.001894699,0.0015990101,0.0020398411],[0.035052642,0.034622442,0.035432495,0.036214683,0.03747212,0.038699474,0.04070672,0.04323408,0.04721628,0.0523621,0.06152251,0.07803841,0.12013966,0.3758477,0.78794175,0.47611234,0.19726351,0.64398277,0.68125504,0.27569988,0.2392666,0.57823056,1.1650596,0.3040993,0.3329533,0.27751565,0.2019165,0.50311035,0.2700497,0.30287662,0.2407289,0.3020686,0.23940796,0.3196533,0.30937988,0.33789194,0.3632805,0.27585354,0.21409357,0.2633842,0.21726134,0.27738142,0.19739012,0.31927124,0.2326158,0.54687905,0.95836323,0.66850555,0.7512055,0.68234736,0.21963815,0.21378918,0.29704338,0.9533369,0.69276404,0.25122318,0.3319348,0.2136666,0.27426213,0.2260828,0.2551915,0.21693873,0.2879476,0.36556196,0.6712309,0.3468928,0.7843791,0.4653068,0.33566293,0.32791314,0.3513278,0.29446426,0.30519903,0.5974764,0.23079899,0.33649775,0.22729479,0.32417345,0.2539982,0.7077758,0.6335335,0.24450414,0.607513,0.67302495,0.56720346,0.10540248,0.9384362,0.16078812,0.0043891314,0.02603014,0.033027716,0.03524911,0.03525228,0.035589702,0.03491961,0.03462765,0.03449693,0.034264266,0.034011275,0.03437204],[0.010082847,0.009130677,0.009150361,0.009152777,0.009316041,0.00908296,0.0091783935,0.008820289,0.008843027,0.008057184,0.00788015,0.0067330045,0.0066843834,0.044089336,0.48278165,0.8299282,0.31313848,0.68602467,0.68477577,0.65806764,0.08068803,0.67384094,1.0116568,0.7831168,0.37457344,0.33090788,0.48438844,0.20696363,0.24655429,0.24318145,0.2252306,0.41383433,0.89301807,0.5851573,0.28783664,0.39571175,0.21350116,0.2574766,0.21786912,0.27597058,0.20312211,0.27615327,0.2006912,0.27765587,0.2778605,0.5164069,1.0397354,1.0260235,1.0010874,1.0793637,0.3495979,0.38265717,0.8463512,0.5704672,0.3783484,0.3130745,0.25151962,0.2071622,0.2509435,0.22615796,0.24710603,0.24995394,0.26460776,0.3577184,0.5696223,0.3271864,0.20933056,0.2953324,0.3343128,0.3533687,0.31977645,0.36149022,0.34680638,0.43883783,0.553209,0.403699,0.23863429,0.40119946,0.21521956,0.6339636,0.5364164,0.12597704,0.67133,0.69789296,0.64553016,0.24786842,0.8842554,0.29445854,0.034256604,0.008368398,0.0023173713,0.005592068,0.007165755,0.008476314,0.008745901,0.009325814,0.00941685,0.009722723,0.009259653,0.009749863],[0.024786709,0.022355067,0.021609364,0.020136444,0.01930895,0.017838158,0.016759584,0.015009076,0.013440109,0.0104689,0.0067133377,0.0005352346,0.015928984,0.07301315,0.3049894,0.8030772,0.06973563,0.67488813,0.6724713,0.60647815,0.022408275,0.5886683,1.1710771,0.455175,0.35690808,0.5023632,0.21524756,0.28609747,0.2682743,0.2114393,0.28948507,0.2861643,0.739813,0.80146617,0.2171676,0.396518,0.28788483,0.2988128,0.1959891,0.27736753,0.20894895,0.2811955,0.19707268,0.37951162,0.25341886,0.5299535,0.997787,0.93302053,0.96122503,0.9358128,0.8403206,0.9025993,1.0248594,1.0562687,0.51524913,0.31990156,0.34263784,0.26458165,0.2356864,0.2576481,0.22951196,0.24646954,0.21282648,0.3229478,0.24461584,0.35002267,0.4142669,0.3381407,0.2394142,0.32682115,0.37720948,0.7893206,0.22267428,0.41056398,0.24635,0.52603,0.19680674,0.37021443,0.14592192,0.7787137,0.52076095,0.27632338,0.81642026,0.57742083,0.7008633,0.5044129,0.528532,0.11326599,0.07190461,0.062781446,0.05405931,0.048088245,0.04281352,0.03912994,0.035632428,0.032965053,0.030665593,0.02876708,0.026709326,0.025732385],[0.039400592,0.036647886,0.03614135,0.03504673,0.03446227,0.033533026,0.03310619,0.031965826,0.03138192,0.0298048,0.027899593,0.023949966,0.016072948,0.017343735,0.38327906,0.9037257,0.22369407,0.20695513,0.58972836,0.8445252,0.23126279,0.50077605,0.98060775,0.31807023,0.58701384,0.28982836,0.28027865,0.21607734,0.21714906,0.2959403,0.176596,0.47672272,0.9061292,0.9336653,0.5566123,0.3023417,0.3425815,0.23082086,0.23974998,0.25644594,0.2184491,0.26025665,0.2707806,0.38306022,0.27413553,0.5268868,1.067168,0.96902037,0.98291564,1.0170704,1.0057049,1.0170739,0.90364224,0.9882485,0.58428764,0.25348344,0.37383226,0.192757,0.2595905,0.22012241,0.25062647,0.24380855,0.25358602,0.34175783,0.399179,0.3381404,0.28615332,0.27448988,0.20304282,0.26887715,0.29643402,0.43937263,0.30859473,0.36252603,0.23687886,0.4746303,0.20468445,0.52436274,0.23702067,0.7277232,0.35986662,0.31678462,0.7918105,0.6853192,0.5923021,0.46544072,0.5172626,0.17378713,0.12536265,0.09429532,0.07802641,0.06833183,0.060832847,0.055694595,0.05130137,0.048147887,0.045331463,0.04319431,0.040984854,0.03997313],[0.003459,0.0039819106,0.0035188708,0.003635897,0.003502169,0.0038134255,0.0038263325,0.0044625914,0.0049218815,0.00655554,0.008738301,0.013621087,0.024396168,0.061781693,0.27953395,0.68887067,0.59328514,0.29486796,0.6004334,0.75100625,0.35916528,0.13925824,0.39639005,0.5645552,0.2519291,0.22113371,0.20192593,0.3535353,0.20739672,0.26241347,0.19299589,0.37716493,0.7548513,0.20348349,0.3822814,0.27405208,0.39452785,0.21476886,0.27175486,0.20690073,0.27792832,0.21264379,0.27121603,0.31838268,0.33231154,0.41924852,0.955749,0.91683954,1.0236256,0.8862235,1.0070782,0.899229,1.0986745,0.6823832,0.2536226,0.38556394,0.3222968,0.2969806,0.23240097,0.25258157,0.2406804,0.23536153,0.22887492,0.30255812,0.31021008,0.3232844,0.4033069,0.27620056,0.26368597,0.22120199,0.26521957,0.16869128,0.2524221,0.21365593,0.24333085,0.15836278,0.5096587,0.47859302,0.53414136,0.768365,0.11906212,0.63849527,0.6739927,0.619052,0.063746825,0.70981663,0.28816494,0.03361761,0.0027301896,0.003929326,0.00546224,0.0055193603,0.00593307,0.005611969,0.0056082495,0.0050736736,0.005077946,0.004525884,0.004541951,0.0039689117],[0.033019196,0.0335267,0.03224962,0.03208998,0.031586066,0.031000927,0.030608375,0.029899608,0.029048497,0.027956873,0.025605898,0.022108039,0.014000027,0.009370879,0.064630054,0.4749908,0.8540448,0.20428184,0.29012018,0.66179323,0.7247191,0.0144408895,0.8617175,0.6489874,0.3675174,0.31469852,0.35598776,0.21254589,0.5264762,0.44364735,0.25374842,0.23713964,0.1708449,0.25414962,0.30325952,0.3731885,0.3131895,0.24116471,0.24319716,0.24073733,0.24379991,0.22155884,0.34929803,0.3151915,0.38523805,0.24994504,0.5908895,1.0619973,0.9339586,1.0304365,0.9805415,0.95082074,1.0175197,0.6861633,0.26705998,0.36695057,0.3063608,0.31487647,0.22031607,0.24963485,0.22745109,0.25529543,0.26246247,0.3606754,0.364657,0.34865758,0.25401065,0.20483534,0.24568799,0.23413406,0.24717993,0.28712708,0.30516592,0.18707226,0.351339,0.24574235,0.2423369,0.39779222,0.6135232,0.75905865,0.09525284,0.65179247,0.68459886,0.70576584,0.2079021,0.6068654,0.2042977,0.10860054,0.07168755,0.06303143,0.05625384,0.05070181,0.047266804,0.043897256,0.041619394,0.039569225,0.038069896,0.036581147,0.03570322,0.034324124],[0.038690615,0.03920836,0.038604844,0.038956244,0.039469138,0.039935827,0.04079983,0.041630395,0.042689577,0.044563364,0.04629097,0.049078684,0.052776936,0.061782222,0.058108464,0.1700113,0.760357,0.36997157,0.28672406,0.629821,0.7962506,0.1726602,0.91025406,0.49572915,0.19922075,0.28719422,0.36454183,0.744533,0.7189719,0.41857952,0.2638914,0.27508408,0.26962197,0.2262185,0.2586236,0.31042507,0.3592039,0.23938987,0.25347027,0.21792561,0.2757309,0.20441711,0.3365453,0.30798164,0.380316,0.25450128,0.5836003,1.0367032,0.95202273,0.93080425,1.005632,0.9746423,1.0403303,0.71323854,0.23018095,0.40922725,0.298284,0.2768573,0.21580699,0.26775286,0.22922139,0.24373443,0.30544823,0.33896643,0.2924261,0.36287624,0.33965012,0.24219656,0.26369002,0.21542656,0.31154877,0.29997668,0.42274752,0.70493037,0.4203971,0.19964531,0.36986762,0.4342229,0.8405221,0.57476765,0.3328057,0.8495721,0.6066334,0.44436407,0.45489493,0.5456475,0.09690205,0.079539634,0.07719515,0.06431918,0.057702105,0.052654978,0.04961951,0.046707742,0.044656534,0.0430884,0.041970037,0.040895008,0.04026698,0.039288424],[0.04175548,0.04380604,0.043542285,0.043845907,0.044711165,0.04594778,0.047254298,0.04889085,0.05108713,0.05397754,0.05736049,0.062114567,0.06793214,0.07328263,0.094027475,0.20562115,0.66684324,0.54647356,0.24507457,0.72546285,0.7677498,0.3925066,0.65696967,0.7673437,0.7489737,0.76432383,0.9089778,0.92910856,0.25811407,0.3236911,0.2006701,0.25520584,0.18901606,0.28646478,0.21280226,0.34115872,0.32627708,0.24389452,0.23598653,0.2523033,0.22705929,0.24361287,0.31915474,0.35338917,0.32399324,0.40339366,0.862356,0.98858345,0.9770085,1.0502685,0.6364594,0.62129873,1.0973352,0.6486145,0.29199678,0.3466571,0.32543868,0.238136,0.24112853,0.23080705,0.24591708,0.2298622,0.32777342,0.36431322,0.36686906,0.2698748,0.25072727,0.2018253,0.26188165,0.25482905,0.39810663,0.2627977,0.59641945,1.1263764,0.9362422,0.43498257,0.2994653,0.40859148,0.71427816,0.871913,0.4612261,0.7451105,0.64809114,0.31837592,0.7033427,0.63032895,0.16774414,0.104702264,0.07419269,0.06656786,0.060574554,0.055838313,0.052882288,0.049799863,0.048117064,0.04637393,0.045196634,0.044662032,0.043668117,0.04308427],[0.014340065,0.015629604,0.015642226,0.015912812,0.016434258,0.017203238,0.017867938,0.018679397,0.019842913,0.021569982,0.023497287,0.026690638,0.031076092,0.041753132,0.0466454,0.031009639,0.6643865,0.63558334,0.10498403,0.33166656,0.81929547,0.21800727,0.83936995,1.1494951,0.4829101,0.6029578,0.4916478,0.3828863,0.276712,0.2551019,0.21420115,0.281091,0.23892587,0.2421852,0.21624877,0.26518345,0.26523525,0.26321596,0.22449581,0.25320125,0.23550992,0.25336176,0.2738066,0.3905883,0.25110403,0.5574738,1.0805945,0.97363406,0.662967,0.3082129,0.27747732,0.12592123,0.78958124,0.7171622,0.2426696,0.3933714,0.31281224,0.33493456,0.22206485,0.26190844,0.23375668,0.24810682,0.24875683,0.2600326,0.23066825,0.23390968,0.25462133,0.26259646,0.23354824,0.33650473,0.33870703,0.3310524,0.31138885,0.70162,0.78688145,0.2783205,0.4454124,0.13988909,0.63343364,0.8640759,0.43214217,0.800782,0.6291623,0.100872755,0.5366882,0.12152247,0.018760193,0.018553121,0.027251516,0.022038788,0.019946065,0.018375676,0.017737217,0.01660078,0.016414888,0.015948074,0.015474423,0.015743282,0.015056245,0.014933368],[0.022981789,0.022142934,0.022368008,0.022799876,0.023109797,0.02379316,0.024710877,0.025412278,0.026888307,0.028260898,0.030448144,0.032964032,0.03715315,0.04508639,0.04634018,0.021269536,0.021389928,0.8018253,0.43232235,0.099835195,0.8837992,0.75178254,0.19524394,0.30321935,0.32094863,0.12802728,0.24399126,0.22003835,0.23859324,0.24592137,0.26929203,0.2095003,0.24193361,0.24612635,0.2633819,0.23279482,0.22951919,0.22565241,0.25197065,0.23726112,0.23957814,0.23196486,0.33324116,0.34802806,0.32762527,0.4346591,1.0332067,0.6041741,0.16501044,0.20511197,0.29702142,0.254109,0.22890846,0.35501608,0.33658427,0.33320972,0.3329779,0.33326092,0.23017333,0.24437808,0.22884217,0.25149706,0.22836696,0.26293123,0.24372791,0.26211768,0.20894371,0.24475445,0.22165991,0.26408538,0.3079351,0.37718585,0.3253682,0.37128058,0.6570274,0.9166692,0.7875054,0.6113735,0.5727432,0.41696617,0.96438974,0.54664755,0.75438076,0.28276345,0.6340136,0.10738495,0.04036604,0.037444796,0.04150317,0.03499592,0.031238688,0.028928684,0.027147243,0.02574233,0.02462494,0.023792112,0.023381963,0.022535808,0.0226584,0.022628494],[0.029066164,0.027581254,0.027668884,0.02784492,0.02783628,0.028516918,0.028932782,0.029752536,0.030828936,0.031993166,0.03383565,0.035796866,0.038644496,0.03934705,0.048878554,0.083909295,0.08970601,0.66761017,0.45056364,0.35060778,0.8116373,0.7829134,0.1593183,0.8494027,0.4465301,0.2903652,0.29117343,0.2608022,0.2967297,0.24786672,0.3547179,0.32552353,0.26579773,0.2122486,0.23888509,0.2280234,0.26736808,0.2402611,0.24662128,0.23068225,0.2611194,0.22575903,0.2945281,0.33719698,0.31981808,0.3278633,0.28725386,0.22049174,0.26737812,0.28279942,0.18018305,0.2401871,0.25065553,0.21867475,0.2798717,0.3659129,0.32510698,0.2587721,0.22912961,0.25984526,0.23435003,0.2530155,0.23053107,0.24069436,0.21527255,0.24928184,0.24505846,0.26387015,0.22826852,0.25832865,0.22227386,0.25218448,0.29806015,0.32376632,0.26952088,0.43047425,0.7920332,1.0696096,0.7207749,0.3877078,0.8131459,0.7408669,0.14735873,0.50069964,0.6157859,0.10021558,0.090384096,0.069457375,0.05004484,0.046798427,0.042495616,0.03942556,0.03676081,0.03462353,0.03303592,0.03157271,0.030585647,0.0294909,0.02896625,0.028615182],[0.019007977,0.017772643,0.018027512,0.018567448,0.018640721,0.019479603,0.019789595,0.02065065,0.021633511,0.022751512,0.024535894,0.026420433,0.029794814,0.03626567,0.035938054,0.02547742,0.058518518,0.10341473,0.7073444,0.74410796,0.6655069,0.725445,0.17171915,0.57501805,0.56382483,0.27036482,0.3328331,0.24792583,0.3129089,0.52373886,0.3700096,0.3127579,0.3080386,0.24194305,0.26953104,0.23634396,0.23394474,0.22763053,0.2496483,0.239672,0.234975,0.24043956,0.2730175,0.32797134,0.248663,0.21542007,0.2227039,0.26638097,0.20737112,0.19360931,0.3104167,0.24279661,0.2320544,0.26053134,0.2365091,0.27966538,0.34879157,0.23891577,0.24286816,0.23436157,0.23603383,0.24231514,0.23913307,0.26350567,0.24935935,0.25176996,0.21878925,0.24670447,0.22918801,0.25556397,0.2379582,0.3013194,0.24987279,0.2928889,0.271053,0.3721494,0.18389125,1.0267338,0.60469127,0.3195106,0.8686607,0.7580392,0.28576988,0.5731542,0.028041143,0.047079258,0.023763651,0.022990623,0.029731486,0.025459802,0.023062482,0.021745177,0.020657646,0.019662742,0.01928733,0.018684061,0.018539688,0.018015439,0.017904319,0.018084286],[0.014478608,0.01673959,0.01650487,0.01651979,0.01723918,0.01738132,0.018458284,0.019314352,0.020600433,0.021858083,0.023762094,0.026175983,0.029318007,0.035825126,0.03772489,0.025332918,0.04238811,0.0376765,0.8536593,0.2744184,0.08820604,0.90340036,0.25944477,0.05656768,0.8571906,0.6166297,0.3292366,0.7527697,0.3720407,0.6906795,0.40252405,0.27726105,0.23611954,0.2120422,0.22944832,0.2306705,0.26240084,0.2428401,0.24417174,0.23470592,0.25953695,0.22711891,0.2938509,0.31124097,0.23316303,0.2638333,0.2521879,0.21916018,0.2797163,0.47298983,0.21832973,0.24414006,0.25121614,0.21599829,0.24746576,0.23321919,0.2949225,0.24634452,0.24265513,0.24464348,0.25155857,0.23960507,0.24757056,0.21292806,0.23949575,0.23148513,0.26741096,0.22492425,0.25710058,0.21751094,0.3829564,0.3063105,0.36942345,0.31826717,0.33787733,0.24574256,0.6458002,0.7924543,0.15291995,0.61947,0.58512306,0.57455605,0.7069301,0.6942295,0.031150723,0.042070508,0.02550562,0.022458805,0.028663725,0.023975587,0.021999212,0.020403,0.019238355,0.018411856,0.017686673,0.01708961,0.016444853,0.01638125,0.016029712,0.016043525],[0.013901721,0.016676286,0.016130747,0.01539552,0.016076213,0.015868405,0.016256977,0.016711408,0.017101523,0.017727708,0.018274175,0.019429727,0.01998779,0.019365763,0.027196528,0.04063915,0.022940753,0.039985403,0.88523936,0.64399743,0.55348015,0.7236202,0.51515496,0.061009485,1.1376157,0.78024024,0.48460603,0.7967835,0.40025255,0.27703032,0.28977054,0.23916537,0.23724417,0.2890988,0.24597056,0.26626608,0.21081617,0.25125152,0.22749837,0.26151606,0.21237926,0.26500878,0.21655653,0.23740557,0.22825873,0.24707022,0.20140192,0.32342806,0.2233517,1.0058035,0.1023945,0.1683915,0.33942765,0.24774113,0.26983228,0.2164248,0.25290897,0.21615712,0.2621891,0.21584581,0.25433892,0.22043082,0.2624332,0.24563383,0.27147153,0.22139184,0.2665281,0.27033678,0.3077992,0.22644845,0.28490865,0.335788,0.3778828,0.28418338,0.63342905,0.567925,1.0443034,0.9514398,0.34129402,0.73056984,0.7864881,0.4153421,0.48410514,0.79574096,0.07485873,0.059012126,0.052224386,0.041086365,0.02990521,0.027621014,0.025729634,0.023529798,0.022001872,0.020838937,0.019617826,0.018713662,0.01776055,0.01729888,0.016703364,0.01639086],[0.01413175,0.015372453,0.014466751,0.013900691,0.014206875,0.01383163,0.013909472,0.014030862,0.014100205,0.014140462,0.014337689,0.015057779,0.015392964,0.017961513,0.016876664,0.007751351,0.011210437,0.04851143,0.37520045,0.60675544,0.75039595,0.60668194,0.81742305,0.012597633,0.42449263,0.86104393,0.16077344,0.29829535,0.24485515,0.39337915,0.30013692,0.2610615,0.2189822,0.20274776,0.21008691,0.23134771,0.2577083,0.24568172,0.2406382,0.23888864,0.25494507,0.23549515,0.2418808,0.26266435,0.22718231,0.27071378,0.22587803,0.2999519,0.37206963,0.46463048,0.04773755,0.093361616,0.43986726,0.24423775,0.25102878,0.2258566,0.26613227,0.22583148,0.2608601,0.22675753,0.270283,0.22327538,0.26488698,0.18767418,0.2667905,0.20206535,0.3326505,0.33891854,0.3931454,0.2745783,0.34385288,0.2098017,0.40415198,0.21308516,0.7442797,1.1494606,0.9470679,0.3247822,0.31315055,0.71050745,0.6321197,0.50975585,0.6073065,0.36696038,0.048087236,0.039498445,0.02925621,0.027725702,0.03239011,0.027283061,0.024882084,0.022905087,0.021108994,0.020004692,0.01886536,0.018020568,0.016979396,0.016767567,0.015845012,0.014871253],[0.00612579,0.007785114,0.008058469,0.008664264,0.010126189,0.010994303,0.012275954,0.013617255,0.015121768,0.016927432,0.01881996,0.02163378,0.024179004,0.026621904,0.034733266,0.0580616,0.08208001,0.15349005,0.42922768,0.76826346,0.6717821,0.6931854,0.69326466,0.18381359,0.10192668,0.91344815,0.29853615,0.5103697,0.14533912,0.29430717,0.14191344,0.33731338,0.29533172,0.4035411,0.32204,0.3092488,0.18436398,0.2739183,0.208529,0.27761176,0.19666031,0.27753067,0.21491429,0.25271526,0.22396596,0.24786068,0.21789882,0.27906802,0.24777925,0.38305417,0.080400944,0.38115606,0.29412854,0.3730733,0.2573536,0.2523984,0.22076169,0.2572174,0.22124995,0.2573595,0.21072654,0.260026,0.21765684,0.29927605,0.214896,0.27323967,0.18999179,0.33043367,0.28269655,0.39202,0.29446667,0.38355651,0.28786802,0.65133584,0.8954737,0.9233689,0.94324917,0.06366966,0.60208154,0.76994514,0.5018209,0.52379,0.78960764,0.16091366,0.0053413874,0.016485292,0.010195722,0.0066643814,0.012105217,0.008592953,0.00694159,0.0054948987,0.0050012562,0.00422127,0.004145049,0.0040579624,0.0040205503,0.004987126,0.004839921,0.005373739],[0.0091003515,0.008048012,0.008469905,0.00843927,0.008130915,0.008122294,0.0080647115,0.008205178,0.008165227,0.008360217,0.008585611,0.008453178,0.008605431,0.0074215676,0.009740476,0.023611842,0.059199426,0.2763022,0.08983539,0.8046008,0.28138927,0.30424193,0.8847644,0.24859561,0.24682088,0.80902606,0.21564287,0.23811233,0.26947322,0.3259368,0.4047997,0.4305287,0.31246468,0.2700744,0.2867783,0.3209503,0.2756736,0.23741813,0.24650791,0.23420067,0.26066655,0.22992794,0.24399103,0.25286674,0.23874553,0.25135988,0.24863759,0.21263021,0.36065266,0.29775226,0.3217075,0.32143047,0.24647133,0.25367633,0.22747564,0.2511611,0.23521627,0.2531216,0.232942,0.25520214,0.24177435,0.25834277,0.2296512,0.22034848,0.2295451,0.28573692,0.31598607,0.23884365,0.294225,0.28703925,0.3685708,0.2829336,0.48962054,0.9287592,0.9445762,1.1504642,0.16615163,0.31124622,0.6721158,0.7138022,0.32376206,0.38672754,0.9139441,0.31779894,0.037539445,0.0392115,0.029242355,0.022733426,0.015839208,0.015231367,0.013988939,0.01302667,0.012272666,0.011484312,0.011002678,0.010174218,0.010199858,0.009079786,0.009267716,0.009522815],[0.013322967,0.014016857,0.015098585,0.016024368,0.016537104,0.018102722,0.01909779,0.02073124,0.02233928,0.024251876,0.026682632,0.029565474,0.033478387,0.0398743,0.04294603,0.040510546,0.10499774,0.17389077,0.1164725,0.34016874,0.46427578,0.5358186,0.7140948,0.60934997,0.1515086,0.3026,1.0089513,0.19049838,0.4581927,0.19588064,0.37949342,0.6989648,0.38971153,0.5324074,0.5232069,0.37902793,0.32753858,0.23996139,0.24464941,0.24129012,0.2307404,0.24398874,0.24997158,0.22163194,0.2501954,0.23712523,0.24797499,0.3170857,0.29194596,0.47673875,0.40587932,0.31804708,0.25160778,0.25140578,0.27823177,0.23108223,0.2524163,0.22702359,0.2529942,0.22519922,0.24125211,0.22293702,0.25215927,0.27361953,0.3375558,0.33164132,0.32915163,0.3479213,0.23286372,0.24208033,0.33626503,0.35602176,0.37225646,0.3086854,0.6719126,0.9413148,0.07159267,0.28212574,0.8050847,0.45969903,0.05613292,0.4685111,0.770469,0.18652959,0.03382414,0.022857754,0.008106949,0.0023763806,0.009905059,0.008817793,0.008830867,0.0093505075,0.009779435,0.0099839745,0.010726642,0.010781456,0.011535236,0.011835096,0.0125486655,0.013678192],[0.014253312,0.014198768,0.0130757755,0.011958335,0.011481105,0.009938758,0.009369203,0.00817455,0.007305716,0.006555437,0.0055074967,0.004959289,0.0052540405,0.0074021756,0.006533991,0.022780117,0.2525648,0.3149445,0.09013407,0.24725091,0.8505847,0.49081126,0.5861075,0.73763365,0.3607002,0.11173361,0.6259077,0.3289006,0.6082777,0.52487046,0.63911813,0.19394903,0.5447154,0.7685209,0.8853405,0.44744462,0.30817807,0.2455454,0.24801655,0.22672553,0.27072108,0.21798337,0.25320315,0.24065222,0.28156883,0.36610895,0.36051384,0.32697523,0.3814203,0.69581944,0.3901291,0.26296958,0.41587025,0.29130802,0.39018214,0.23356678,0.26834667,0.2118846,0.2766228,0.20866401,0.2942764,0.21007532,0.28766027,0.14496459,0.296852,0.29271188,0.42066678,0.23409115,0.61192197,0.31714338,0.43070328,0.2637434,0.40170684,0.10782888,0.943068,0.24912906,0.12131279,0.7188773,0.6518562,0.26110196,0.21184738,0.94929826,0.4317605,0.18317914,0.122087315,0.030423762,0.03916329,0.037392125,0.039660882,0.034571804,0.031444192,0.028700145,0.026566403,0.02458193,0.022497814,0.02128899,0.019537278,0.018371295,0.017124912,0.015835593],[0.0070019998,0.008314336,0.008418213,0.007981078,0.008859309,0.008035507,0.008865866,0.008405037,0.008836537,0.008772447,0.008887348,0.008609506,0.008530719,0.0065541635,0.009554898,0.017987762,0.2616959,0.115120456,0.021573791,0.11734537,0.58086056,0.51309866,0.14858133,0.5417803,0.7043903,0.16019955,0.58561665,1.3031083,0.9484445,1.097892,0.7664196,0.35094127,0.3200044,0.28217515,0.19099794,0.2913218,0.23001087,0.23504709,0.24490507,0.24411637,0.22723146,0.2476905,0.24875277,0.22370562,0.36909613,0.2890143,0.31909993,0.34541044,0.2633302,0.2863931,0.37651384,0.36470366,0.3143655,0.33831152,0.35628873,0.25932813,0.2462017,0.2344158,0.24958755,0.22783333,0.23763998,0.20631835,0.26113632,0.27175897,0.28364903,0.2658609,0.34952497,0.28800473,0.6599537,0.47332576,0.33468565,0.3429659,0.43447644,0.63985175,0.560189,0.25061733,0.123944454,0.7740036,0.6038069,0.113735475,0.5128329,0.55644494,0.03582973,0.1049984,0.30021334,0.04028477,0.014981784,0.01221525,0.005970978,0.0074479645,0.0077496525,0.0079797665,0.008265139,0.008306788,0.00804326,0.00827839,0.008065299,0.008307794,0.008399916,0.008183822],[0.004873436,0.0036381348,0.0035894671,0.0033664543,0.0031685438,0.0032088163,0.002897161,0.0031386588,0.00282983,0.0031914546,0.0037629034,0.004520575,0.0062562027,0.009935456,0.009350184,0.018415818,0.20452285,0.03688894,0.037907645,0.1295226,0.2892908,0.90853786,0.37810344,0.7241116,0.6165964,0.28985953,0.16838568,0.59234893,1.0378953,0.63683814,0.22622633,0.38958105,0.25293714,0.27984834,0.27416366,0.24997723,0.23597692,0.25811073,0.21857603,0.25306603,0.23740332,0.25512105,0.20689477,0.29938057,0.25908664,0.5084941,0.5617278,0.27956453,0.5135471,0.32397193,0.29269814,0.2736951,0.38650194,0.30875918,0.3447444,0.26204744,0.22355083,0.24867265,0.23786543,0.24683562,0.27369764,0.32636297,0.23743516,0.18258159,0.22777452,0.23239864,0.24154478,0.2900547,0.21486963,0.27715963,0.24638486,0.34732276,0.4362147,1.3469404,0.3336352,0.28411454,0.47518766,0.6564399,0.116141364,0.10031199,1.0139133,0.11232407,0.037669767,0.051248197,0.09862036,0.05914046,0.012352816,0.008904644,0.004525945,0.0046425504,0.0049824403,0.0049249884,0.004682194,0.004685658,0.0046785707,0.0041594687,0.004637546,0.0038679754,0.004134367,0.0038420106],[0.001607141,0.0010744554,0.0014519853,0.0019290481,0.0019988115,0.0030431792,0.0030619495,0.0040895925,0.0046345256,0.0054868464,0.006467971,0.007618646,0.009165958,0.0123706795,0.012427492,0.02104087,0.108254574,0.033378564,0.019137308,0.054892845,0.061191566,0.501584,0.76271105,0.66922337,0.67827,0.4060868,0.19244704,0.72653645,0.8347285,0.25009292,0.44304043,0.26644892,0.3900305,0.27248877,0.24621776,0.2131337,0.2573849,0.27829915,0.32605585,0.27585283,0.22543974,0.25293267,0.24143666,0.24057347,0.3199652,0.47788307,1.1229175,0.32671535,0.117342405,0.61581665,0.8922242,0.6883948,0.29020888,0.35458007,0.3875431,0.2875928,0.34000984,0.21326245,0.27302164,0.20010337,0.3047356,0.33152777,0.337658,0.3506802,0.27245176,0.23076859,0.33915734,0.2699444,0.41478404,0.22606137,0.40886086,0.21638374,0.65579635,0.62645775,0.13387655,0.33611405,0.60373014,0.73879975,0.32932717,0.66348934,0.40132838,0.07445637,0.013897554,0.045466837,0.07961944,0.15322201,0.02512105,0.015729656,0.0073810406,0.0066690543,0.005633519,0.0046493085,0.004026394,0.0033753167,0.0026437552,0.0025224034,0.0014274269,0.0015456683,0.0010999239,0.0009497078],[0.0059971716,0.00615696,0.00535575,0.0049524717,0.0047897836,0.003991599,0.004230553,0.003703897,0.0033616715,0.0031486321,0.0030617283,0.0029969418,0.003646096,0.0054510185,0.0044698184,0.039253376,0.1485573,0.07076399,0.04204215,0.021678085,0.14257877,0.42324847,0.7686537,0.61794466,0.23991033,0.77193326,0.15567718,0.6686225,0.5435103,0.2025937,0.39516258,0.27349815,0.3788811,0.3410102,0.30065605,0.20688315,0.3443547,0.3186166,0.40905187,0.26919773,0.28540796,0.18794595,0.28505108,0.20050962,0.32537708,0.26374495,0.74707025,0.6779683,0.21985047,0.95232016,1.0145081,0.9881515,0.79184556,0.16266574,0.20935684,0.38506305,0.32331112,0.257025,0.23509645,0.24111424,0.29972205,0.35217884,0.34364367,0.28182322,0.23197809,0.26906466,0.392983,0.34377655,0.30045602,0.3176301,0.41940588,0.20041655,0.6415616,0.70858127,0.061865963,0.3397949,0.5166172,0.7127728,0.3979071,0.90851766,0.2659897,0.1091978,0.023957921,0.055973932,0.082885265,0.2706886,0.03546637,0.019245349,0.019667514,0.015164043,0.013247332,0.011605245,0.010540945,0.009846887,0.008870698,0.008551726,0.007678383,0.007494259,0.0071357996,0.0060972236],[0.008040548,0.009032724,0.009350889,0.010332166,0.0110814795,0.011352018,0.012592298,0.012903931,0.0139013585,0.014494889,0.015190336,0.015626153,0.01564434,0.013657723,0.010633608,0.11710009,0.18754031,0.08701004,0.06495161,0.043549176,0.12109412,0.10239508,0.57507867,0.57584035,0.12801419,0.43207327,0.30468795,0.09743367,0.7681321,0.60113454,0.21991453,0.42546934,0.26843715,0.21089154,0.26899877,0.38196632,0.2972722,0.36129734,0.2671842,0.33569595,0.18837646,0.29230797,0.21684876,0.24497439,0.22638951,0.25460538,0.32671064,0.36904994,0.36429232,0.3039386,0.9525169,0.95713097,0.9831022,0.4552929,0.10186347,0.46401742,0.24900435,0.316111,0.18075532,0.29083043,0.20670259,0.4133585,0.23553443,1.0461053,0.29865173,0.31238574,0.20013689,0.35021466,0.3237075,0.43866533,0.1849078,0.6971699,0.64248794,0.09931615,0.17105617,0.45745632,0.40515953,0.013638612,0.6560859,0.33884543,0.028212942,0.060825713,0.015445653,0.038742915,0.042311117,0.15219441,0.017576482,0.0072496356,0.008373415,0.005101803,0.0035344467,0.0031549188,0.0033563015,0.0040075523,0.004237759,0.005496575,0.0054533407,0.0063819415,0.0071350923,0.0072548576],[0.021032851,0.01966959,0.019968813,0.019745348,0.01980739,0.020574884,0.020514388,0.021326607,0.021755254,0.022732012,0.023774328,0.025665542,0.028132327,0.031911943,0.048264038,0.3036263,0.029575206,0.05846023,0.038718645,0.034625955,0.08123305,0.05609272,0.1200213,0.7424361,0.6678178,0.26232415,0.59276915,0.0471971,0.6484988,0.46267983,0.43453494,0.30952087,0.20064262,0.335346,0.36723596,0.30890504,0.40787795,0.3337021,0.36141548,0.23137592,0.23845556,0.21164267,0.24546933,0.26370317,0.2399697,0.26918742,0.2648714,0.21330719,0.33438972,0.37497076,0.92845094,0.777711,0.24017896,0.42219925,0.34139886,0.3573914,0.28590766,0.28080076,0.1999461,0.28204325,0.2655017,0.41279304,0.30050397,0.680695,0.36107177,0.29382673,0.20394775,0.37653166,0.23910657,0.36926556,0.30960023,1.0724928,0.4380474,0.1685929,0.10956165,0.35479107,0.18839034,0.64636046,0.7215667,0.15896952,0.09144447,0.119296364,0.07733784,0.06672408,0.094748445,0.21595605,0.035010405,0.02954561,0.025854096,0.025159411,0.024388442,0.023566892,0.022968253,0.022034373,0.021908712,0.020762011,0.020978792,0.020501995,0.020143207,0.020249981],[0.016094854,0.01735031,0.01681216,0.016617967,0.01674282,0.016352106,0.016688166,0.01686428,0.017114194,0.017420873,0.018199444,0.019217445,0.0209412,0.02506692,0.03200702,0.19435784,0.0937665,0.02702821,0.014286199,0.01381766,0.04404589,0.014152072,0.028054278,0.36494252,0.6914075,0.49813482,0.29318172,0.41570547,0.058351345,0.96189106,1.1110779,0.27181238,0.3762458,0.30073214,0.33351105,0.3385033,0.29971477,0.311954,0.3442786,0.21104793,0.24600588,0.28649387,0.24761838,0.16278894,0.29041073,0.31976667,0.37684092,0.35923848,0.32347745,0.23246732,0.93178934,0.25851092,0.4109773,0.26774335,0.32926923,0.21192881,0.27299118,0.18961622,0.33118486,0.16215305,0.29714942,0.30857512,0.3795775,0.4882732,0.38023967,0.30862293,0.292019,0.14744098,0.4486764,0.26975718,0.6352529,0.74326235,0.02211697,0.26564693,0.47054577,0.18666749,0.5608609,0.8658559,0.20723923,0.071280435,0.05398826,0.08607026,0.05808286,0.03014979,0.045953307,0.025150422,0.030089645,0.027689919,0.024902858,0.024081524,0.023225576,0.022567252,0.021374412,0.02098821,0.019835318,0.019739835,0.018867014,0.018685946,0.018152168,0.017698584],[0.013237267,0.013923644,0.013528384,0.012926495,0.013016513,0.012575019,0.012649739,0.012119684,0.012482104,0.011917659,0.011937993,0.011919266,0.012132354,0.013116836,0.009924872,0.0044727763,0.019135881,0.015179143,0.010583653,0.032528747,0.03138533,0.014969204,0.01329439,0.05855852,0.8023179,0.60688674,0.33954751,0.07630775,0.20439173,0.3912295,0.82635814,0.29189077,0.28587466,0.32164913,0.3820136,0.30609542,0.40154344,0.33347103,0.20768294,0.23678099,0.29219687,0.21415396,0.24327393,0.2761945,0.2911681,0.318278,0.3188299,0.25578576,0.59197193,0.6917337,0.88241976,0.36283574,0.3164557,0.31430212,0.2572778,0.26170737,0.21062404,0.25657085,0.23512201,0.24033526,0.31189132,0.37216482,0.2904295,0.935653,0.3848498,0.258032,0.328061,0.40842932,0.28692397,0.24181813,1.147487,0.5390104,0.1205267,0.069816716,0.109865025,0.51846296,0.5767746,0.35571975,0.080646984,0.057886038,0.03751096,0.027557781,0.019343993,0.01823992,0.033432934,0.2271252,0.04373276,0.030407654,0.03117678,0.026024887,0.023224244,0.021524915,0.019847156,0.018492322,0.017648343,0.016846709,0.016112247,0.015461078,0.015103287,0.014227096],[0.02387187,0.022697208,0.022844395,0.02304456,0.022865795,0.02297338,0.023107963,0.02377137,0.023948409,0.025205668,0.025975846,0.027686795,0.030254748,0.036078643,0.043169703,0.20674635,0.06840224,0.010402111,0.015125887,0.037478697,0.01354735,0.028224954,0.025731813,0.07532987,0.20814328,0.82385695,0.34903753,0.13540448,0.03830128,0.09831473,1.0721947,0.6758891,0.8051721,0.52657986,0.26437548,0.37700507,0.27441174,0.27916077,0.25903904,0.24982229,0.21352616,0.32692298,0.25676498,0.24216104,0.23476306,0.31259203,0.3620949,0.36666062,0.49470136,1.0493234,0.9548428,0.31432733,0.35437256,0.36995596,0.2803222,0.2275671,0.25098392,0.24227716,0.29181945,0.29325688,0.20643881,0.33175904,0.32387272,0.9122343,0.3325867,0.3932259,0.3307052,0.2610524,0.6000766,0.8621746,0.15355062,0.30869707,0.07016688,0.29839393,0.39792794,0.33467057,0.92045456,0.16623476,0.08912098,0.07776765,0.06382561,0.02803226,0.039449397,0.038359404,0.02596756,0.13972722,0.04288867,0.036771458,0.037796095,0.0340674,0.031784806,0.029787913,0.028785927,0.027321493,0.026473304,0.02571907,0.024961967,0.024289258,0.023923863,0.023858797],[0.018363494,0.019194296,0.019031778,0.01881004,0.01943503,0.019579915,0.019995023,0.020398699,0.021105906,0.021506356,0.022715658,0.02354888,0.02527882,0.028172033,0.035717797,0.20781384,0.059472863,0.03650833,0.039529044,0.059450712,0.03187829,0.053397994,0.06097553,0.111419395,0.11291043,0.68872064,0.77625966,0.29816666,0.22279912,0.17850883,0.25573158,1.0764717,1.0698342,0.7640334,0.27639195,0.38215724,0.34406307,0.27917024,0.18643029,0.25945953,0.31401214,0.39645568,0.2204017,0.27248052,0.19854078,0.25702387,0.27341315,0.35180095,0.23557241,0.43125358,0.87604094,0.3552161,0.31083712,0.32711497,0.31441832,0.2595169,0.23459849,0.319245,0.36611217,0.34143943,0.28171524,0.30717528,0.33987838,0.4554941,0.39426264,0.22601408,0.34960076,0.33938336,0.7668213,1.0872898,0.24785797,0.24066037,0.075193085,0.22843112,0.28219223,0.83482105,0.145377,0.08327249,0.037266437,0.042679895,0.03366527,0.01184971,0.019317644,0.02662406,0.016342059,0.0881171,0.025085678,0.022786735,0.024911828,0.022564314,0.021373713,0.02087972,0.019847216,0.01988501,0.019296376,0.01904855,0.018910328,0.018955247,0.018578539,0.01822519],[0.008546816,0.00808718,0.008020862,0.008393815,0.007772259,0.008071233,0.0081986,0.008337017,0.008393873,0.00884606,0.009293101,0.010354799,0.011631852,0.015863335,0.02053801,0.14940733,0.06867706,0.023679776,0.01678095,0.019273961,0.010836905,0.018965317,0.023842724,0.04135273,0.027152516,0.21020263,0.7215154,0.5180483,0.5587102,0.0999328,0.14760551,0.24688497,1.0217222,0.86128545,0.8739018,0.53286916,0.22746402,0.34861964,0.31475335,0.24479143,0.22115718,0.3569391,0.26524922,0.30678546,0.35307878,0.23054884,0.25674897,0.27052516,0.35311568,0.37177545,0.9214025,0.31844848,0.36440963,0.3538632,0.36150178,0.28025624,0.28984228,0.3730986,0.2837432,0.37786096,0.24882293,0.27550265,0.35645857,0.7464166,0.36838928,0.36253512,0.30453065,0.21513757,0.80460095,1.0425287,0.25144392,0.11007474,0.17239666,0.18514118,0.77729666,0.64573497,0.099272616,0.10225095,0.048614636,0.039731495,0.033202264,0.006303593,0.014280422,0.02460691,0.011546359,0.06649683,0.016953044,0.014947954,0.016503386,0.01413228,0.013048594,0.011906591,0.011388957,0.010409528,0.0103372345,0.009727126,0.00942505,0.009014487,0.0089353705,0.00873998],[0.0070875846,0.0073874,0.0072811116,0.0078021837,0.0076084496,0.008326331,0.008270331,0.008986554,0.009646632,0.010482005,0.011528904,0.013740046,0.015986456,0.020434799,0.03507682,0.2444137,0.053939655,0.020579705,0.014701022,0.029280758,0.0103538865,0.017418696,0.02413458,0.043190673,0.034987,0.1041703,0.35577324,0.66236264,0.06616756,0.5734955,0.15673503,0.10855416,0.2667733,1.1035105,1.0453253,1.0305784,0.52129894,0.36373562,0.28746518,0.24959098,0.28650615,0.2596954,0.26621917,0.40513825,0.2380719,0.39835477,0.24384347,0.30667767,0.24471998,0.8797014,0.9078548,0.40549192,0.30297995,0.32147214,0.31925777,0.2674194,0.30059788,0.3625253,0.3309328,0.37079382,0.27269843,0.38268003,0.269631,0.4482261,0.8849205,0.3485912,0.40717143,0.85468304,0.9464457,0.3898126,0.083822444,0.1925704,0.50392663,0.4054963,0.7868959,0.11489183,0.03164267,0.02376235,0.020707248,0.021446658,0.008074873,0.03776382,0.02066458,0.015443179,0.02308012,0.03455866,0.008426621,0.010077479,0.005358187,0.006712358,0.007203633,0.0074358894,0.0072691087,0.007106938,0.0073059434,0.0072270012,0.007276651,0.007373809,0.0070641,0.0071690087],[0.003963166,0.003989018,0.003992174,0.0035399743,0.003195736,0.003215301,0.0027916331,0.0029196169,0.002496005,0.0021538709,0.0020299556,0.001222894,0.00085601193,0.0013626959,0.0028027266,0.053752843,0.037756417,0.011308341,0.008902187,0.015329631,0.014253197,0.010444445,0.013964392,0.011002618,0.027824884,0.0349771,0.14957611,0.6656142,0.6884071,0.2226168,0.08220923,0.2020696,0.18047465,0.27923143,0.7641159,0.9032318,0.9770644,0.40621474,0.36199555,0.33219844,0.18851057,0.25324813,0.34489417,0.30771917,0.5335042,0.31567353,0.35738915,0.37772804,0.3372493,0.7154145,1.1643751,0.8620816,0.34231803,0.3727135,0.3588451,0.2817748,0.3109879,0.36491242,0.28917366,0.37444025,0.2943311,0.2738018,0.3581722,0.38878202,0.8939088,1.2106897,0.8803142,0.74718326,0.2870959,0.18793069,0.110165305,0.13414134,0.22416575,0.8357197,0.2523739,0.11128484,0.049671456,0.061009627,0.03261996,0.023588805,0.021767983,0.010831132,0.006999444,0.020540731,0.00696897,0.047962457,0.009739228,0.009227269,0.010397607,0.0085263075,0.00765485,0.007149972,0.0063946387,0.0061573144,0.00589451,0.0051062712,0.005327086,0.004521939,0.004489421,0.004307077],[0.010850252,0.011456339,0.011428861,0.011212223,0.011320552,0.011943499,0.011421051,0.012054001,0.011912059,0.012205427,0.01225883,0.012529439,0.012407677,0.011732367,0.012667223,0.007512102,0.03069805,0.016713766,0.014476379,0.010511955,0.03316984,0.021738483,0.023475515,0.022024978,0.040631764,0.04933212,0.08146286,0.19153115,0.70793664,0.8182388,0.24922189,0.17089693,0.023368288,0.05440126,0.20443901,0.4848913,1.1269491,1.1023756,0.44914588,0.2764986,0.4670617,0.36693737,0.27976725,0.58010316,0.73509514,0.29571468,0.361152,0.26355836,0.3764573,0.20314209,0.5619884,0.8622172,0.19915077,0.35082802,0.29038662,0.2771615,0.24975182,0.36481428,0.34573615,0.3115113,0.4085842,0.72771794,0.22739847,0.36397424,0.97659737,0.57373655,0.41178125,0.20058994,0.17608356,0.21679246,0.2143993,0.28172776,0.85419047,0.6140127,0.18833369,0.032166243,0.04302008,0.0036979017,0.02588393,0.030765658,0.014686778,0.041792262,0.025616257,0.015824063,0.028145954,0.021540077,0.013850797,0.0135681145,0.0110085085,0.01137301,0.011758418,0.011599828,0.011571029,0.011470512,0.011629613,0.011080994,0.011749956,0.011152278,0.011151417,0.011356088],[0.0114614,0.011367241,0.011236569,0.011642486,0.011143602,0.0110717015,0.011513227,0.011051033,0.011543921,0.0110807875,0.011299903,0.0109891845,0.010765677,0.009315228,0.010025803,0.040866405,0.034905996,0.014749501,0.014480718,0.014826593,0.032469787,0.019103106,0.019078853,0.019214299,0.032934092,0.04191497,0.057065308,0.09505192,0.14481777,0.6404826,0.7405117,0.11234893,0.043001093,0.05455502,0.08334365,0.1009722,0.3626697,0.47758108,1.1239458,0.53270155,0.18406403,0.2665983,0.59566975,0.9882219,0.2642689,0.33355552,0.35638437,0.3783032,0.29564622,0.6157764,0.4669972,0.9232791,0.61050385,0.3252728,0.4089385,0.27974322,0.31802052,0.29031375,0.37647864,0.6211201,0.80701876,1.085609,0.82911783,0.6976059,0.36799705,0.07726924,0.41189808,0.17108184,0.0821888,0.13499193,0.40652376,0.8239112,0.5796277,0.1348612,0.11289112,0.033987448,0.040467042,0.010824545,0.025082517,0.03519815,0.01651598,0.04326069,0.027684378,0.015141685,0.031275187,0.022196088,0.015294383,0.014121774,0.012256303,0.012643035,0.012375362,0.012441255,0.012049556,0.01229459,0.011769024,0.012244188,0.011389272,0.01162378,0.011632594,0.011351275],[0.026366448,0.026106343,0.026957383,0.026619846,0.027328981,0.027720857,0.027826235,0.028911356,0.029161183,0.030621156,0.0314313,0.033357747,0.035731297,0.0395009,0.05245706,0.2628295,0.042260144,0.02492962,0.027267814,0.030576887,0.045991186,0.033808414,0.03333968,0.039195925,0.05201104,0.06542103,0.07546962,0.10568225,0.09757216,0.25726885,0.6091477,0.65901804,0.24345508,0.115291364,0.03487502,0.047565762,0.08269736,0.13209085,0.41225487,0.53559184,0.99974185,0.72116923,0.97086877,0.9806381,0.3316833,0.4013988,0.2333167,0.53558266,0.7171998,1.018456,1.2245145,1.0835084,0.7795381,0.19626378,0.33984196,0.30745956,0.3601334,0.33528736,0.878706,1.1834308,1.0224063,1.0150145,0.5039867,0.53233635,0.106702305,0.24331707,0.095289975,0.23522125,0.33249542,0.246514,0.78707856,0.5793474,0.16596279,0.10465783,0.10567696,0.053301957,0.057047144,0.031114312,0.04113479,0.05166767,0.03345738,0.05867314,0.044094324,0.028758062,0.04845118,0.017389398,0.029725675,0.028940888,0.026970558,0.02721421,0.027110787,0.026673138,0.026993603,0.026202269,0.026692355,0.025911752,0.026184676,0.02624716,0.025896138,0.026415506],[0.0109136505,0.011271745,0.011231089,0.011511017,0.011550293,0.012171631,0.012331831,0.012780006,0.013050008,0.014081495,0.014693383,0.016056256,0.01810898,0.021858297,0.02756166,0.1583008,0.099358276,0.022898745,0.0040010414,0.013441461,0.021776065,0.010514377,0.008876753,0.014815616,0.024857355,0.037394233,0.049300767,0.06480189,0.04422808,0.12592103,0.18452701,0.6867566,0.764644,0.22465639,0.3581,0.24015133,0.11814301,0.5180148,0.069624245,0.030888142,0.08243701,0.76389533,1.0642886,0.91344535,0.8172855,0.22074753,0.58556294,1.0136611,1.1791705,0.3607552,0.021653108,0.32028303,1.0844158,0.6371051,0.37504748,0.37041208,0.7212334,0.94510186,0.796485,0.0058952384,0.28318128,0.49146596,0.022887237,0.1921223,0.23348883,0.25899276,0.2699359,0.44369528,0.26030686,0.79547566,0.6675254,0.10553232,0.085990064,0.057941098,0.05926506,0.02670357,0.028278721,0.015222108,0.015324643,0.035257343,0.013945853,0.037045725,0.025689468,0.009471173,0.034749135,0.053391207,0.013324436,0.011247717,0.012765756,0.0121027855,0.011436723,0.011385151,0.011042621,0.011476528,0.010850149,0.010974312,0.010989815,0.0108941775,0.0107817575,0.011115404],[0.013010606,0.012851323,0.01309446,0.012814933,0.012986551,0.013269763,0.012929451,0.0132992985,0.013440524,0.013634121,0.014048945,0.014379015,0.015370707,0.017223954,0.017567428,0.043408368,0.25908086,0.046924427,0.016146293,0.018564343,0.0019805836,0.01400647,0.018101228,0.012025078,0.0058698296,0.0055380915,0.029080084,0.02403983,0.0060316,0.054758877,0.04325602,0.12258634,0.7586835,0.6737885,0.4327223,0.06312618,0.22537197,0.17414661,0.10726977,0.14299357,0.30504456,0.06965337,0.34082696,0.06919884,0.33508444,0.72550446,0.22733596,0.13988492,0.09320852,0.10499439,0.22592267,0.097849324,0.24805368,0.9962406,0.66489834,0.9552978,0.19901977,0.16100977,0.32328612,0.19296049,0.24476677,0.13737464,0.07461477,0.100786395,0.034911543,0.62057376,0.055945944,0.34113684,0.7425085,0.70119554,0.019546447,0.021427067,0.026372546,0.033285707,0.01719879,0.014336764,0.0049180165,0.024216792,0.014766283,0.020274138,0.015078012,0.01515853,0.0071089147,0.014469489,0.04864932,0.1852688,0.030217104,0.022568671,0.021938529,0.018989343,0.017331537,0.016385138,0.015708663,0.014964494,0.014579957,0.014077508,0.013778281,0.013753225,0.013371107,0.013415559],[0.0072833295,0.0067806817,0.006960185,0.006661663,0.0068043466,0.006689604,0.0066761984,0.006802186,0.006694005,0.0068340194,0.007004864,0.0068695084,0.0071470686,0.0060703442,0.008562349,0.0046763043,0.15059341,0.014049974,0.009388426,0.0110621555,0.012264548,0.008936074,0.010297312,0.0073527726,0.008785993,0.017924098,0.022266036,0.027867168,0.010392951,0.060283866,0.038727105,0.05741439,0.12227129,0.7306343,0.71528107,0.6998118,0.32717285,0.24676609,0.5462103,0.10142154,0.08944095,0.06407916,0.058625568,0.11871147,0.09813437,0.24976146,0.2484745,0.35228726,0.3872763,0.37941468,0.2981809,0.3503837,0.32619178,0.32454684,0.3757658,0.27153078,0.16965243,0.1587631,0.18295868,0.06972601,0.06853385,0.11245971,0.07869023,0.55877286,0.146155,0.15215315,0.7405679,0.7744457,0.6666052,0.059019405,0.0045002336,0.020620769,0.029979728,0.032862313,0.019293798,0.00860586,0.003920843,0.018731551,0.0076843635,0.025816893,0.017820634,0.020218099,0.027319735,0.031248998,0.113013014,0.33401453,0.044209227,0.028911786,0.017234229,0.0147322435,0.013034734,0.011392849,0.010392196,0.009635286,0.008908423,0.008449225,0.008146045,0.007688098,0.0076353843,0.0071006487],[0.0067363507,0.006818197,0.006740056,0.0068428367,0.006676086,0.0069902777,0.006704478,0.0069057597,0.006841403,0.006939706,0.007167218,0.006983788,0.007099336,0.006316957,0.007560209,0.008728259,0.10429126,0.028895322,0.018169958,0.017802197,0.021362927,0.010537498,0.006109671,0.013742079,0.019090775,0.030632231,0.034583397,0.042125236,0.021360997,0.06961671,0.050407168,0.06147723,0.076426834,0.1929452,0.51041883,0.6472949,0.78007865,0.6080943,0.2624019,0.14862715,0.30631503,0.03462651,0.07283797,0.2705515,0.1604861,0.09954655,0.24765424,0.15534058,0.2022224,0.14965093,0.16461892,0.12606055,0.21391712,0.15497756,0.19779302,0.08927849,0.019937899,0.20040262,0.099222794,0.0926072,0.5875392,0.59795755,0.121908605,0.31152397,0.64962,0.9248239,0.6120727,0.4838859,0.13005118,0.051913906,0.022310711,0.03983588,0.044181272,0.037073653,0.028758626,0.013510009,0.016702425,0.007721583,0.009266054,0.02324234,0.004225208,0.02345481,0.008942208,0.022254229,0.0028718403,0.085858494,0.020602258,0.013688206,0.011416391,0.010028336,0.009209344,0.0086710015,0.0082241185,0.007871557,0.0076101795,0.007233919,0.007448783,0.0069769896,0.0070748157,0.00687917],[0.0024307938,0.0026395048,0.0022357185,0.0023654918,0.0021260008,0.0022476097,0.0018363891,0.0021047194,0.001743288,0.0018623723,0.0017378681,0.0018816749,0.0019609544,0.0014348929,0.0047645466,0.0020136628,0.22589915,0.10271959,0.04195704,0.028737841,0.009821614,0.007893882,0.013976472,0.006478853,0.0066347676,0.013584524,0.031099208,0.026913771,0.010581887,0.031846542,0.0045920946,0.005644341,0.016165974,0.009720721,0.15517227,0.27920014,0.4356811,0.7445307,0.81898296,0.838132,0.5658636,0.2609943,0.27585956,0.43109843,0.13862966,0.14905217,0.024551164,0.31300735,0.27112845,0.27331457,0.22630866,0.2672382,0.24788441,0.24643798,0.30110067,0.06774128,0.17487027,0.6271742,0.6954196,0.21622588,0.5013878,0.6651004,0.7852598,0.8570949,0.67338866,0.35164446,0.20485772,0.14108178,0.023248192,0.024626095,0.028988639,0.019404115,0.012249855,0.024675403,0.0053380295,0.012366986,0.002244021,0.019243294,0.011123983,0.021091435,0.015422528,0.013214333,0.009033872,0.025852663,0.028361084,0.02188125,0.006249939,0.0024755802,0.0066637783,0.004953562,0.004378112,0.0038804666,0.0037964196,0.0034055673,0.0033465542,0.0031872017,0.002969963,0.00294786,0.0027373813,0.0027209339],[0.002092741,0.0019307965,0.0020456035,0.0018229545,0.0019595437,0.0016794201,0.0018807129,0.0016336857,0.0018713098,0.0016325368,0.0019244954,0.0018093184,0.0021770368,0.003186665,0.0024294332,0.006512178,0.069256335,0.19413917,0.04646332,0.022238718,0.0070847003,0.0039697527,0.010239172,0.0019758872,0.004788723,0.015108674,0.027728198,0.026303263,0.004544816,0.035275396,0.0112410225,0.011788089,0.009331621,0.0041035907,0.06729616,0.06786878,0.1249431,0.28126314,0.23733355,0.39137217,0.82040304,0.77164656,0.92576146,0.38667828,0.34461555,0.3585332,0.589553,0.83218026,0.76353896,0.80996215,0.81557304,0.7915767,0.82339144,0.7897698,0.83269566,0.46923319,0.36634085,0.39846057,0.62703085,0.8997779,0.7471467,0.81988424,0.33572003,0.25239143,0.2426992,0.081215076,0.032066613,0.044394936,0.0037709288,0.006850824,0.014078601,0.018767886,0.019344477,0.024185326,0.008111709,0.008991462,0.00589883,0.014466632,0.00837522,0.021389784,0.013345476,0.015951207,0.008012444,0.032462552,0.091177315,0.013892494,0.007357102,0.0028400877,0.006021768,0.004310993,0.0037997349,0.003182584,0.0031583896,0.0027098192,0.002727842,0.0023712981,0.002586023,0.0021271533,0.002275196,0.0020529602],[0.0069981036,0.00700062,0.0069842977,0.0068057184,0.0069592483,0.006709758,0.0068915053,0.0065504652,0.0068405145,0.00663075,0.006738987,0.006613805,0.0065221936,0.0068828203,0.0066542174,0.0059391432,0.030193882,0.048468273,0.07501645,0.029633332,0.008506567,0.012164418,0.020445604,0.008979714,0.008236324,0.008127898,0.028110499,0.023368893,0.015927168,0.022271227,0.008277959,0.009862282,0.01899599,0.012831866,0.06673552,0.07022063,0.043998748,0.04025084,0.11645374,0.05248743,0.2383435,0.16616374,0.10794294,0.7368534,0.8590117,0.7656839,0.7376624,0.5733752,0.6448741,0.6008193,0.59730154,0.6152141,0.6262766,0.5985722,0.58536994,0.812129,0.7790503,0.8581033,0.6401021,0.13313276,0.19571269,0.21015027,0.036621973,0.10364731,0.036664613,0.028371004,0.043650735,0.05043541,0.01834256,0.022993628,0.022760471,0.0119575225,0.013640608,0.029751014,0.008532219,0.008909457,0.0021088761,0.016430106,0.01530073,0.014380219,0.014704753,0.016562061,0.008665283,0.06090584,0.33108324,0.022031002,0.011743649,0.009949945,0.012408023,0.0105463145,0.009504347,0.009129657,0.008463826,0.008406202,0.007770331,0.007878899,0.0074708113,0.0075106644,0.0071996115,0.007201572],[0.0034673314,0.003623848,0.0035699303,0.0035691012,0.0034899374,0.0036468548,0.0033820344,0.0036152573,0.0034592235,0.0035939082,0.0033571534,0.003468213,0.003135694,0.002958395,0.003233725,0.0025542236,0.022926765,0.23441881,0.16277407,0.032561373,0.007764048,0.011702919,0.018189857,0.0064617014,0.004561104,0.008108931,0.024261527,0.020506732,0.011045436,0.02617698,0.0110412445,0.012506829,0.01049047,0.00797071,0.05070964,0.060977675,0.031796843,0.024685267,0.05935681,0.01511475,0.10037343,0.051174432,0.032960232,0.054285992,0.11910868,0.6605094,0.63222253,0.7686995,0.73252434,0.6973847,0.76065904,0.712909,0.7419158,0.7170739,0.7965913,0.28538665,0.077714205,0.072394975,0.06839593,0.07797228,0.05243645,0.095253825,0.027464453,0.040527053,0.022593921,0.03293644,0.034642976,0.035202026,0.013386397,0.01541197,0.015171459,0.010627729,0.016495554,0.027308527,0.0065345084,0.006039989,0.0034045677,0.012842396,0.011320323,0.020045761,0.014494858,0.018075753,0.01618787,0.013107962,0.14099492,0.010497817,0.0026520828,0.006141371,0.004573465,0.004223382,0.004064571,0.0039754016,0.0039812024,0.0037118727,0.0038987868,0.0036742792,0.0038026192,0.0036136808,0.0037133393,0.003549294],[0.0012020116,0.0011690048,0.0011295817,0.0011511138,0.001131263,0.0011068699,0.0011606702,0.0012001067,0.0012339886,0.001363762,0.0015473502,0.0018285753,0.0023967316,0.004416714,0.002628487,0.0036093998,0.014867403,0.090941265,0.11634098,0.01960016,0.004843109,0.005060256,0.010730623,0.0037544367,0.0035396388,0.016752215,0.02249479,0.023978654,0.0046154805,0.032850426,0.014366961,0.014023967,0.0035282813,0.008260251,0.038927123,0.0668536,0.020678477,0.026016135,0.031268146,0.008289456,0.077002764,0.016424255,0.021250542,0.024803974,0.041277863,0.070437446,0.049803197,0.05963958,0.02721081,0.02813031,0.06235569,0.04122155,0.017480895,0.04606769,0.031679194,0.029866355,0.077559076,0.08107202,0.0148005225,0.04315964,0.12264995,0.052594423,0.046103083,0.015865566,0.07590525,0.034167916,0.021514527,0.020445397,0.0020874983,0.0074434704,0.0027610762,0.014529749,0.021840544,0.026488187,0.0064615803,0.007309167,0.011339841,0.008969138,0.005605333,0.02106318,0.010807869,0.02084761,0.017397948,0.0380063,0.023143752,0.0070266547,0.005008312,0.0026034683,0.0031509732,0.0022298826,0.0019322502,0.0017445557,0.0015986981,0.0015234969,0.0014656284,0.0013949929,0.0013112765,0.001308982,0.0012078474,0.0012018043],[0.0016135944,0.0014343872,0.0013309069,0.0012561579,0.0010758456,0.00095060316,0.00085519865,0.0007827827,0.0007380039,0.0007769802,0.00094558136,0.0011829218,0.0014553943,0.0013092079,0.003569624,0.0066153416,0.015641475,0.101488985,0.13314949,0.058355518,0.013447138,0.008965163,0.016690567,0.0073206215,0.008417014,0.016291702,0.029045885,0.027480513,0.007711586,0.026557306,0.009741577,0.009210621,0.009056124,0.007932832,0.056959778,0.07194561,0.049790382,0.02392531,0.042246576,0.016102834,0.049649034,0.021555424,0.01329783,0.0084035015,0.040930744,0.051004052,0.025689553,0.036097422,0.019321833,0.015171136,0.043660793,0.024737125,0.035147913,0.029400397,0.019842258,0.018928979,0.07679198,0.06375999,0.026227675,0.059248924,0.03169789,0.06517869,0.08317821,0.019016657,0.08504758,0.04089301,0.0733873,0.050434776,0.023655862,0.011886681,0.012409062,0.02016058,0.012593373,0.018455364,0.003400983,0.012227235,0.010117411,0.014638204,0.0074386834,0.024116514,0.015748514,0.019786812,0.020969016,0.069053285,0.004753405,0.011618749,0.005604099,0.0015945811,0.006224092,0.004348137,0.0036885655,0.0032795086,0.0029741677,0.0027570121,0.002550667,0.0023294918,0.0021996275,0.002011755,0.0018493449,0.0017405153],[0.0014845687,0.0014641123,0.0014103424,0.0014519684,0.001514297,0.0015051411,0.0016238708,0.001772262,0.0019392798,0.0021560246,0.0024886916,0.0029034659,0.0034830696,0.0045784847,0.0051053246,0.0075529614,0.01845741,0.07456573,0.17764236,0.16543844,0.03020097,0.019801915,0.026439052,0.010996856,0.00955311,0.012360742,0.02880389,0.028386258,0.015804274,0.018421488,0.016343756,0.028099615,0.022471236,0.011603397,0.072869524,0.08247512,0.055191327,0.024055365,0.024246488,0.009246695,0.052252285,0.013944628,0.020958355,0.009861044,0.035081528,0.04310955,0.024078693,0.020893132,0.016374296,0.011556897,0.039932694,0.014662798,0.030225117,0.018088365,0.015621253,0.033211686,0.05956203,0.06767587,0.008860859,0.041184023,0.02869913,0.03985581,0.027856003,0.029932579,0.08581636,0.061343517,0.09092657,0.07930833,0.030425822,0.010772233,0.006712527,0.012868269,0.015560466,0.025267158,0.0027031463,0.007341034,0.009980304,0.009304028,0.0069521833,0.020825127,0.013923305,0.021440659,0.028356103,0.20756872,0.021125743,0.015301331,0.0052938093,0.0015558064,0.0052057276,0.0036937231,0.0030406918,0.0026033602,0.0023311588,0.0021319771,0.0019665346,0.0018360933,0.0016992344,0.0016408913,0.0015434056,0.0014740315]],"transpose":false}], {"xaxis":{"gridcolor":"white","title":{"text":"x"},"constrain":"domain","zerolinecolor":"white"},"modebar":{"color":"gray","activecolor":"rgb(229,236,246)","bgcolor":"rgba(0,0,0,0)","orientation":"v"},"hovermode":"closest","paper_bgcolor":"rgba(0,0,0,0)","template":{"layout":{"coloraxis":{"colorbar":{"ticks":"","outlinewidth":0}},"xaxis":{"gridcolor":"white","zerolinewidth":2,"title":{"standoff":15},"ticks":"","zerolinecolor":"white","automargin":true,"linecolor":"white"},"hovermode":"closest","paper_bgcolor":"white","geo":{"showlakes":true,"showland":true,"landcolor":"#E5ECF6","bgcolor":"white","subunitcolor":"white","lakecolor":"white"},"colorscale":{"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]},"yaxis":{"gridcolor":"white","zerolinewidth":2,"title":{"standoff":15},"ticks":"","zerolinecolor":"white","automargin":true,"linecolor":"white"},"shapedefaults":{"line":{"color":"#2a3f5f"}},"hoverlabel":{"align":"left"},"mapbox":{"style":"light"},"polar":{"angularaxis":{"gridcolor":"white","ticks":"","linecolor":"white"},"bgcolor":"#E5ECF6","radialaxis":{"gridcolor":"white","ticks":"","linecolor":"white"}},"autotypenumbers":"strict","font":{"color":"#2a3f5f"},"ternary":{"baxis":{"gridcolor":"white","ticks":"","linecolor":"white"},"bgcolor":"#E5ECF6","caxis":{"gridcolor":"white","ticks":"","linecolor":"white"},"aaxis":{"gridcolor":"white","ticks":"","linecolor":"white"}},"annotationdefaults":{"arrowhead":0,"arrowwidth":1,"arrowcolor":"#2a3f5f"},"plot_bgcolor":"#E5ECF6","title":{"x":0.05},"scene":{"xaxis":{"gridcolor":"white","gridwidth":2,"backgroundcolor":"#E5ECF6","ticks":"","showbackground":true,"zerolinecolor":"white","linecolor":"white"},"zaxis":{"gridcolor":"white","gridwidth":2,"backgroundcolor":"#E5ECF6","ticks":"","showbackground":true,"zerolinecolor":"white","linecolor":"white"},"yaxis":{"gridcolor":"white","gridwidth":2,"backgroundcolor":"#E5ECF6","ticks":"","showbackground":true,"zerolinecolor":"white","linecolor":"white"}},"colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"]},"data":{"barpolar":[{"type":"barpolar","marker":{"line":{"color":"#E5ECF6","width":0.5}}}],"carpet":[{"aaxis":{"gridcolor":"white","endlinecolor":"#2a3f5f","minorgridcolor":"white","startlinecolor":"#2a3f5f","linecolor":"white"},"type":"carpet","baxis":{"gridcolor":"white","endlinecolor":"#2a3f5f","minorgridcolor":"white","startlinecolor":"#2a3f5f","linecolor":"white"}}],"scatterpolar":[{"type":"scatterpolar","marker":{"colorbar":{"ticks":"","outlinewidth":0}}}],"parcoords":[{"line":{"colorbar":{"ticks":"","outlinewidth":0}},"type":"parcoords"}],"scatter":[{"type":"scatter","marker":{"colorbar":{"ticks":"","outlinewidth":0}}}],"histogram2dcontour":[{"colorbar":{"ticks":"","outlinewidth":0},"type":"histogram2dcontour","colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"contour":[{"colorbar":{"ticks":"","outlinewidth":0},"type":"contour","colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"scattercarpet":[{"type":"scattercarpet","marker":{"colorbar":{"ticks":"","outlinewidth":0}}}],"mesh3d":[{"colorbar":{"ticks":"","outlinewidth":0},"type":"mesh3d"}],"surface":[{"colorbar":{"ticks":"","outlinewidth":0},"type":"surface","colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"scattermapbox":[{"type":"scattermapbox","marker":{"colorbar":{"ticks":"","outlinewidth":0}}}],"scattergeo":[{"type":"scattergeo","marker":{"colorbar":{"ticks":"","outlinewidth":0}}}],"histogram":[{"type":"histogram","marker":{"colorbar":{"ticks":"","outlinewidth":0}}}],"pie":[{"type":"pie","automargin":true}],"choropleth":[{"colorbar":{"ticks":"","outlinewidth":0},"type":"choropleth"}],"heatmapgl":[{"colorbar":{"ticks":"","outlinewidth":0},"type":"heatmapgl","colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"bar":[{"type":"bar","error_y":{"color":"#2a3f5f"},"error_x":{"color":"#2a3f5f"},"marker":{"line":{"color":"#E5ECF6","width":0.5}}}],"heatmap":[{"colorbar":{"ticks":"","outlinewidth":0},"type":"heatmap","colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"contourcarpet":[{"colorbar":{"ticks":"","outlinewidth":0},"type":"contourcarpet"}],"table":[{"type":"table","header":{"line":{"color":"white"},"fill":{"color":"#C8D4E3"}},"cells":{"line":{"color":"white"},"fill":{"color":"#EBF0F8"}}}],"scatter3d":[{"line":{"colorbar":{"ticks":"","outlinewidth":0}},"type":"scatter3d","marker":{"colorbar":{"ticks":"","outlinewidth":0}}}],"scattergl":[{"type":"scattergl","marker":{"colorbar":{"ticks":"","outlinewidth":0}}}],"histogram2d":[{"colorbar":{"ticks":"","outlinewidth":0},"type":"histogram2d","colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"scatterternary":[{"type":"scatterternary","marker":{"colorbar":{"ticks":"","outlinewidth":0}}}],"scatterpolargl":[{"type":"scatterpolargl","marker":{"colorbar":{"ticks":"","outlinewidth":0}}}]}},"height":400,"yaxis":{"gridcolor":"white","scaleanchor":"x","title":{"text":"y"},"zerolinecolor":"white"},"font":{"color":"gray"},"title":"","plot_bgcolor":"rgb(229,236,246)","margin":{"l":0,"b":0,"r":0,"t":50}}, {"modeBarButtonsToRemove":["zoom","autoScale","resetScale2d","pan","tableRotation","resetCameraLastSave","zoomIn","zoomOut"],"displaylogo":false,"toImageButtonOptions":{"format":"svg"},"editable":false,"responsive":true,"staticPlot":false,"scrollZoom":true}, diff --git a/dev/assets/examples/2-seq.html b/dev/assets/examples/2-seq.html index a7cf62efe..a051a31d3 100644 --- a/dev/assets/examples/2-seq.html +++ b/dev/assets/examples/2-seq.html @@ -9,7 +9,7 @@
@@ -17,9 +17,9 @@ window.PLOTLYENV = window.PLOTLYENV || {} - if (document.getElementById('ae8b81c0-36f2-4aa2-9767-e94ee8cde9cf')) { + if (document.getElementById('28ceee79-58ac-4d69-ba4c-3a24cd28c84d')) { Plotly.newPlot( - 'ae8b81c0-36f2-4aa2-9767-e94ee8cde9cf', + '28ceee79-58ac-4d69-ba4c-3a24cd28c84d', [{"y":[null,null,null,null,null,null,0.0,-15.560481134096916,-15.560481134096916,0.0,null,null,null,null,null,null,0.0,10.211565230481714,10.211565230481714,0.0,null,null,null,null,null,null,0.0,-10.211565230481714,-10.211565230481714,0.0,null,null,null,null,null,null,0.0,10.211565230481714,10.211565230481714,0.0,null,null,null,null,null,null,0.0,-10.211565230481714,-10.211565230481714,0.0,null,null,null,null,null,null,0.0,10.211565230481714,10.211565230481714,0.0,null,null,null,null,null,null,0.0,-10.211565230481714,-10.211565230481714,0.0,null,null,null,null,null,null,0.0,10.211565230481714,10.211565230481714,0.0,null,null,null,null,null,null,0.0,-10.211565230481714,-10.211565230481714,0.0,null,null,null,null,null,null,0.0,10.211565230481714,10.211565230481714,0.0,null,null,null,null,null,null,0.0,-10.211565230481714,-10.211565230481714,0.0,null,null,null,null,null,null,0.0,10.211565230481714,10.211565230481714,0.0,null,null,null,null,null,null,0.0,-10.211565230481714,-10.211565230481714,0.0,null,null,null,null,null,null,0.0,10.211565230481714,10.211565230481714,0.0,null,null,null,null,null,null,0.0,-10.211565230481714,-10.211565230481714,0.0,null,null,null,null,null,null,0.0,10.211565230481714,10.211565230481714,0.0,null,null,null,null,null,null,0.0,-10.211565230481714,-10.211565230481714,0.0,null,null,null,null,null,null,0.0,10.211565230481714,10.211565230481714,0.0,null,null,null,null,null,null,0.0,-10.211565230481714,-10.211565230481714,0.0,null,null,null,null,null,null,0.0,10.211565230481714,10.211565230481714,0.0,null,null,null,null,null,null,0.0,-10.211565230481714,-10.211565230481714,0.0,null,null,null,null,null,null,0.0,10.211565230481714,10.211565230481714,0.0,null,null,null,null,null,null,0.0,-10.211565230481714,-10.211565230481714,0.0,null,null,null,null,null,null,0.0,10.211565230481714,10.211565230481714,0.0,null,null,null,null,null,null,0.0,-10.211565230481714,-10.211565230481714,0.0,null,null,null,null,null,null,0.0,10.211565230481714,10.211565230481714,0.0,null,null,null,null,null,null,0.0,-10.211565230481714,-10.211565230481714,0.0,null,null,null,null,null,null,0.0,10.211565230481714,10.211565230481714,0.0,null,null,null,null,null,null,0.0,-10.211565230481714,-10.211565230481714,0.0,null,null,null,null,null,null,0.0,10.211565230481714,10.211565230481714,0.0,null,null,null,null,null,null,0.0,-10.211565230481714,-10.211565230481714,0.0,null,null,null,null,null,null,0.0,10.211565230481714,10.211565230481714,0.0,null,null,null,null,null,null,0.0,-10.211565230481714,-10.211565230481714,0.0,null,null,null,null,null,null,0.0,10.211565230481714,10.211565230481714,0.0,null,null,null,null,null,null,0.0,-10.211565230481714,-10.211565230481714,0.0,null,null,null,null,null,null,0.0,10.211565230481714,10.211565230481714,0.0,null,null,null,null,null,null,0.0,-10.211565230481714,-10.211565230481714,0.0,null,null,null,null,null,null,0.0,10.211565230481714,10.211565230481714,0.0,null,null,null,null,null,null,0.0,-10.211565230481714,-10.211565230481714,0.0,null,null,null,null,null,null,0.0,10.211565230481714,10.211565230481714,0.0,null,null,null,null,null,null,0.0,-10.211565230481714,-10.211565230481714,0.0,null,null,null,null,null,null,0.0,10.211565230481714,10.211565230481714,0.0,null,null,null,null,null,null,0.0,-10.211565230481714,-10.211565230481714,0.0,null,null,null,null,null,null,0.0,10.211565230481714,10.211565230481714,0.0,null,null,null,null,null,null,0.0,-10.211565230481714,-10.211565230481714,0.0,null,null,null,null,null,null,0.0,10.211565230481714,10.211565230481714,0.0,null,null,null,null,null,null,0.0,-10.211565230481714,-10.211565230481714,0.0,null,null,null,null,null,null,0.0,10.211565230481714,10.211565230481714,0.0,null,null,null,null,null,null,0.0,-10.211565230481714,-10.211565230481714,0.0,null,null,null,null,null,null,0.0,10.211565230481714,10.211565230481714,0.0,null,null,null,null,null,null,0.0,-10.211565230481714,-10.211565230481714,0.0,null,null,null,null,null,null,0.0,10.211565230481714,10.211565230481714,0.0,null,null,null,null,null,null,0.0,-10.211565230481714,-10.211565230481714,0.0,null,null,null,null,null,null,0.0,10.211565230481714,10.211565230481714,0.0,null,null,null,null,null,null,0.0,-10.211565230481714,-10.211565230481714,0.0,null,null,null,null,null,null,0.0,10.211565230481714,10.211565230481714,0.0,null,null,null,null,null,null,0.0,-10.211565230481714,-10.211565230481714,0.0,null,null,null,null,null,null,0.0,10.211565230481714,10.211565230481714,0.0,null,null,null,null,null,null,0.0,-10.211565230481714,-10.211565230481714,0.0,null,null,null,null,null,null,0.0,10.211565230481714,10.211565230481714,0.0,null,null,null,null,null,null,0.0,-10.211565230481714,-10.211565230481714,0.0,null,null,null,null,null,null,0.0,10.211565230481714,10.211565230481714,0.0,null,null,null,null,null,null,0.0,-10.211565230481714,-10.211565230481714,0.0,null,null,null,null,null,null,0.0,10.211565230481714,10.211565230481714,0.0,null,null,null,null,null,null,0.0,-10.211565230481714,-10.211565230481714,0.0,null,null,null,null,null,null,0.0,10.211565230481714,10.211565230481714,0.0,null,null,null,null,null,null,0.0,-10.211565230481714,-10.211565230481714,0.0,null,null,null,null,null,null,0.0,10.211565230481714,10.211565230481714,0.0,null,null,null,null,null,null,0.0,-10.211565230481714,-10.211565230481714,0.0,null,null,null,null,null,null,0.0,10.211565230481714,10.211565230481714,0.0,null,null,null,null,null,null,0.0,-10.211565230481714,-10.211565230481714,0.0,null,null,null,null,null,null,0.0,10.211565230481714,10.211565230481714,0.0,null,null,null,null,null,null,0.0,-10.211565230481714,-10.211565230481714,0.0,null,null,null,null,null,null,0.0,10.211565230481714,10.211565230481714,0.0,null,null,null,null,null,null,0.0,-10.211565230481714,-10.211565230481714,0.0,null,null,null,null,null,null,0.0,10.211565230481714,10.211565230481714,0.0,null,null,null,null,null,null,0.0,-10.211565230481714,-10.211565230481714,0.0,null,null,null,null,null,null,0.0,10.211565230481714,10.211565230481714,0.0,null,null,null,null,null,null,0.0,-10.211565230481714,-10.211565230481714,0.0,null,null,null,null,null,null,0.0,10.211565230481714,10.211565230481714,0.0,null,null,null,null,null,null,0.0,-10.211565230481714,-10.211565230481714,0.0,null,null,null,null,null,null,0.0,10.211565230481714,10.211565230481714,0.0,null,null,null,null,null,null,0.0,-10.211565230481714,-10.211565230481714,0.0,null,null,null,null,null,null,0.0,10.211565230481714,10.211565230481714,0.0,null,null,null,null,null,null,0.0,-10.211565230481714,-10.211565230481714,0.0,null,null,null,null,null,null,0.0,10.211565230481714,10.211565230481714,0.0,null,null,null,null,null,null,0.0,-10.211565230481714,-10.211565230481714,0.0,null,null,null,null,null,null,0.0,10.211565230481714,10.211565230481714,0.0,null,null,null,null,null,null,0.0,-10.211565230481714,-10.211565230481714,0.0,null,null,null,null,null,null,0.0,10.211565230481714,10.211565230481714,0.0,null,null,null,null,null,null,0.0,-10.211565230481714,-10.211565230481714,0.0,null,null,null,null,null,null,0.0,10.211565230481714,10.211565230481714,0.0,null,null,null,null,null,null,0.0,-10.211565230481714,-10.211565230481714,0.0,null,null,null,null,null,null,0.0,10.211565230481714,10.211565230481714,0.0,null,null,null,null,null,null,0.0,-10.211565230481714,-10.211565230481714,0.0,null,null,null,null,null,null,0.0,10.211565230481714,10.211565230481714,0.0,null,null,null,null,null,null,0.0,-10.211565230481714,-10.211565230481714,0.0,null,null,null,null,null,null,0.0,10.211565230481714,10.211565230481714,0.0,null,null,null,null,null,null,0.0,-10.211565230481714,-10.211565230481714,0.0,null,null,null,null,null,null,0.0,10.211565230481714,10.211565230481714,0.0,null,null,null,null,null,null,0.0,-10.211565230481714,-10.211565230481714,0.0,null,null,null,null,null,null,null,null,null,null],"type":"scatter","name":"Gx","hovertemplate":"(%{x:.4f} ms, %{y:.2f} mT/m)","x":[0.0,0.0,0.0,0.0,0.0,0.09949999999999999,0.09949999999999999,0.5195,0.5195,0.9394999999999999,0.9394999999999999,0.9394999999999999,0.9394999999999999,0.9394999999999999,0.9394999999999999,16.109499999999997,16.109499999999997,16.389499999999998,17.389499999999998,17.6695,17.6695,17.6695,17.6695,17.6695,17.6695,17.789499999999997,17.789499999999997,18.069499999999994,19.069499999999998,19.349499999999995,19.349499999999995,19.349499999999995,19.349499999999995,19.349499999999995,19.349499999999995,19.469499999999993,19.469499999999993,19.749499999999994,20.749499999999994,21.02949999999999,21.02949999999999,21.02949999999999,21.02949999999999,21.02949999999999,21.02949999999999,21.149499999999993,21.149499999999993,21.42949999999999,22.42949999999999,22.70949999999999,22.70949999999999,22.70949999999999,22.70949999999999,22.70949999999999,22.70949999999999,22.82949999999999,22.82949999999999,23.109499999999986,24.10949999999999,24.389499999999988,24.389499999999988,24.389499999999988,24.389499999999988,24.389499999999988,24.389499999999988,24.509499999999985,24.509499999999985,24.789499999999986,25.789499999999986,26.069499999999984,26.069499999999984,26.069499999999984,26.069499999999984,26.069499999999984,26.069499999999984,26.189499999999985,26.189499999999985,26.469499999999982,27.469499999999982,27.749499999999983,27.749499999999983,27.749499999999983,27.749499999999983,27.749499999999983,27.749499999999983,27.86949999999998,27.86949999999998,28.14949999999998,29.149499999999982,29.42949999999998,29.42949999999998,29.42949999999998,29.42949999999998,29.42949999999998,29.42949999999998,29.549499999999977,29.549499999999977,29.829499999999978,30.829499999999978,31.109499999999976,31.109499999999976,31.109499999999976,31.109499999999976,31.109499999999976,31.109499999999976,31.229499999999977,31.229499999999977,31.509499999999974,32.509499999999974,32.789499999999975,32.789499999999975,32.789499999999975,32.789499999999975,32.789499999999975,32.789499999999975,32.90949999999998,32.90949999999998,33.18949999999998,34.18949999999998,34.46949999999998,34.46949999999998,34.46949999999998,34.46949999999998,34.46949999999998,34.46949999999998,34.58949999999998,34.58949999999998,34.86949999999998,35.86949999999999,36.14949999999998,36.14949999999998,36.14949999999998,36.14949999999998,36.14949999999998,36.14949999999998,36.26949999999998,36.26949999999998,36.54949999999999,37.54949999999999,37.82949999999998,37.82949999999998,37.82949999999998,37.82949999999998,37.82949999999998,37.82949999999998,37.949499999999986,37.949499999999986,38.22949999999999,39.22949999999999,39.50949999999998,39.50949999999998,39.50949999999998,39.50949999999998,39.50949999999998,39.50949999999998,39.629499999999986,39.629499999999986,39.90949999999999,40.90949999999999,41.18949999999998,41.18949999999998,41.18949999999998,41.18949999999998,41.18949999999998,41.18949999999998,41.309499999999986,41.309499999999986,41.58949999999999,42.58949999999999,42.86949999999998,42.86949999999998,42.86949999999998,42.86949999999998,42.86949999999998,42.86949999999998,42.989499999999985,42.989499999999985,43.26949999999999,44.26949999999999,44.54949999999999,44.54949999999999,44.54949999999999,44.54949999999999,44.54949999999999,44.54949999999999,44.669499999999985,44.669499999999985,44.949499999999986,45.94949999999999,46.22949999999999,46.22949999999999,46.22949999999999,46.22949999999999,46.22949999999999,46.22949999999999,46.349499999999985,46.349499999999985,46.62949999999999,47.62949999999999,47.90949999999999,47.90949999999999,47.90949999999999,47.90949999999999,47.90949999999999,47.90949999999999,48.02949999999999,48.02949999999999,48.30949999999999,49.30949999999999,49.58949999999999,49.58949999999999,49.58949999999999,49.58949999999999,49.58949999999999,49.58949999999999,49.70949999999999,49.70949999999999,49.98949999999999,50.98949999999999,51.26949999999999,51.26949999999999,51.26949999999999,51.26949999999999,51.26949999999999,51.26949999999999,51.38949999999999,51.38949999999999,51.66949999999999,52.66949999999999,52.949499999999986,52.949499999999986,52.949499999999986,52.949499999999986,52.949499999999986,52.949499999999986,53.06949999999999,53.06949999999999,53.34949999999999,54.34949999999999,54.62949999999999,54.62949999999999,54.62949999999999,54.62949999999999,54.62949999999999,54.62949999999999,54.74949999999999,54.74949999999999,55.02949999999999,56.0295,56.30949999999999,56.30949999999999,56.30949999999999,56.30949999999999,56.30949999999999,56.30949999999999,56.42949999999999,56.42949999999999,56.7095,57.7095,57.98949999999999,57.98949999999999,57.98949999999999,57.98949999999999,57.98949999999999,57.98949999999999,58.1095,58.1095,58.3895,59.3895,59.66949999999999,59.66949999999999,59.66949999999999,59.66949999999999,59.66949999999999,59.66949999999999,59.7895,59.7895,60.0695,61.0695,61.34949999999999,61.34949999999999,61.34949999999999,61.34949999999999,61.34949999999999,61.34949999999999,61.4695,61.4695,61.7495,62.7495,63.0295,63.0295,63.0295,63.0295,63.0295,63.0295,63.149499999999996,63.149499999999996,63.4295,64.4295,64.7095,64.7095,64.7095,64.7095,64.7095,64.7095,64.8295,64.8295,65.1095,66.1095,66.3895,66.3895,66.3895,66.3895,66.3895,66.3895,66.5095,66.5095,66.7895,67.7895,68.0695,68.0695,68.0695,68.0695,68.0695,68.0695,68.1895,68.1895,68.4695,69.4695,69.74950000000001,69.74950000000001,69.74950000000001,69.74950000000001,69.74950000000001,69.74950000000001,69.8695,69.8695,70.1495,71.1495,71.4295,71.4295,71.4295,71.4295,71.4295,71.4295,71.54950000000001,71.54950000000001,71.82950000000001,72.82950000000001,73.10950000000001,73.10950000000001,73.10950000000001,73.10950000000001,73.10950000000001,73.10950000000001,73.2295,73.2295,73.5095,74.5095,74.7895,74.7895,74.7895,74.7895,74.7895,74.7895,74.90950000000001,74.90950000000001,75.18950000000001,76.18950000000001,76.46950000000001,76.46950000000001,76.46950000000001,76.46950000000001,76.46950000000001,76.46950000000001,76.5895,76.5895,76.8695,77.8695,78.14950000000002,78.14950000000002,78.14950000000002,78.14950000000002,78.14950000000002,78.14950000000002,78.26950000000001,78.26950000000001,78.54950000000001,79.54950000000001,79.82950000000001,79.82950000000001,79.82950000000001,79.82950000000001,79.82950000000001,79.82950000000001,79.9495,79.9495,80.22950000000002,81.22950000000002,81.50950000000002,81.50950000000002,81.50950000000002,81.50950000000002,81.50950000000002,81.50950000000002,81.62950000000001,81.62950000000001,81.90950000000001,82.90950000000001,83.18950000000001,83.18950000000001,83.18950000000001,83.18950000000001,83.18950000000001,83.18950000000001,83.30950000000001,83.30950000000001,83.58950000000002,84.58950000000002,84.86950000000002,84.86950000000002,84.86950000000002,84.86950000000002,84.86950000000002,84.86950000000002,84.9895,84.9895,85.26950000000001,86.26950000000001,86.54950000000001,86.54950000000001,86.54950000000001,86.54950000000001,86.54950000000001,86.54950000000001,86.66950000000001,86.66950000000001,86.94950000000001,87.94950000000001,88.22950000000002,88.22950000000002,88.22950000000002,88.22950000000002,88.22950000000002,88.22950000000002,88.3495,88.3495,88.62950000000001,89.62950000000002,89.90950000000002,89.90950000000002,89.90950000000002,89.90950000000002,89.90950000000002,89.90950000000002,90.02950000000001,90.02950000000001,90.30950000000001,91.30950000000001,91.58950000000002,91.58950000000002,91.58950000000002,91.58950000000002,91.58950000000002,91.58950000000002,91.70950000000002,91.70950000000002,91.98950000000002,92.98950000000002,93.26950000000002,93.26950000000002,93.26950000000002,93.26950000000002,93.26950000000002,93.26950000000002,93.38950000000001,93.38950000000001,93.66950000000001,94.66950000000001,94.94950000000001,94.94950000000001,94.94950000000001,94.94950000000001,94.94950000000001,94.94950000000001,95.06950000000002,95.06950000000002,95.34950000000002,96.34950000000002,96.62950000000002,96.62950000000002,96.62950000000002,96.62950000000002,96.62950000000002,96.62950000000002,96.74950000000001,96.74950000000001,97.02950000000001,98.02950000000001,98.30950000000003,98.30950000000003,98.30950000000003,98.30950000000003,98.30950000000003,98.30950000000003,98.42950000000002,98.42950000000002,98.70950000000002,99.70950000000002,99.98950000000002,99.98950000000002,99.98950000000002,99.98950000000002,99.98950000000002,99.98950000000002,100.10950000000001,100.10950000000001,100.38950000000003,101.38950000000003,101.66950000000003,101.66950000000003,101.66950000000003,101.66950000000003,101.66950000000003,101.66950000000003,101.78950000000002,101.78950000000002,102.06950000000002,103.06950000000002,103.34950000000002,103.34950000000002,103.34950000000002,103.34950000000002,103.34950000000002,103.34950000000002,103.46950000000002,103.46950000000002,103.74950000000003,104.74950000000003,105.02950000000003,105.02950000000003,105.02950000000003,105.02950000000003,105.02950000000003,105.02950000000003,105.14950000000002,105.14950000000002,105.42950000000002,106.42950000000002,106.70950000000002,106.70950000000002,106.70950000000002,106.70950000000002,106.70950000000002,106.70950000000002,106.82950000000002,106.82950000000002,107.10950000000003,108.10950000000003,108.38950000000003,108.38950000000003,108.38950000000003,108.38950000000003,108.38950000000003,108.38950000000003,108.50950000000002,108.50950000000002,108.78950000000002,109.78950000000003,110.06950000000003,110.06950000000002,110.06950000000002,110.06950000000002,110.06950000000002,110.06950000000002,110.18950000000002,110.18950000000002,110.46950000000002,111.46950000000002,111.74950000000003,111.74950000000003,111.74950000000003,111.74950000000003,111.74950000000003,111.74950000000003,111.86950000000003,111.86950000000003,112.14950000000003,113.14950000000003,113.42950000000003,113.42950000000002,113.42950000000002,113.42950000000002,113.42950000000002,113.42950000000002,113.54950000000002,113.54950000000002,113.82950000000002,114.82950000000002,115.10950000000003,115.10950000000003,115.10950000000003,115.10950000000003,115.10950000000003,115.10950000000003,115.22950000000003,115.22950000000003,115.50950000000003,116.50950000000003,116.78950000000003,116.78950000000002,116.78950000000002,116.78950000000002,116.78950000000002,116.78950000000002,116.90950000000002,116.90950000000002,117.18950000000002,118.18950000000002,118.46950000000004,118.46950000000002,118.46950000000002,118.46950000000002,118.46950000000002,118.46950000000002,118.58950000000002,118.58950000000002,118.86950000000002,119.86950000000002,120.14950000000002,120.14950000000002,120.14950000000002,120.14950000000002,120.14950000000002,120.14950000000002,120.26950000000002,120.26950000000002,120.54950000000002,121.54950000000002,121.82950000000002,121.82950000000002,121.82950000000002,121.82950000000002,121.82950000000002,121.82950000000002,121.94950000000001,121.94950000000001,122.22950000000002,123.22950000000002,123.50950000000002,123.50950000000002,123.50950000000002,123.50950000000002,123.50950000000002,123.50950000000002,123.62950000000002,123.62950000000002,123.90950000000002,124.90950000000002,125.18950000000001,125.18950000000001,125.18950000000001,125.18950000000001,125.18950000000001,125.18950000000001,125.30950000000001,125.30950000000001,125.58950000000002,126.58950000000002,126.86950000000003,126.86950000000003,126.86950000000003,126.86950000000003,126.86950000000003,126.86950000000003,126.9895,126.9895,127.26950000000001,128.26950000000002,128.54950000000002,128.54950000000002,128.54950000000002,128.54950000000002,128.54950000000002,128.54950000000002,128.6695,128.6695,128.9495,129.9495,130.2295,130.2295,130.2295,130.2295,130.2295,130.2295,130.3495,130.3495,130.6295,131.6295,131.9095,131.9095,131.9095,131.9095,131.9095,131.9095,132.0295,132.0295,132.3095,133.3095,133.58950000000002,133.5895,133.5895,133.5895,133.5895,133.5895,133.70950000000002,133.70950000000002,133.98950000000002,134.98950000000002,135.26950000000002,135.26950000000002,135.26950000000002,135.26950000000002,135.26950000000002,135.26950000000002,135.3895,135.3895,135.6695,136.6695,136.9495,136.9495,136.9495,136.9495,136.9495,136.9495,137.0695,137.0695,137.3495,138.3495,138.6295,138.6295,138.6295,138.6295,138.6295,138.6295,138.7495,138.7495,139.02950000000004,140.02950000000004,140.30950000000004,140.3095,140.3095,140.3095,140.3095,140.3095,140.42950000000002,140.42950000000002,140.70950000000002,141.70950000000002,141.98950000000002,141.98950000000002,141.98950000000002,141.98950000000002,141.98950000000002,141.98950000000002,142.1095,142.1095,142.3895,143.3895,143.6695,143.6695,143.6695,143.6695,143.6695,143.6695,143.7895,143.7895,144.0695,145.0695,145.34950000000003,145.34950000000003,145.34950000000003,145.34950000000003,145.34950000000003,145.34950000000003,145.46950000000004,145.46950000000004,145.74950000000004,146.74950000000004,147.02950000000004,147.0295,147.0295,147.0295,147.0295,147.0295,147.14950000000002,147.14950000000002,147.42950000000002,148.42950000000002,148.70950000000002,148.70950000000002,148.70950000000002,148.70950000000002,148.70950000000002,148.70950000000002,148.8295,148.8295,149.1095,150.1095,150.3895,150.3895,150.3895,150.3895,150.3895,150.3895,150.50950000000003,150.50950000000003,150.78950000000003,151.78950000000003,152.06950000000003,152.06950000000003,152.06950000000003,152.06950000000003,152.06950000000003,152.06950000000003,152.18950000000004,152.18950000000004,152.46950000000004,153.46950000000004,153.74950000000004,153.7495,153.7495,153.7495,153.7495,153.7495,153.86950000000002,153.86950000000002,154.14950000000002,155.14950000000002,155.42950000000002,155.42950000000002,155.42950000000002,155.42950000000002,155.42950000000002,155.42950000000002,155.5495,155.5495,155.8295,156.82950000000002,157.10950000000003,157.10950000000003,157.10950000000003,157.10950000000003,157.10950000000003,157.10950000000003,157.22950000000003,157.22950000000003,157.50950000000003,158.50950000000003,158.78950000000003,158.78950000000003,158.78950000000003,158.78950000000003,158.78950000000003,158.78950000000003,158.90950000000004,158.90950000000004,159.18950000000004,160.18950000000004,160.46950000000004,160.4695,160.4695,160.4695,160.4695,160.4695,160.58950000000002,160.58950000000002,160.86950000000002,161.86950000000002,162.14950000000002,162.14950000000002,162.14950000000002,162.14950000000002,162.14950000000002,162.14950000000002,162.26950000000002,162.26950000000002,162.54950000000002,163.54950000000002,163.82950000000002,163.82950000000002,163.82950000000002,163.82950000000002,163.82950000000002,163.82950000000002,163.94950000000003,163.94950000000003,164.22950000000003,165.22950000000003,165.50950000000003,165.50950000000003,165.50950000000003,165.50950000000003,165.50950000000003,165.50950000000003,165.62950000000004,165.62950000000004,165.90950000000004,166.90950000000004,167.18950000000004,167.18950000000004,167.18950000000004,167.18950000000004,167.18950000000004,167.18950000000004,167.3095,167.3095,167.58950000000004,168.58950000000004,168.86950000000004,168.86950000000004,168.86950000000004,168.86950000000004,168.86950000000004,168.86950000000004,168.98950000000002,168.98950000000002,169.26950000000002,170.26950000000002,170.54950000000002,170.54950000000002,170.54950000000002,170.54950000000002,170.54950000000002,170.54950000000002,170.66950000000003,170.66950000000003,170.94950000000003,171.94950000000003,172.22950000000003,172.22950000000003,172.22950000000003,172.22950000000003,172.22950000000003,172.22950000000003,172.34950000000003,172.34950000000003,172.62950000000004,173.62950000000004,173.90950000000004,173.90950000000004,173.90950000000004,173.90950000000004,173.90950000000004,173.90950000000004,174.02950000000004,174.02950000000004,174.30950000000004,175.30950000000004,175.58950000000004,175.58950000000004,175.58950000000004,175.58950000000004,175.58950000000004,175.58950000000004,175.70950000000002,175.70950000000002,175.98950000000002,176.98950000000002,177.26950000000002,177.26950000000002,177.26950000000002,177.26950000000002,177.26950000000002,177.26950000000002,177.38950000000003,177.38950000000003,177.66950000000003,178.66950000000003,178.94950000000003,178.94950000000003,178.94950000000003,178.94950000000003,178.94950000000003,178.94950000000003,179.06950000000006,179.06950000000006,179.34950000000006,180.34950000000006,180.62950000000006,180.62950000000006,180.62950000000006,180.62950000000006,180.62950000000006,180.62950000000006,180.74950000000004,180.74950000000004,181.02950000000004,182.02950000000004,182.30950000000004,182.30950000000004,182.30950000000004,182.30950000000004,182.30950000000004,182.30950000000004,182.42950000000002,182.42950000000002,182.70950000000002,183.70950000000002,183.98950000000002,183.98950000000002,183.98950000000002,183.98950000000002,183.98950000000002,183.98950000000002,183.99000000000004,183.99000000000004,183.99000000000004,183.99000000000004,183.99000000000004]},{"y":[null,null,null,null,null,null,0.0,13.799413552738015,13.799413552738015,0.0,null,null,null,null,null,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,0.0,-1.7019276167022876,-1.7019276167022876,0.0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"type":"scatter","name":"Gy","hovertemplate":"(%{x:.4f} ms, %{y:.2f} mT/m)","x":[0.0,0.0,0.0,0.0,0.0,0.09949999999999999,0.09949999999999999,0.4695,0.4695,0.8394999999999999,0.9394999999999999,0.9394999999999999,0.9394999999999999,0.9394999999999999,0.9394999999999999,16.109499999999997,16.109499999999997,16.109499999999997,16.109499999999997,16.109499999999997,17.6695,17.6695,17.729499999999998,17.729499999999998,17.789499999999997,17.789499999999997,17.789499999999997,17.789499999999997,17.789499999999997,17.789499999999997,19.349499999999995,19.349499999999995,19.409499999999998,19.409499999999998,19.469499999999993,19.469499999999993,19.469499999999993,19.469499999999993,19.469499999999993,19.469499999999993,21.02949999999999,21.02949999999999,21.089499999999994,21.089499999999994,21.149499999999993,21.149499999999993,21.149499999999993,21.149499999999993,21.149499999999993,21.149499999999993,22.70949999999999,22.70949999999999,22.76949999999999,22.76949999999999,22.82949999999999,22.82949999999999,22.82949999999999,22.82949999999999,22.82949999999999,22.82949999999999,24.389499999999988,24.389499999999988,24.44949999999999,24.44949999999999,24.509499999999985,24.509499999999985,24.509499999999985,24.509499999999985,24.509499999999985,24.509499999999985,26.069499999999984,26.069499999999984,26.129499999999986,26.129499999999986,26.189499999999985,26.189499999999985,26.189499999999985,26.189499999999985,26.189499999999985,26.189499999999985,27.749499999999983,27.749499999999983,27.809499999999982,27.809499999999982,27.86949999999998,27.86949999999998,27.86949999999998,27.86949999999998,27.86949999999998,27.86949999999998,29.42949999999998,29.42949999999998,29.489499999999982,29.489499999999982,29.549499999999977,29.549499999999977,29.549499999999977,29.549499999999977,29.549499999999977,29.549499999999977,31.109499999999976,31.109499999999976,31.169499999999978,31.169499999999978,31.229499999999977,31.229499999999977,31.229499999999977,31.229499999999977,31.229499999999977,31.229499999999977,32.789499999999975,32.789499999999975,32.84949999999998,32.84949999999998,32.90949999999998,32.90949999999998,32.90949999999998,32.90949999999998,32.90949999999998,32.90949999999998,34.46949999999998,34.46949999999998,34.52949999999998,34.52949999999998,34.58949999999998,34.58949999999998,34.58949999999998,34.58949999999998,34.58949999999998,34.58949999999998,36.14949999999998,36.14949999999998,36.20949999999998,36.20949999999998,36.26949999999998,36.26949999999998,36.26949999999998,36.26949999999998,36.26949999999998,36.26949999999998,37.82949999999998,37.82949999999998,37.88949999999998,37.88949999999998,37.949499999999986,37.949499999999986,37.949499999999986,37.949499999999986,37.949499999999986,37.949499999999986,39.50949999999998,39.50949999999998,39.56949999999998,39.56949999999998,39.629499999999986,39.629499999999986,39.629499999999986,39.629499999999986,39.629499999999986,39.629499999999986,41.18949999999998,41.18949999999998,41.24949999999998,41.24949999999998,41.309499999999986,41.309499999999986,41.309499999999986,41.309499999999986,41.309499999999986,41.309499999999986,42.86949999999998,42.86949999999998,42.92949999999998,42.92949999999998,42.989499999999985,42.989499999999985,42.989499999999985,42.989499999999985,42.989499999999985,42.989499999999985,44.54949999999999,44.54949999999999,44.60949999999998,44.60949999999998,44.669499999999985,44.669499999999985,44.669499999999985,44.669499999999985,44.669499999999985,44.669499999999985,46.22949999999999,46.22949999999999,46.28949999999998,46.28949999999998,46.349499999999985,46.349499999999985,46.349499999999985,46.349499999999985,46.349499999999985,46.349499999999985,47.90949999999999,47.90949999999999,47.96949999999998,47.96949999999998,48.02949999999999,48.02949999999999,48.02949999999999,48.02949999999999,48.02949999999999,48.02949999999999,49.58949999999999,49.58949999999999,49.64949999999998,49.64949999999998,49.70949999999999,49.70949999999999,49.70949999999999,49.70949999999999,49.70949999999999,49.70949999999999,51.26949999999999,51.26949999999999,51.32949999999999,51.32949999999999,51.38949999999999,51.38949999999999,51.38949999999999,51.38949999999999,51.38949999999999,51.38949999999999,52.949499999999986,52.949499999999986,53.00949999999999,53.00949999999999,53.06949999999999,53.06949999999999,53.06949999999999,53.06949999999999,53.06949999999999,53.06949999999999,54.62949999999999,54.62949999999999,54.68949999999999,54.68949999999999,54.74949999999999,54.74949999999999,54.74949999999999,54.74949999999999,54.74949999999999,54.74949999999999,56.30949999999999,56.30949999999999,56.36949999999999,56.36949999999999,56.42949999999999,56.42949999999999,56.42949999999999,56.42949999999999,56.42949999999999,56.42949999999999,57.98949999999999,57.98949999999999,58.04949999999999,58.04949999999999,58.1095,58.1095,58.1095,58.1095,58.1095,58.1095,59.66949999999999,59.66949999999999,59.72949999999999,59.72949999999999,59.7895,59.7895,59.7895,59.7895,59.7895,59.7895,61.34949999999999,61.34949999999999,61.409499999999994,61.409499999999994,61.4695,61.4695,61.4695,61.4695,61.4695,61.4695,63.0295,63.0295,63.08950000000001,63.08950000000001,63.149499999999996,63.149499999999996,63.149499999999996,63.149499999999996,63.149499999999996,63.149499999999996,64.7095,64.7095,64.76950000000001,64.76950000000001,64.8295,64.8295,64.8295,64.8295,64.8295,64.8295,66.3895,66.3895,66.44950000000001,66.44950000000001,66.5095,66.5095,66.5095,66.5095,66.5095,66.5095,68.0695,68.0695,68.12950000000001,68.12950000000001,68.1895,68.1895,68.1895,68.1895,68.1895,68.1895,69.74950000000001,69.74950000000001,69.80950000000001,69.80950000000001,69.8695,69.8695,69.8695,69.8695,69.8695,69.8695,71.4295,71.4295,71.4895,71.4895,71.54950000000001,71.54950000000001,71.54950000000001,71.54950000000001,71.54950000000001,71.54950000000001,73.10950000000001,73.10950000000001,73.16950000000001,73.16950000000001,73.2295,73.2295,73.2295,73.2295,73.2295,73.2295,74.7895,74.7895,74.8495,74.8495,74.90950000000001,74.90950000000001,74.90950000000001,74.90950000000001,74.90950000000001,74.90950000000001,76.46950000000001,76.46950000000001,76.52950000000001,76.52950000000001,76.5895,76.5895,76.5895,76.5895,76.5895,76.5895,78.14950000000002,78.14950000000002,78.20950000000002,78.20950000000002,78.26950000000001,78.26950000000001,78.26950000000001,78.26950000000001,78.26950000000001,78.26950000000001,79.82950000000001,79.82950000000001,79.88950000000001,79.88950000000001,79.9495,79.9495,79.9495,79.9495,79.9495,79.9495,81.50950000000002,81.50950000000002,81.56950000000002,81.56950000000002,81.62950000000001,81.62950000000001,81.62950000000001,81.62950000000001,81.62950000000001,81.62950000000001,83.18950000000001,83.18950000000001,83.24950000000001,83.24950000000001,83.30950000000001,83.30950000000001,83.30950000000001,83.30950000000001,83.30950000000001,83.30950000000001,84.86950000000002,84.86950000000002,84.92950000000002,84.92950000000002,84.9895,84.9895,84.9895,84.9895,84.9895,84.9895,86.54950000000001,86.54950000000001,86.60950000000003,86.60950000000003,86.66950000000001,86.66950000000001,86.66950000000001,86.66950000000001,86.66950000000001,86.66950000000001,88.22950000000002,88.22950000000002,88.28950000000002,88.28950000000002,88.3495,88.3495,88.3495,88.3495,88.3495,88.3495,89.90950000000002,89.90950000000002,89.96950000000002,89.96950000000002,90.02950000000001,90.02950000000001,90.02950000000001,90.02950000000001,90.02950000000001,90.02950000000001,91.58950000000002,91.58950000000002,91.64950000000002,91.64950000000002,91.70950000000002,91.70950000000002,91.70950000000002,91.70950000000002,91.70950000000002,91.70950000000002,93.26950000000002,93.26950000000002,93.32950000000002,93.32950000000002,93.38950000000001,93.38950000000001,93.38950000000001,93.38950000000001,93.38950000000001,93.38950000000001,94.94950000000001,94.94950000000001,95.00950000000003,95.00950000000003,95.06950000000002,95.06950000000002,95.06950000000002,95.06950000000002,95.06950000000002,95.06950000000002,96.62950000000002,96.62950000000002,96.68950000000002,96.68950000000002,96.74950000000001,96.74950000000001,96.74950000000001,96.74950000000001,96.74950000000001,96.74950000000001,98.30950000000003,98.30950000000003,98.36950000000003,98.36950000000003,98.42950000000002,98.42950000000002,98.42950000000002,98.42950000000002,98.42950000000002,98.42950000000002,99.98950000000002,99.98950000000002,100.04950000000002,100.04950000000002,100.10950000000001,100.10950000000001,100.10950000000001,100.10950000000001,100.10950000000001,100.10950000000001,101.66950000000003,101.66950000000003,101.72950000000003,101.72950000000003,101.78950000000002,101.78950000000002,101.78950000000002,101.78950000000002,101.78950000000002,101.78950000000002,103.34950000000002,103.34950000000002,103.40950000000002,103.40950000000002,103.46950000000002,103.46950000000002,103.46950000000002,103.46950000000002,103.46950000000002,103.46950000000002,105.02950000000003,105.02950000000003,105.08950000000003,105.08950000000003,105.14950000000002,105.14950000000002,105.14950000000002,105.14950000000002,105.14950000000002,105.14950000000002,106.70950000000002,106.70950000000002,106.76950000000004,106.76950000000004,106.82950000000002,106.82950000000002,106.82950000000002,106.82950000000002,106.82950000000002,106.82950000000002,108.38950000000003,108.38950000000003,108.44950000000003,108.44950000000003,108.50950000000002,108.50950000000002,108.50950000000002,108.50950000000002,108.50950000000002,108.50950000000002,110.06950000000002,110.06950000000002,110.12950000000002,110.12950000000002,110.18950000000001,110.18950000000002,110.18950000000002,110.18950000000002,110.18950000000002,110.18950000000002,111.74950000000003,111.74950000000003,111.80950000000003,111.80950000000003,111.86950000000003,111.86950000000003,111.86950000000003,111.86950000000003,111.86950000000003,111.86950000000003,113.42950000000002,113.42950000000002,113.48950000000002,113.48950000000002,113.54950000000001,113.54950000000002,113.54950000000002,113.54950000000002,113.54950000000002,113.54950000000002,115.10950000000003,115.10950000000003,115.16950000000004,115.16950000000004,115.22950000000003,115.22950000000003,115.22950000000003,115.22950000000003,115.22950000000003,115.22950000000003,116.78950000000002,116.78950000000002,116.84950000000002,116.84950000000002,116.90950000000001,116.90950000000002,116.90950000000002,116.90950000000002,116.90950000000002,116.90950000000002,118.46950000000002,118.46950000000002,118.52950000000003,118.52950000000003,118.58950000000002,118.58950000000002,118.58950000000002,118.58950000000002,118.58950000000002,118.58950000000002,120.14950000000002,120.14950000000002,120.20950000000002,120.20950000000002,120.26950000000002,120.26950000000002,120.26950000000002,120.26950000000002,120.26950000000002,120.26950000000002,121.82950000000002,121.82950000000002,121.88950000000003,121.88950000000003,121.94950000000001,121.94950000000001,121.94950000000001,121.94950000000001,121.94950000000001,121.94950000000001,123.50950000000002,123.50950000000002,123.56950000000003,123.56950000000003,123.62950000000002,123.62950000000002,123.62950000000002,123.62950000000002,123.62950000000002,123.62950000000002,125.18950000000001,125.18950000000001,125.24950000000001,125.24950000000001,125.30950000000001,125.30950000000001,125.30950000000001,125.30950000000001,125.30950000000001,125.30950000000001,126.86950000000003,126.86950000000003,126.92950000000003,126.92950000000003,126.98950000000004,126.9895,126.9895,126.9895,126.9895,126.9895,128.54950000000002,128.54950000000002,128.60950000000003,128.60950000000003,128.66950000000003,128.6695,128.6695,128.6695,128.6695,128.6695,130.2295,130.2295,130.2895,130.2895,130.3495,130.3495,130.3495,130.3495,130.3495,130.3495,131.9095,131.9095,131.9695,131.9695,132.0295,132.0295,132.0295,132.0295,132.0295,132.0295,133.5895,133.5895,133.64950000000002,133.64950000000002,133.70950000000002,133.70950000000002,133.70950000000002,133.70950000000002,133.70950000000002,133.70950000000002,135.26950000000002,135.26950000000002,135.32950000000002,135.32950000000002,135.38950000000003,135.3895,135.3895,135.3895,135.3895,135.3895,136.9495,136.9495,137.0095,137.0095,137.0695,137.0695,137.0695,137.0695,137.0695,137.0695,138.6295,138.6295,138.6895,138.6895,138.7495,138.7495,138.7495,138.7495,138.7495,138.7495,140.3095,140.3095,140.36950000000002,140.36950000000002,140.42950000000002,140.42950000000002,140.42950000000002,140.42950000000002,140.42950000000002,140.42950000000002,141.98950000000002,141.98950000000002,142.04950000000002,142.04950000000002,142.10950000000003,142.1095,142.1095,142.1095,142.1095,142.1095,143.6695,143.6695,143.7295,143.7295,143.7895,143.7895,143.7895,143.7895,143.7895,143.7895,145.34950000000003,145.34950000000003,145.40950000000004,145.40950000000004,145.46950000000004,145.46950000000004,145.46950000000004,145.46950000000004,145.46950000000004,145.46950000000004,147.0295,147.0295,147.08950000000002,147.08950000000002,147.14950000000002,147.14950000000002,147.14950000000002,147.14950000000002,147.14950000000002,147.14950000000002,148.70950000000002,148.70950000000002,148.76950000000002,148.76950000000002,148.82950000000002,148.8295,148.8295,148.8295,148.8295,148.8295,150.3895,150.3895,150.4495,150.4495,150.50950000000003,150.50950000000003,150.50950000000003,150.50950000000003,150.50950000000003,150.50950000000003,152.06950000000003,152.06950000000003,152.12950000000004,152.12950000000004,152.18950000000004,152.18950000000004,152.18950000000004,152.18950000000004,152.18950000000004,152.18950000000004,153.7495,153.7495,153.8095,153.8095,153.86950000000002,153.86950000000002,153.86950000000002,153.86950000000002,153.86950000000002,153.86950000000002,155.42950000000002,155.42950000000002,155.48950000000002,155.48950000000002,155.54950000000002,155.5495,155.5495,155.5495,155.5495,155.5495,157.10950000000003,157.10950000000003,157.16950000000003,157.16950000000003,157.22950000000003,157.22950000000003,157.22950000000003,157.22950000000003,157.22950000000003,157.22950000000003,158.78950000000003,158.78950000000003,158.84950000000003,158.84950000000003,158.90950000000004,158.90950000000004,158.90950000000004,158.90950000000004,158.90950000000004,158.90950000000004,160.4695,160.4695,160.5295,160.5295,160.58950000000002,160.58950000000002,160.58950000000002,160.58950000000002,160.58950000000002,160.58950000000002,162.14950000000002,162.14950000000002,162.20950000000005,162.20950000000005,162.26950000000005,162.26950000000002,162.26950000000002,162.26950000000002,162.26950000000002,162.26950000000002,163.82950000000002,163.82950000000002,163.88950000000003,163.88950000000003,163.94950000000003,163.94950000000003,163.94950000000003,163.94950000000003,163.94950000000003,163.94950000000003,165.50950000000003,165.50950000000003,165.56950000000003,165.56950000000003,165.62950000000004,165.62950000000004,165.62950000000004,165.62950000000004,165.62950000000004,165.62950000000004,167.18950000000004,167.18950000000004,167.24950000000004,167.24950000000004,167.30950000000004,167.3095,167.3095,167.3095,167.3095,167.3095,168.86950000000004,168.86950000000004,168.92950000000005,168.92950000000005,168.98950000000005,168.98950000000002,168.98950000000002,168.98950000000002,168.98950000000002,168.98950000000002,170.54950000000002,170.54950000000002,170.60950000000003,170.60950000000003,170.66950000000003,170.66950000000003,170.66950000000003,170.66950000000003,170.66950000000003,170.66950000000003,172.22950000000003,172.22950000000003,172.28950000000003,172.28950000000003,172.34950000000003,172.34950000000003,172.34950000000003,172.34950000000003,172.34950000000003,172.34950000000003,173.90950000000004,173.90950000000004,173.96950000000007,173.96950000000007,174.02950000000007,174.02950000000004,174.02950000000004,174.02950000000004,174.02950000000004,174.02950000000004,175.58950000000004,175.58950000000004,175.64950000000005,175.64950000000005,175.70950000000005,175.70950000000002,175.70950000000002,175.70950000000002,175.70950000000002,175.70950000000002,177.26950000000002,177.26950000000002,177.32950000000002,177.32950000000002,177.38950000000003,177.38950000000003,177.38950000000003,177.38950000000003,177.38950000000003,177.38950000000003,178.94950000000003,178.94950000000003,179.00950000000003,179.00950000000003,179.06950000000006,179.06950000000006,179.06950000000006,179.06950000000006,179.06950000000006,179.06950000000006,180.62950000000006,180.62950000000006,180.68950000000007,180.68950000000007,180.74950000000007,180.74950000000004,180.74950000000004,180.74950000000004,180.74950000000004,180.74950000000004,182.30950000000004,182.30950000000004,182.36950000000004,182.36950000000004,182.42950000000005,182.42950000000002,182.42950000000002,182.42950000000002,182.42950000000002,182.42950000000002,183.98950000000002,183.98950000000002,183.98950000000002,183.98950000000002,183.98950000000002,183.99000000000004,183.99000000000004,183.99000000000004,183.99000000000004,183.99000000000004]},{"y":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"type":"scatter","name":"Gz","hovertemplate":"(%{x:.4f} ms, %{y:.2f} mT/m)","x":[0.0,0.0,0.0,0.0,0.0,0.09949999999999999,0.09949999999999999,0.09949999999999999,0.09949999999999999,0.09949999999999999,0.9394999999999999,0.9394999999999999,0.9394999999999999,0.9394999999999999,0.9394999999999999,16.109499999999997,16.109499999999997,16.109499999999997,16.109499999999997,16.109499999999997,17.6695,17.6695,17.6695,17.6695,17.6695,17.789499999999997,17.789499999999997,17.789499999999997,17.789499999999997,17.789499999999997,19.349499999999995,19.349499999999995,19.349499999999995,19.349499999999995,19.349499999999995,19.469499999999993,19.469499999999993,19.469499999999993,19.469499999999993,19.469499999999993,21.02949999999999,21.02949999999999,21.02949999999999,21.02949999999999,21.02949999999999,21.149499999999993,21.149499999999993,21.149499999999993,21.149499999999993,21.149499999999993,22.70949999999999,22.70949999999999,22.70949999999999,22.70949999999999,22.70949999999999,22.82949999999999,22.82949999999999,22.82949999999999,22.82949999999999,22.82949999999999,24.389499999999988,24.389499999999988,24.389499999999988,24.389499999999988,24.389499999999988,24.509499999999985,24.509499999999985,24.509499999999985,24.509499999999985,24.509499999999985,26.069499999999984,26.069499999999984,26.069499999999984,26.069499999999984,26.069499999999984,26.189499999999985,26.189499999999985,26.189499999999985,26.189499999999985,26.189499999999985,27.749499999999983,27.749499999999983,27.749499999999983,27.749499999999983,27.749499999999983,27.86949999999998,27.86949999999998,27.86949999999998,27.86949999999998,27.86949999999998,29.42949999999998,29.42949999999998,29.42949999999998,29.42949999999998,29.42949999999998,29.549499999999977,29.549499999999977,29.549499999999977,29.549499999999977,29.549499999999977,31.109499999999976,31.109499999999976,31.109499999999976,31.109499999999976,31.109499999999976,31.229499999999977,31.229499999999977,31.229499999999977,31.229499999999977,31.229499999999977,32.789499999999975,32.789499999999975,32.789499999999975,32.789499999999975,32.789499999999975,32.90949999999998,32.90949999999998,32.90949999999998,32.90949999999998,32.90949999999998,34.46949999999998,34.46949999999998,34.46949999999998,34.46949999999998,34.46949999999998,34.58949999999998,34.58949999999998,34.58949999999998,34.58949999999998,34.58949999999998,36.14949999999998,36.14949999999998,36.14949999999998,36.14949999999998,36.14949999999998,36.26949999999998,36.26949999999998,36.26949999999998,36.26949999999998,36.26949999999998,37.82949999999998,37.82949999999998,37.82949999999998,37.82949999999998,37.82949999999998,37.949499999999986,37.949499999999986,37.949499999999986,37.949499999999986,37.949499999999986,39.50949999999998,39.50949999999998,39.50949999999998,39.50949999999998,39.50949999999998,39.629499999999986,39.629499999999986,39.629499999999986,39.629499999999986,39.629499999999986,41.18949999999998,41.18949999999998,41.18949999999998,41.18949999999998,41.18949999999998,41.309499999999986,41.309499999999986,41.309499999999986,41.309499999999986,41.309499999999986,42.86949999999998,42.86949999999998,42.86949999999998,42.86949999999998,42.86949999999998,42.989499999999985,42.989499999999985,42.989499999999985,42.989499999999985,42.989499999999985,44.54949999999999,44.54949999999999,44.54949999999999,44.54949999999999,44.54949999999999,44.669499999999985,44.669499999999985,44.669499999999985,44.669499999999985,44.669499999999985,46.22949999999999,46.22949999999999,46.22949999999999,46.22949999999999,46.22949999999999,46.349499999999985,46.349499999999985,46.349499999999985,46.349499999999985,46.349499999999985,47.90949999999999,47.90949999999999,47.90949999999999,47.90949999999999,47.90949999999999,48.02949999999999,48.02949999999999,48.02949999999999,48.02949999999999,48.02949999999999,49.58949999999999,49.58949999999999,49.58949999999999,49.58949999999999,49.58949999999999,49.70949999999999,49.70949999999999,49.70949999999999,49.70949999999999,49.70949999999999,51.26949999999999,51.26949999999999,51.26949999999999,51.26949999999999,51.26949999999999,51.38949999999999,51.38949999999999,51.38949999999999,51.38949999999999,51.38949999999999,52.949499999999986,52.949499999999986,52.949499999999986,52.949499999999986,52.949499999999986,53.06949999999999,53.06949999999999,53.06949999999999,53.06949999999999,53.06949999999999,54.62949999999999,54.62949999999999,54.62949999999999,54.62949999999999,54.62949999999999,54.74949999999999,54.74949999999999,54.74949999999999,54.74949999999999,54.74949999999999,56.30949999999999,56.30949999999999,56.30949999999999,56.30949999999999,56.30949999999999,56.42949999999999,56.42949999999999,56.42949999999999,56.42949999999999,56.42949999999999,57.98949999999999,57.98949999999999,57.98949999999999,57.98949999999999,57.98949999999999,58.1095,58.1095,58.1095,58.1095,58.1095,59.66949999999999,59.66949999999999,59.66949999999999,59.66949999999999,59.66949999999999,59.7895,59.7895,59.7895,59.7895,59.7895,61.34949999999999,61.34949999999999,61.34949999999999,61.34949999999999,61.34949999999999,61.4695,61.4695,61.4695,61.4695,61.4695,63.0295,63.0295,63.0295,63.0295,63.0295,63.149499999999996,63.149499999999996,63.149499999999996,63.149499999999996,63.149499999999996,64.7095,64.7095,64.7095,64.7095,64.7095,64.8295,64.8295,64.8295,64.8295,64.8295,66.3895,66.3895,66.3895,66.3895,66.3895,66.5095,66.5095,66.5095,66.5095,66.5095,68.0695,68.0695,68.0695,68.0695,68.0695,68.1895,68.1895,68.1895,68.1895,68.1895,69.74950000000001,69.74950000000001,69.74950000000001,69.74950000000001,69.74950000000001,69.8695,69.8695,69.8695,69.8695,69.8695,71.4295,71.4295,71.4295,71.4295,71.4295,71.54950000000001,71.54950000000001,71.54950000000001,71.54950000000001,71.54950000000001,73.10950000000001,73.10950000000001,73.10950000000001,73.10950000000001,73.10950000000001,73.2295,73.2295,73.2295,73.2295,73.2295,74.7895,74.7895,74.7895,74.7895,74.7895,74.90950000000001,74.90950000000001,74.90950000000001,74.90950000000001,74.90950000000001,76.46950000000001,76.46950000000001,76.46950000000001,76.46950000000001,76.46950000000001,76.5895,76.5895,76.5895,76.5895,76.5895,78.14950000000002,78.14950000000002,78.14950000000002,78.14950000000002,78.14950000000002,78.26950000000001,78.26950000000001,78.26950000000001,78.26950000000001,78.26950000000001,79.82950000000001,79.82950000000001,79.82950000000001,79.82950000000001,79.82950000000001,79.9495,79.9495,79.9495,79.9495,79.9495,81.50950000000002,81.50950000000002,81.50950000000002,81.50950000000002,81.50950000000002,81.62950000000001,81.62950000000001,81.62950000000001,81.62950000000001,81.62950000000001,83.18950000000001,83.18950000000001,83.18950000000001,83.18950000000001,83.18950000000001,83.30950000000001,83.30950000000001,83.30950000000001,83.30950000000001,83.30950000000001,84.86950000000002,84.86950000000002,84.86950000000002,84.86950000000002,84.86950000000002,84.9895,84.9895,84.9895,84.9895,84.9895,86.54950000000001,86.54950000000001,86.54950000000001,86.54950000000001,86.54950000000001,86.66950000000001,86.66950000000001,86.66950000000001,86.66950000000001,86.66950000000001,88.22950000000002,88.22950000000002,88.22950000000002,88.22950000000002,88.22950000000002,88.3495,88.3495,88.3495,88.3495,88.3495,89.90950000000002,89.90950000000002,89.90950000000002,89.90950000000002,89.90950000000002,90.02950000000001,90.02950000000001,90.02950000000001,90.02950000000001,90.02950000000001,91.58950000000002,91.58950000000002,91.58950000000002,91.58950000000002,91.58950000000002,91.70950000000002,91.70950000000002,91.70950000000002,91.70950000000002,91.70950000000002,93.26950000000002,93.26950000000002,93.26950000000002,93.26950000000002,93.26950000000002,93.38950000000001,93.38950000000001,93.38950000000001,93.38950000000001,93.38950000000001,94.94950000000001,94.94950000000001,94.94950000000001,94.94950000000001,94.94950000000001,95.06950000000002,95.06950000000002,95.06950000000002,95.06950000000002,95.06950000000002,96.62950000000002,96.62950000000002,96.62950000000002,96.62950000000002,96.62950000000002,96.74950000000001,96.74950000000001,96.74950000000001,96.74950000000001,96.74950000000001,98.30950000000003,98.30950000000003,98.30950000000003,98.30950000000003,98.30950000000003,98.42950000000002,98.42950000000002,98.42950000000002,98.42950000000002,98.42950000000002,99.98950000000002,99.98950000000002,99.98950000000002,99.98950000000002,99.98950000000002,100.10950000000001,100.10950000000001,100.10950000000001,100.10950000000001,100.10950000000001,101.66950000000003,101.66950000000003,101.66950000000003,101.66950000000003,101.66950000000003,101.78950000000002,101.78950000000002,101.78950000000002,101.78950000000002,101.78950000000002,103.34950000000002,103.34950000000002,103.34950000000002,103.34950000000002,103.34950000000002,103.46950000000002,103.46950000000002,103.46950000000002,103.46950000000002,103.46950000000002,105.02950000000003,105.02950000000003,105.02950000000003,105.02950000000003,105.02950000000003,105.14950000000002,105.14950000000002,105.14950000000002,105.14950000000002,105.14950000000002,106.70950000000002,106.70950000000002,106.70950000000002,106.70950000000002,106.70950000000002,106.82950000000002,106.82950000000002,106.82950000000002,106.82950000000002,106.82950000000002,108.38950000000003,108.38950000000003,108.38950000000003,108.38950000000003,108.38950000000003,108.50950000000002,108.50950000000002,108.50950000000002,108.50950000000002,108.50950000000002,110.06950000000002,110.06950000000002,110.06950000000002,110.06950000000002,110.06950000000002,110.18950000000002,110.18950000000002,110.18950000000002,110.18950000000002,110.18950000000002,111.74950000000003,111.74950000000003,111.74950000000003,111.74950000000003,111.74950000000003,111.86950000000003,111.86950000000003,111.86950000000003,111.86950000000003,111.86950000000003,113.42950000000002,113.42950000000002,113.42950000000002,113.42950000000002,113.42950000000002,113.54950000000002,113.54950000000002,113.54950000000002,113.54950000000002,113.54950000000002,115.10950000000003,115.10950000000003,115.10950000000003,115.10950000000003,115.10950000000003,115.22950000000003,115.22950000000003,115.22950000000003,115.22950000000003,115.22950000000003,116.78950000000002,116.78950000000002,116.78950000000002,116.78950000000002,116.78950000000002,116.90950000000002,116.90950000000002,116.90950000000002,116.90950000000002,116.90950000000002,118.46950000000002,118.46950000000002,118.46950000000002,118.46950000000002,118.46950000000002,118.58950000000002,118.58950000000002,118.58950000000002,118.58950000000002,118.58950000000002,120.14950000000002,120.14950000000002,120.14950000000002,120.14950000000002,120.14950000000002,120.26950000000002,120.26950000000002,120.26950000000002,120.26950000000002,120.26950000000002,121.82950000000002,121.82950000000002,121.82950000000002,121.82950000000002,121.82950000000002,121.94950000000001,121.94950000000001,121.94950000000001,121.94950000000001,121.94950000000001,123.50950000000002,123.50950000000002,123.50950000000002,123.50950000000002,123.50950000000002,123.62950000000002,123.62950000000002,123.62950000000002,123.62950000000002,123.62950000000002,125.18950000000001,125.18950000000001,125.18950000000001,125.18950000000001,125.18950000000001,125.30950000000001,125.30950000000001,125.30950000000001,125.30950000000001,125.30950000000001,126.86950000000003,126.86950000000003,126.86950000000003,126.86950000000003,126.86950000000003,126.9895,126.9895,126.9895,126.9895,126.9895,128.54950000000002,128.54950000000002,128.54950000000002,128.54950000000002,128.54950000000002,128.6695,128.6695,128.6695,128.6695,128.6695,130.2295,130.2295,130.2295,130.2295,130.2295,130.3495,130.3495,130.3495,130.3495,130.3495,131.9095,131.9095,131.9095,131.9095,131.9095,132.0295,132.0295,132.0295,132.0295,132.0295,133.5895,133.5895,133.5895,133.5895,133.5895,133.70950000000002,133.70950000000002,133.70950000000002,133.70950000000002,133.70950000000002,135.26950000000002,135.26950000000002,135.26950000000002,135.26950000000002,135.26950000000002,135.3895,135.3895,135.3895,135.3895,135.3895,136.9495,136.9495,136.9495,136.9495,136.9495,137.0695,137.0695,137.0695,137.0695,137.0695,138.6295,138.6295,138.6295,138.6295,138.6295,138.7495,138.7495,138.7495,138.7495,138.7495,140.3095,140.3095,140.3095,140.3095,140.3095,140.42950000000002,140.42950000000002,140.42950000000002,140.42950000000002,140.42950000000002,141.98950000000002,141.98950000000002,141.98950000000002,141.98950000000002,141.98950000000002,142.1095,142.1095,142.1095,142.1095,142.1095,143.6695,143.6695,143.6695,143.6695,143.6695,143.7895,143.7895,143.7895,143.7895,143.7895,145.34950000000003,145.34950000000003,145.34950000000003,145.34950000000003,145.34950000000003,145.46950000000004,145.46950000000004,145.46950000000004,145.46950000000004,145.46950000000004,147.0295,147.0295,147.0295,147.0295,147.0295,147.14950000000002,147.14950000000002,147.14950000000002,147.14950000000002,147.14950000000002,148.70950000000002,148.70950000000002,148.70950000000002,148.70950000000002,148.70950000000002,148.8295,148.8295,148.8295,148.8295,148.8295,150.3895,150.3895,150.3895,150.3895,150.3895,150.50950000000003,150.50950000000003,150.50950000000003,150.50950000000003,150.50950000000003,152.06950000000003,152.06950000000003,152.06950000000003,152.06950000000003,152.06950000000003,152.18950000000004,152.18950000000004,152.18950000000004,152.18950000000004,152.18950000000004,153.7495,153.7495,153.7495,153.7495,153.7495,153.86950000000002,153.86950000000002,153.86950000000002,153.86950000000002,153.86950000000002,155.42950000000002,155.42950000000002,155.42950000000002,155.42950000000002,155.42950000000002,155.5495,155.5495,155.5495,155.5495,155.5495,157.10950000000003,157.10950000000003,157.10950000000003,157.10950000000003,157.10950000000003,157.22950000000003,157.22950000000003,157.22950000000003,157.22950000000003,157.22950000000003,158.78950000000003,158.78950000000003,158.78950000000003,158.78950000000003,158.78950000000003,158.90950000000004,158.90950000000004,158.90950000000004,158.90950000000004,158.90950000000004,160.4695,160.4695,160.4695,160.4695,160.4695,160.58950000000002,160.58950000000002,160.58950000000002,160.58950000000002,160.58950000000002,162.14950000000002,162.14950000000002,162.14950000000002,162.14950000000002,162.14950000000002,162.26950000000002,162.26950000000002,162.26950000000002,162.26950000000002,162.26950000000002,163.82950000000002,163.82950000000002,163.82950000000002,163.82950000000002,163.82950000000002,163.94950000000003,163.94950000000003,163.94950000000003,163.94950000000003,163.94950000000003,165.50950000000003,165.50950000000003,165.50950000000003,165.50950000000003,165.50950000000003,165.62950000000004,165.62950000000004,165.62950000000004,165.62950000000004,165.62950000000004,167.18950000000004,167.18950000000004,167.18950000000004,167.18950000000004,167.18950000000004,167.3095,167.3095,167.3095,167.3095,167.3095,168.86950000000004,168.86950000000004,168.86950000000004,168.86950000000004,168.86950000000004,168.98950000000002,168.98950000000002,168.98950000000002,168.98950000000002,168.98950000000002,170.54950000000002,170.54950000000002,170.54950000000002,170.54950000000002,170.54950000000002,170.66950000000003,170.66950000000003,170.66950000000003,170.66950000000003,170.66950000000003,172.22950000000003,172.22950000000003,172.22950000000003,172.22950000000003,172.22950000000003,172.34950000000003,172.34950000000003,172.34950000000003,172.34950000000003,172.34950000000003,173.90950000000004,173.90950000000004,173.90950000000004,173.90950000000004,173.90950000000004,174.02950000000004,174.02950000000004,174.02950000000004,174.02950000000004,174.02950000000004,175.58950000000004,175.58950000000004,175.58950000000004,175.58950000000004,175.58950000000004,175.70950000000002,175.70950000000002,175.70950000000002,175.70950000000002,175.70950000000002,177.26950000000002,177.26950000000002,177.26950000000002,177.26950000000002,177.26950000000002,177.38950000000003,177.38950000000003,177.38950000000003,177.38950000000003,177.38950000000003,178.94950000000003,178.94950000000003,178.94950000000003,178.94950000000003,178.94950000000003,179.06950000000006,179.06950000000006,179.06950000000006,179.06950000000006,179.06950000000006,180.62950000000006,180.62950000000006,180.62950000000006,180.62950000000006,180.62950000000006,180.74950000000004,180.74950000000004,180.74950000000004,180.74950000000004,180.74950000000004,182.30950000000004,182.30950000000004,182.30950000000004,182.30950000000004,182.30950000000004,182.42950000000002,182.42950000000002,182.42950000000002,182.42950000000002,182.42950000000002,183.98950000000002,183.98950000000002,183.98950000000002,183.98950000000002,183.98950000000002,183.99000000000004,183.99000000000004,183.99000000000004,183.99000000000004,183.99000000000004]},{"y":[null,0.0,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,58.71650124959989,0.0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"type":"scatter","name":"|RF_1|","hovertemplate":"(%{x:.4f} ms, %{y:.2f} μT)","x":[0.0,0.0005,0.0015,0.0024999999999999996,0.0035,0.0045000000000000005,0.0055,0.0065,0.0075,0.0085,0.0095,0.0105,0.011500000000000002,0.012500000000000002,0.013500000000000003,0.014500000000000004,0.015500000000000003,0.0165,0.0175,0.018500000000000003,0.019500000000000003,0.020500000000000004,0.021500000000000005,0.022500000000000006,0.023500000000000007,0.024500000000000004,0.025500000000000005,0.026500000000000006,0.027500000000000007,0.028500000000000008,0.02950000000000001,0.03050000000000001,0.03150000000000001,0.0325,0.0335,0.034499999999999996,0.0355,0.03649999999999999,0.03749999999999999,0.038499999999999986,0.039499999999999987,0.04049999999999998,0.04149999999999998,0.042499999999999975,0.043499999999999976,0.04449999999999997,0.04549999999999997,0.046499999999999965,0.04749999999999996,0.04849999999999996,0.049499999999999954,0.050499999999999955,0.05149999999999995,0.05249999999999995,0.05349999999999994,0.054499999999999944,0.05549999999999994,0.05649999999999994,0.05749999999999993,0.058499999999999934,0.05949999999999993,0.06049999999999993,0.06149999999999992,0.06249999999999992,0.06349999999999992,0.06449999999999992,0.0654999999999999,0.0664999999999999,0.06749999999999991,0.06849999999999991,0.0694999999999999,0.0704999999999999,0.0714999999999999,0.0724999999999999,0.07349999999999988,0.07449999999999989,0.07549999999999989,0.07649999999999989,0.07749999999999987,0.07849999999999988,0.07949999999999988,0.08049999999999986,0.08149999999999986,0.08249999999999987,0.08349999999999987,0.08449999999999985,0.08549999999999985,0.08649999999999985,0.08749999999999986,0.08849999999999984,0.08949999999999984,0.09049999999999984,0.09149999999999985,0.09249999999999983,0.09349999999999983,0.09449999999999983,0.09549999999999982,0.09649999999999982,0.09749999999999982,0.09849999999999982,0.09949999999999981,0.09949999999999981,0.09949999999999999,0.09999999999999999,0.09999999999999999,0.09999999999999999,0.09999999999999999,0.9394999999999999,0.9399999999999998,0.9399999999999998,0.9399999999999998,0.9399999999999998,16.109499999999997,16.11,16.11,16.11,16.11,17.6695,17.669999999999998,17.669999999999998,17.669999999999998,17.669999999999998,17.789499999999997,17.789999999999996,17.789999999999996,17.789999999999996,17.789999999999996,19.349499999999995,19.349999999999994,19.349999999999994,19.349999999999994,19.349999999999994,19.469499999999993,19.469999999999995,19.469999999999995,19.469999999999995,19.469999999999995,21.02949999999999,21.029999999999994,21.029999999999994,21.029999999999994,21.029999999999994,21.149499999999993,21.14999999999999,21.14999999999999,21.14999999999999,21.14999999999999,22.70949999999999,22.70999999999999,22.70999999999999,22.70999999999999,22.70999999999999,22.82949999999999,22.829999999999988,22.829999999999988,22.829999999999988,22.829999999999988,24.389499999999988,24.389999999999986,24.389999999999986,24.389999999999986,24.389999999999986,24.509499999999985,24.509999999999987,24.509999999999987,24.509999999999987,24.509999999999987,26.069499999999984,26.069999999999986,26.069999999999986,26.069999999999986,26.069999999999986,26.189499999999985,26.189999999999984,26.189999999999984,26.189999999999984,26.189999999999984,27.749499999999983,27.749999999999982,27.749999999999982,27.749999999999982,27.749999999999982,27.86949999999998,27.869999999999983,27.869999999999983,27.869999999999983,27.869999999999983,29.42949999999998,29.429999999999982,29.429999999999982,29.429999999999982,29.429999999999982,29.549499999999977,29.54999999999998,29.54999999999998,29.54999999999998,29.54999999999998,31.109499999999976,31.109999999999978,31.109999999999978,31.109999999999978,31.109999999999978,31.229499999999977,31.229999999999976,31.229999999999976,31.229999999999976,31.229999999999976,32.789499999999975,32.78999999999998,32.78999999999998,32.78999999999998,32.78999999999998,32.90949999999998,32.90999999999998,32.90999999999998,32.90999999999998,32.90999999999998,34.46949999999998,34.46999999999998,34.46999999999998,34.46999999999998,34.46999999999998,34.58949999999998,34.58999999999998,34.58999999999998,34.58999999999998,34.58999999999998,36.14949999999998,36.14999999999998,36.14999999999998,36.14999999999998,36.14999999999998,36.26949999999998,36.26999999999998,36.26999999999998,36.26999999999998,36.26999999999998,37.82949999999998,37.829999999999984,37.829999999999984,37.829999999999984,37.829999999999984,37.949499999999986,37.94999999999998,37.94999999999998,37.94999999999998,37.94999999999998,39.50949999999998,39.509999999999984,39.509999999999984,39.509999999999984,39.509999999999984,39.629499999999986,39.62999999999998,39.62999999999998,39.62999999999998,39.62999999999998,41.18949999999998,41.18999999999998,41.18999999999998,41.18999999999998,41.18999999999998,41.309499999999986,41.30999999999999,41.30999999999999,41.30999999999999,41.30999999999999,42.86949999999998,42.86999999999998,42.86999999999998,42.86999999999998,42.86999999999998,42.989499999999985,42.98999999999999,42.98999999999999,42.98999999999999,42.98999999999999,44.54949999999999,44.54999999999998,44.54999999999998,44.54999999999998,44.54999999999998,44.669499999999985,44.66999999999999,44.66999999999999,44.66999999999999,44.66999999999999,46.22949999999999,46.22999999999999,46.22999999999999,46.22999999999999,46.22999999999999,46.349499999999985,46.34999999999999,46.34999999999999,46.34999999999999,46.34999999999999,47.90949999999999,47.90999999999999,47.90999999999999,47.90999999999999,47.90999999999999,48.02949999999999,48.02999999999999,48.02999999999999,48.02999999999999,48.02999999999999,49.58949999999999,49.58999999999999,49.58999999999999,49.58999999999999,49.58999999999999,49.70949999999999,49.709999999999994,49.709999999999994,49.709999999999994,49.709999999999994,51.26949999999999,51.26999999999999,51.26999999999999,51.26999999999999,51.26999999999999,51.38949999999999,51.38999999999999,51.38999999999999,51.38999999999999,51.38999999999999,52.949499999999986,52.94999999999999,52.94999999999999,52.94999999999999,52.94999999999999,53.06949999999999,53.06999999999999,53.06999999999999,53.06999999999999,53.06999999999999,54.62949999999999,54.62999999999999,54.62999999999999,54.62999999999999,54.62999999999999,54.74949999999999,54.74999999999999,54.74999999999999,54.74999999999999,54.74999999999999,56.30949999999999,56.309999999999995,56.309999999999995,56.309999999999995,56.309999999999995,56.42949999999999,56.42999999999999,56.42999999999999,56.42999999999999,56.42999999999999,57.98949999999999,57.989999999999995,57.989999999999995,57.989999999999995,57.989999999999995,58.1095,58.10999999999999,58.10999999999999,58.10999999999999,58.10999999999999,59.66949999999999,59.669999999999995,59.669999999999995,59.669999999999995,59.669999999999995,59.7895,59.79,59.79,59.79,59.79,61.34949999999999,61.349999999999994,61.349999999999994,61.349999999999994,61.349999999999994,61.4695,61.47,61.47,61.47,61.47,63.0295,63.03,63.03,63.03,63.03,63.149499999999996,63.15,63.15,63.15,63.15,64.7095,64.71000000000001,64.71000000000001,64.71000000000001,64.71000000000001,64.8295,64.83,64.83,64.83,64.83,66.3895,66.39,66.39,66.39,66.39,66.5095,66.51,66.51,66.51,66.51,68.0695,68.07000000000001,68.07000000000001,68.07000000000001,68.07000000000001,68.1895,68.19,68.19,68.19,68.19,69.74950000000001,69.75,69.75,69.75,69.75,69.8695,69.87,69.87,69.87,69.87,71.4295,71.43,71.43,71.43,71.43,71.54950000000001,71.55,71.55,71.55,71.55,73.10950000000001,73.11000000000001,73.11000000000001,73.11000000000001,73.11000000000001,73.2295,73.23,73.23,73.23,73.23,74.7895,74.79,74.79,74.79,74.79,74.90950000000001,74.91000000000001,74.91000000000001,74.91000000000001,74.91000000000001,76.46950000000001,76.47000000000001,76.47000000000001,76.47000000000001,76.47000000000001,76.5895,76.59,76.59,76.59,76.59,78.14950000000002,78.15,78.15,78.15,78.15,78.26950000000001,78.27000000000001,78.27000000000001,78.27000000000001,78.27000000000001,79.82950000000001,79.83000000000001,79.83000000000001,79.83000000000001,79.83000000000001,79.9495,79.95,79.95,79.95,79.95,81.50950000000002,81.51000000000002,81.51000000000002,81.51000000000002,81.51000000000002,81.62950000000001,81.63000000000001,81.63000000000001,81.63000000000001,81.63000000000001,83.18950000000001,83.19000000000001,83.19000000000001,83.19000000000001,83.19000000000001,83.30950000000001,83.31,83.31,83.31,83.31,84.86950000000002,84.87000000000002,84.87000000000002,84.87000000000002,84.87000000000002,84.9895,84.99000000000001,84.99000000000001,84.99000000000001,84.99000000000001,86.54950000000001,86.55000000000001,86.55000000000001,86.55000000000001,86.55000000000001,86.66950000000001,86.67000000000002,86.67000000000002,86.67000000000002,86.67000000000002,88.22950000000002,88.23000000000002,88.23000000000002,88.23000000000002,88.23000000000002,88.3495,88.35000000000001,88.35000000000001,88.35000000000001,88.35000000000001,89.90950000000002,89.91000000000001,89.91000000000001,89.91000000000001,89.91000000000001,90.02950000000001,90.03000000000002,90.03000000000002,90.03000000000002,90.03000000000002,91.58950000000002,91.59000000000002,91.59000000000002,91.59000000000002,91.59000000000002,91.70950000000002,91.71000000000001,91.71000000000001,91.71000000000001,91.71000000000001,93.26950000000002,93.27000000000002,93.27000000000002,93.27000000000002,93.27000000000002,93.38950000000001,93.39000000000001,93.39000000000001,93.39000000000001,93.39000000000001,94.94950000000001,94.95000000000002,94.95000000000002,94.95000000000002,94.95000000000002,95.06950000000002,95.07000000000002,95.07000000000002,95.07000000000002,95.07000000000002,96.62950000000002,96.63000000000002,96.63000000000002,96.63000000000002,96.63000000000002,96.74950000000001,96.75000000000001,96.75000000000001,96.75000000000001,96.75000000000001,98.30950000000003,98.31000000000002,98.31000000000002,98.31000000000002,98.31000000000002,98.42950000000002,98.43000000000002,98.43000000000002,98.43000000000002,98.43000000000002,99.98950000000002,99.99000000000002,99.99000000000002,99.99000000000002,99.99000000000002,100.10950000000001,100.11000000000001,100.11000000000001,100.11000000000001,100.11000000000001,101.66950000000003,101.67000000000003,101.67000000000003,101.67000000000003,101.67000000000003,101.78950000000002,101.79000000000002,101.79000000000002,101.79000000000002,101.79000000000002,103.34950000000002,103.35000000000002,103.35000000000002,103.35000000000002,103.35000000000002,103.46950000000002,103.47000000000003,103.47000000000003,103.47000000000003,103.47000000000003,105.02950000000003,105.03000000000003,105.03000000000003,105.03000000000003,105.03000000000003,105.14950000000002,105.15000000000002,105.15000000000002,105.15000000000002,105.15000000000002,106.70950000000002,106.71000000000002,106.71000000000002,106.71000000000002,106.71000000000002,106.82950000000002,106.83000000000003,106.83000000000003,106.83000000000003,106.83000000000003,108.38950000000003,108.39000000000003,108.39000000000003,108.39000000000003,108.39000000000003,108.50950000000002,108.51000000000002,108.51000000000002,108.51000000000002,108.51000000000002,110.06950000000002,110.07000000000002,110.07000000000002,110.07000000000002,110.07000000000002,110.18950000000002,110.19000000000003,110.19000000000003,110.19000000000003,110.19000000000003,111.74950000000003,111.75000000000003,111.75000000000003,111.75000000000003,111.75000000000003,111.86950000000003,111.87000000000002,111.87000000000002,111.87000000000002,111.87000000000002,113.42950000000002,113.43000000000002,113.43000000000002,113.43000000000002,113.43000000000002,113.54950000000002,113.55000000000003,113.55000000000003,113.55000000000003,113.55000000000003,115.10950000000003,115.11000000000003,115.11000000000003,115.11000000000003,115.11000000000003,115.22950000000003,115.23000000000003,115.23000000000003,115.23000000000003,115.23000000000003,116.78950000000002,116.79000000000002,116.79000000000002,116.79000000000002,116.79000000000002,116.90950000000002,116.91000000000003,116.91000000000003,116.91000000000003,116.91000000000003,118.46950000000002,118.47000000000001,118.47000000000001,118.47000000000001,118.47000000000001,118.58950000000002,118.59000000000002,118.59000000000002,118.59000000000002,118.59000000000002,120.14950000000002,120.15000000000002,120.15000000000002,120.15000000000002,120.15000000000002,120.26950000000002,120.27000000000001,120.27000000000001,120.27000000000001,120.27000000000001,121.82950000000002,121.83000000000003,121.83000000000003,121.83000000000003,121.83000000000003,121.94950000000001,121.95000000000002,121.95000000000002,121.95000000000002,121.95000000000002,123.50950000000002,123.51000000000002,123.51000000000002,123.51000000000002,123.51000000000002,123.62950000000002,123.63000000000002,123.63000000000002,123.63000000000002,123.63000000000002,125.18950000000001,125.19,125.19,125.19,125.19,125.30950000000001,125.31,125.31,125.31,125.31,126.86950000000003,126.87,126.87,126.87,126.87,126.9895,126.99,126.99,126.99,126.99,128.54950000000002,128.55,128.55,128.55,128.55,128.6695,128.67,128.67,128.67,128.67,130.2295,130.23,130.23,130.23,130.23,130.3495,130.35,130.35,130.35,130.35,131.9095,131.91,131.91,131.91,131.91,132.0295,132.03,132.03,132.03,132.03,133.5895,133.58999999999997,133.58999999999997,133.58999999999997,133.58999999999997,133.70950000000002,133.71,133.71,133.71,133.71,135.26950000000002,135.27,135.27,135.27,135.27,135.3895,135.39,135.39,135.39,135.39,136.9495,136.95,136.95,136.95,136.95,137.0695,137.07,137.07,137.07,137.07,138.6295,138.63,138.63,138.63,138.63,138.7495,138.75,138.75,138.75,138.75,140.3095,140.31,140.31,140.31,140.31,140.42950000000002,140.43,140.43,140.43,140.43,141.98950000000002,141.99,141.99,141.99,141.99,142.1095,142.10999999999999,142.10999999999999,142.10999999999999,142.10999999999999,143.6695,143.67,143.67,143.67,143.67,143.7895,143.79,143.79,143.79,143.79,145.34950000000003,145.35,145.35,145.35,145.35,145.46950000000004,145.47000000000003,145.47000000000003,145.47000000000003,145.47000000000003,147.0295,147.03,147.03,147.03,147.03,147.14950000000002,147.15,147.15,147.15,147.15,148.70950000000002,148.71,148.71,148.71,148.71,148.8295,148.82999999999998,148.82999999999998,148.82999999999998,148.82999999999998,150.3895,150.39,150.39,150.39,150.39,150.50950000000003,150.51,150.51,150.51,150.51,152.06950000000003,152.07000000000002,152.07000000000002,152.07000000000002,152.07000000000002,152.18950000000004,152.19000000000003,152.19000000000003,152.19000000000003,152.19000000000003,153.7495,153.75,153.75,153.75,153.75,153.86950000000002,153.87,153.87,153.87,153.87,155.42950000000002,155.43,155.43,155.43,155.43,155.5495,155.54999999999998,155.54999999999998,155.54999999999998,155.54999999999998,157.10950000000003,157.11,157.11,157.11,157.11,157.22950000000003,157.23000000000002,157.23000000000002,157.23000000000002,157.23000000000002,158.78950000000003,158.79000000000002,158.79000000000002,158.79000000000002,158.79000000000002,158.90950000000004,158.91000000000003,158.91000000000003,158.91000000000003,158.91000000000003,160.4695,160.47,160.47,160.47,160.47,160.58950000000002,160.59,160.59,160.59,160.59,162.14950000000002,162.15,162.15,162.15,162.15,162.26950000000002,162.27,162.27,162.27,162.27,163.82950000000002,163.83,163.83,163.83,163.83,163.94950000000003,163.95000000000002,163.95000000000002,163.95000000000002,163.95000000000002,165.50950000000003,165.51000000000002,165.51000000000002,165.51000000000002,165.51000000000002,165.62950000000004,165.63000000000002,165.63000000000002,165.63000000000002,165.63000000000002,167.18950000000004,167.19000000000003,167.19000000000003,167.19000000000003,167.19000000000003,167.3095,167.31,167.31,167.31,167.31,168.86950000000004,168.87000000000003,168.87000000000003,168.87000000000003,168.87000000000003,168.98950000000002,168.99,168.99,168.99,168.99,170.54950000000002,170.55,170.55,170.55,170.55,170.66950000000003,170.67000000000002,170.67000000000002,170.67000000000002,170.67000000000002,172.22950000000003,172.23000000000002,172.23000000000002,172.23000000000002,172.23000000000002,172.34950000000003,172.35000000000002,172.35000000000002,172.35000000000002,172.35000000000002,173.90950000000004,173.91000000000003,173.91000000000003,173.91000000000003,173.91000000000003,174.02950000000004,174.03000000000003,174.03000000000003,174.03000000000003,174.03000000000003,175.58950000000004,175.59000000000003,175.59000000000003,175.59000000000003,175.59000000000003,175.70950000000002,175.71,175.71,175.71,175.71,177.26950000000002,177.27,177.27,177.27,177.27,177.38950000000003,177.39000000000001,177.39000000000001,177.39000000000001,177.39000000000001,178.94950000000003,178.95000000000002,178.95000000000002,178.95000000000002,178.95000000000002,179.06950000000006,179.07000000000002,179.07000000000002,179.07000000000002,179.07000000000002,180.62950000000006,180.63000000000005,180.63000000000005,180.63000000000005,180.63000000000005,180.74950000000004,180.75000000000003,180.75000000000003,180.75000000000003,180.75000000000003,182.30950000000004,182.31000000000003,182.31000000000003,182.31000000000003,182.31000000000003,182.42950000000002,182.43,182.43,182.43,182.43,183.98950000000002,183.99,183.99,183.99,183.99,183.99000000000004,183.99050000000003,183.99050000000003,183.99050000000003,183.99050000000003]},{"y":[null,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"type":"scatter","name":"
@@ -17,9 +17,9 @@ window.PLOTLYENV = window.PLOTLYENV || {} - if (document.getElementById('85ca45cf-7778-477e-9130-380e18d7202a')) { + if (document.getElementById('1cad3aa2-5571-4690-98f6-32ecf2a2131a')) { Plotly.newPlot( - '85ca45cf-7778-477e-9130-380e18d7202a', + '1cad3aa2-5571-4690-98f6-32ecf2a2131a', [{"y":[7.2796626,19.101574,2.5638316,7.7070923,24.905952,9.592549,28.790785,18.061728,23.812357,7.9754553,22.212425,2.0021632,14.607922,16.616795,9.43087,17.411013,6.8710513,27.552748,8.204302,10.156166,11.676546,11.324498,17.064623,10.209563,18.262655,10.696454,32.011463,12.661469,27.944275,10.895327,24.445826,21.884893,6.84921,10.145747,2.79496,19.78269,4.0683937,16.811752,1.9356445,2.2317207,17.301836,12.750343,21.263453,1.8230402,11.614037,9.774573,9.595391,22.889154,14.506257,5.6712956,26.521263,25.694254,18.723999,20.053284,22.538368,8.024161,7.0123653,8.251195,12.530635,8.105418,18.909792,10.561307,15.783855,13.105592,12.994901,11.998596,14.988689,9.808573,10.710434,11.425133,23.46379,26.24878,13.447746,3.360142,10.464001,5.497523,11.65011,7.960476,9.816681,10.482904,6.551674,6.0395756,18.202688,19.17713,23.744085,32.904457,1.9962032,7.777249,0.88401526,3.053589,7.8371296,16.403316,5.216502,3.1812258,8.862836,9.760229,14.577581,14.751786,15.387027,14.821002,null,10.265662,7.8020806,6.737564,3.5327642,8.152736,8.591195,11.640823,12.590018,7.3940825,11.952282,4.429429,14.896854,4.739503,11.033542,2.7538333,3.2302082,1.7510482,7.8098807,14.824062,9.256323,15.973331,16.06113,7.934942,4.2985454,9.639105,8.95995,8.942778,7.388441,6.9582624,13.322795,11.032044,4.160898,8.957509,21.310753,20.207615,14.17296,17.290365,24.307842,32.437866,16.25625,19.191051,21.578718,2.1355593,3.9689968,19.166164,24.610641,19.493359,17.50964,20.939674,18.062895,26.923672,14.62677,15.988097,21.877403,17.927166,11.416134,7.973477,9.598886,9.522089,9.591531,16.536982,17.888985,13.036177,2.781644,12.328212,16.053602,26.445145,20.89658,11.806096,18.308445,8.313935,11.333742,18.885225,7.101593,8.566,5.4820585,13.350643,15.133147,7.616686,7.6629286,3.6142497,7.460948,6.755767,7.4877653,6.0985465,15.100787,19.844566,16.072323,5.117628,1.6416382,8.99121,13.993508,5.3495016,9.479375,22.119295,9.9543705,10.296868,13.623116,3.7686224,17.1126,null,7.66972,8.88477,17.407028,15.35921,16.16457,5.7146654,10.441367,20.736443,14.364926,22.904686,25.48276,15.878968,21.798903,11.607002,26.375174,15.362299,4.6037664,12.521337,12.816915,7.2561536,6.9521303,22.100847,6.069427,8.860751,7.077771,18.323608,8.294932,17.063957,10.538537,25.530924,16.758944,6.114191,27.05302,10.196811,24.443254,20.703205,5.4303765,31.233397,22.198515,17.44255,17.61476,16.935293,4.975664,5.085348,14.966972,17.842218,2.7545857,21.59185,31.065187,10.815251,7.273156,19.506123,9.406045,13.936157,18.68008,9.295239,14.481396,14.2050705,31.236374,15.345069,13.252742,6.577401,18.276875,23.90084,21.718058,43.817863,22.043953,14.120896,11.671421,9.90961,30.91153,24.96324,9.635035,18.621042,8.118204,11.426287,11.758268,14.392281,9.50127,32.29466,10.449735,9.543126,7.194055,7.168181,14.07196,0.8984615,21.07195,24.161488,14.749336,23.67676,17.377918,26.520649,8.343726,17.840942,25.379393,6.8206286,19.901056,13.447364,18.000746,32.27551,null,14.249381,4.4866905,8.405146,10.172993,24.216684,15.4513,13.7432995,15.334809,9.386258,13.854306,6.330036,25.067308,6.5699053,4.6704407,7.4559927,8.627046,9.088539,10.805245,21.749146,12.903577,12.340952,17.05757,6.366374,15.581943,3.7047224,10.492529,7.3951206,22.174372,19.123367,12.829306,12.17039,6.6049657,9.480288,27.752195,17.397108,7.492647,9.80812,13.751169,10.080471,7.2100735,15.456502,22.171337,4.2932343,21.412317,12.123736,10.276991,27.235743,12.701657,5.020301,8.813235,17.483355,12.776748,12.083288,2.7951653,5.708468,3.8137767,4.34656,17.861275,16.65389,10.826582,11.734122,3.9025524,15.336661,27.570965,10.290157,20.161982,5.8363385,14.679865,21.902822,16.578665,14.344396,22.06116,31.72222,15.696378,4.7004476,7.399733,5.6693907,12.7276,7.228297,5.708441,19.114637,12.333273,21.671547,9.0120125,12.880642,2.137369,9.057435,10.0749445,9.414434,10.366799,5.688857,8.458517,15.391288,12.074329,11.66046,21.204403,12.642269,2.2145925,8.2566185,5.715495,null,7.7045407,8.136827,13.670149,11.126421,5.3386016,7.0659437,19.436514,8.604588,11.854487,5.773369,15.641779,21.634844,5.3271017,16.011724,12.444777,8.310368,11.0437765,8.412876,4.478034,13.716384,16.495583,14.076868,12.790744,5.764845,7.772089,12.323073,12.17505,21.390467,13.350261,11.512706,3.403046,17.124094,11.572583,7.8634157,4.5935035,14.30289,8.187796,11.151237,8.219401,9.474058,17.184721,11.194459,8.668886,9.417807,5.3734684,4.999288,7.7464805,9.655071,9.435132,10.18925,9.775224,3.0605748,12.105652,14.877067,13.061331,1.5282296,10.445573,20.39613,12.457101,11.049267,8.398399,12.551071,25.568882,21.947895,9.344936,3.738543,10.952488,21.986856,3.8336854,8.381265,2.0361753,28.00038,41.05099,1.8762916,24.396473,31.80292,10.310029,22.958054,20.073439,13.443588,4.904088,8.747955,9.7641945,2.299206,20.311676,16.848278,15.016364,17.564966,17.988335,15.427911,22.820276,10.98473,17.053867,1.4659541,16.442251,6.2242513,17.479057,13.347587,24.764229,21.501053,null,17.534367,6.981313,14.160847,19.118904,12.916061,19.257332,14.452736,9.471449,9.944776,4.5621395,11.285182,12.201991,18.486147,22.2048,3.6710913,19.515533,9.731716,9.596884,2.9568713,27.618654,24.170067,18.846937,21.454576,4.5679846,32.623165,19.727505,21.690216,1.4619969,15.011737,29.192694,16.591345,10.365035,8.506712,11.655559,17.849154,10.3866,21.874296,6.9023733,17.640562,14.12773,13.090922,1.8337312,6.1295295,25.51411,17.048311,21.051588,23.954449,29.183796,21.747784,23.720058,31.896513,16.332373,11.2898245,30.694288,18.118769,7.631428,19.229761,6.3343964,17.211996,16.210802,7.2099957,40.68248,9.091079,20.887995,9.031726,10.42768,7.4676447,21.461857,8.462295,13.689103,35.59967,15.324183,21.324106,12.383348,12.952932,12.162204,13.256481,16.172344,13.187585,4.115637,23.4097,18.20982,30.376827,8.754319,11.553552,7.4611545,10.359445,7.2442284,10.068293,5.594565,15.179891,16.737915,18.688944,13.012879,20.576118,17.130444,11.458686,22.024826,21.795223,18.09227,null,12.653425,3.0857084,5.90685,16.691721,11.151955,19.302614,6.654677,10.7677145,7.6227818,5.372754,20.277327,13.110899,5.7598104,8.043152,9.895051,8.355124,20.894938,19.238356,15.279273,14.286868,6.042933,3.0939322,12.892041,20.186962,11.521547,18.495539,23.821724,3.2743518,5.815529,7.3196216,17.161797,20.841007,5.690826,8.089426,22.053963,22.32396,5.7553077,13.707239,5.3069715,9.356786,8.594367,7.486359,7.822872,6.683454,23.795593,22.914839,11.2730875,16.695095,27.861113,28.228909,21.724083,19.976542,26.472746,29.037249,30.534542,26.668127,14.060366,7.4580355,2.852862,17.89453,21.926062,25.76781,21.191843,8.244861,23.868595,20.038326,15.246069,13.041698,9.567605,20.160875,24.517328,9.889382,4.46959,15.479916,12.5307665,10.243267,15.319018,9.88614,10.406891,15.553949,9.746757,3.862173,9.953982,3.6336923,7.9543824,6.4334965,11.1014385,10.625313,7.012266,10.1406975,5.257233,12.254207,3.6688755,18.90046,3.5781834,14.937353,4.0034995,17.689758,11.977924,3.8310354,null,13.700371,14.735971,9.271098,9.584782,9.975517,9.290594,15.951959,9.563642,10.007768,12.160207,20.342226,8.127409,17.123646,17.71999,9.154756,13.557386,2.9514468,21.351217,15.613504,9.834842,23.346386,19.87717,24.337957,9.445128,24.497015,25.864485,9.979031,28.032564,16.137419,22.796183,15.847046,10.802277,4.921973,29.35123,23.957907,4.915961,11.013528,24.50903,22.005384,14.085908,5.8877754,3.9244654,6.102603,5.5289307,22.289688,42.347263,24.691902,16.35935,23.392052,31.508244,17.62074,19.847815,23.122469,16.895027,19.808119,14.339179,13.491676,13.135679,7.0817676,6.1744304,8.8907385,21.657715,1.931138,7.2218823,10.6665945,14.8317,7.2712245,19.006712,26.323034,10.594764,6.15521,12.4750595,9.029911,11.607028,28.397346,7.1105475,16.081266,13.851349,17.630243,11.412518,11.103192,4.746096,4.666716,1.9779683,15.354705,19.407822,21.540329,17.037834,10.412572,0.9575368,7.258838,2.0589314,13.3633585,7.017653,17.851383,17.733692,15.857726,19.648449,10.524537,28.097548,null,12.493922,20.979578,23.916945,8.864986,20.598215,13.324431,11.840427,1.6439159,8.723899,13.42043,1.7646949,22.168335,13.471596,3.9638295,8.600925,8.414134,13.478815,7.175927,14.9172735,7.501006,4.7759633,3.8028908,5.352454,7.149349,8.091568,17.348202,21.228582,12.557981,11.108954,16.527357,17.697197,14.218457,24.146082,8.97057,13.346472,18.654703,8.65724,25.503521,10.775768,3.7443266,9.48308,7.005147,6.2060194,20.938967,16.132736,18.472193,30.603071,9.814399,18.308798,41.84943,32.123085,13.058342,35.40645,26.590076,20.8395,30.106472,25.115185,8.229166,6.7033877,6.391766,9.156018,11.202316,12.543733,13.861084,14.284806,15.568354,11.918998,13.76275,10.028225,17.202236,13.482988,12.631152,10.727709,14.5514,9.955321,15.721734,22.030214,11.507268,9.7574415,17.888397,23.506632,14.934831,18.865705,19.186584,9.497576,13.495562,16.596645,16.935673,4.291109,19.643108,15.465738,23.219543,7.448294,8.862596,10.017315,5.681085,6.8962526,11.62782,6.861409,10.927577,null,12.687568,12.790259,13.587192,5.061326,8.222747,5.6698937,12.337069,12.794206,9.311665,6.2758083,4.1618915,5.565034,7.6351566,5.4766026,7.9762015,11.43808,14.26881,16.233324,5.1448216,11.702221,15.381645,10.133439,12.51826,17.795769,11.609986,8.435946,16.295935,12.18209,19.071503,26.992807,16.17407,14.622776,8.490955,3.6590126,6.3446074,5.3655176,19.016275,28.250013,13.971413,5.48001,6.3739696,17.07349,10.795186,7.9560127,10.758379,8.410975,23.35179,34.429718,24.998785,13.889739,16.580011,12.559142,4.5873785,5.4184356,13.61024,5.3945017,7.2157345,6.3208084,2.8950746,5.611895,9.081972,13.327056,7.6106734,6.577075,8.604563,11.380552,11.572049,10.394628,8.543813,7.0075436,7.760109,8.343435,8.718504,8.694003,17.19415,12.221625,4.572805,15.895352,15.989837,5.7632384,4.2753735,11.612978,8.236236,4.278903,18.248598,7.2985125,13.437464,12.822829,5.1075077,14.978622,8.702757,13.791524,7.0389643,7.942584,7.6431212,10.050536,11.590703,2.1007428,14.668177,24.025845,null,2.6729202,8.842834,9.135175,1.9273562,6.7931204,6.1641803,6.4815865,6.598336,10.920813,18.139793,12.395509,7.783014,13.05936,5.128414,18.843805,9.352898,14.004963,24.037682,16.701155,20.646564,15.216655,22.185171,14.4078865,12.183345,6.847182,20.598225,6.4817333,4.7700834,1.4570304,16.291683,21.36295,5.923878,8.456403,12.506721,7.7865434,4.595398,15.419862,16.097383,1.2354553,17.128973,17.508898,4.246178,3.9211316,6.8238225,6.429336,11.596055,11.120325,11.842957,14.24924,20.671381,3.8959348,3.5968697,20.294481,10.664809,11.712537,17.087143,1.9484551,15.001539,14.123448,13.767533,6.013002,8.885949,12.54096,15.049005,7.512237,15.570708,18.965084,11.922291,10.949756,32.502464,28.4764,5.3936963,8.588859,8.330786,18.936419,27.654173,5.638189,12.403071,10.639269,19.69916,12.13798,22.439262,28.583544,12.545346,17.247286,10.24511,6.1953397,6.173497,19.557568,3.9510925,26.696598,16.261824,7.313238,6.4806876,10.074011,20.622078,15.873497,18.749477,18.017881,21.365053,null,14.708133,16.907562,11.706022,8.019768,2.2560194,4.2217727,2.0368128,15.160798,8.003875,7.4123316,8.65804,13.449352,9.775224,4.2856545,25.57604,4.2793546,21.40637,10.605019,5.6306314,4.258868,11.217702,14.125601,5.5350204,10.78905,9.426794,11.978166,9.115024,12.609739,4.2285175,20.878536,26.20315,15.930205,18.412977,10.025189,16.226551,8.2539,18.62786,22.621067,7.861483,17.413193,10.230294,14.965024,6.8834844,9.203512,19.023996,24.879324,11.550782,11.719051,29.786306,17.68122,13.898068,22.986027,27.402136,13.02682,17.337217,17.239328,11.759399,4.065487,12.798994,11.864429,4.7710214,5.5087204,10.127656,14.106141,10.509382,8.687172,5.163767,5.786994,21.083258,14.354687,7.3192434,14.429697,23.856108,21.395792,16.50997,16.835014,5.7378206,10.757684,7.7009263,9.911001,15.840947,9.126025,14.683628,8.691132,6.1580625,10.35754,3.725526,11.203753,5.6761856,6.099032,1.8989829,13.342071,7.298918,10.84369,9.286938,5.2286415,6.963472,7.195723,9.878287,4.2986107,null,10.927204,4.9341736,12.9630165,5.3644285,4.211444,5.337127,2.521081,5.768432,3.8890958,8.004732,6.638571,5.50647,4.813504,4.672999,3.5456707,14.852927,1.0569667,15.405794,4.0366893,14.291671,10.397777,15.009099,13.559911,10.70493,12.585585,5.2009444,2.92577,16.366934,7.672362,9.404649,7.523668,8.061803,1.583018,3.7745209,13.345892,12.231239,10.551979,5.083389,9.014176,4.3471284,1.609846,9.469964,10.83298,8.042154,10.570483,11.19524,14.201643,15.75476,11.149684,15.909138,26.272188,25.473232,29.050585,39.19541,21.343813,2.3317096,30.710447,37.73485,12.398877,10.80562,25.83557,3.3154445,13.059339,9.532557,14.530929,17.005844,9.206086,3.006206,12.085026,12.235161,5.1603513,5.854613,16.840765,15.729919,10.909207,8.31851,12.8681135,7.7813993,7.1773353,12.951112,6.091283,6.7786202,11.212271,10.031781,12.171383,13.0576515,12.798343,10.967035,7.6640286,14.79455,12.07013,15.444783,14.191098,17.94142,7.2616534,13.3506975,6.8842707,18.316158,15.439874,19.218534,null,4.8894253,22.038336,15.258475,11.460281,15.73145,10.405712,23.860601,8.418146,21.419107,19.448147,8.956997,21.901709,34.998596,14.424073,35.9175,9.840976,16.742928,12.099212,15.107434,4.3275814,18.305607,24.722334,31.84028,15.379169,20.423557,10.9679575,16.141556,19.16523,17.218857,5.881525,7.5376234,12.4357395,10.270174,9.387393,2.4379282,3.5254726,12.760266,9.376289,11.877496,3.8526235,19.73781,23.77604,8.167399,7.3438067,22.867655,13.154198,12.649831,31.123684,17.722864,6.118307,13.650058,6.7636113,16.320227,11.815872,16.670553,6.81543,37.25962,22.87809,7.050442,16.934006,7.744626,4.3611503,10.534788,12.66112,21.95949,3.4536161,22.223526,28.76413,8.482712,21.634483,3.7445216,5.670137,15.327056,8.930762,18.163172,15.3393345,1.9857259,24.803682,3.3462303,24.226646,7.0840735,16.24554,6.2810116,11.411997,9.077766,15.823624,7.641383,13.325572,3.6707916,8.963648,14.981592,14.14677,8.177473,8.885071,8.3682,29.215204,4.301542,30.483562,5.125114,11.040644,null,10.1931715,6.657457,9.855831,10.2168455,9.321385,6.6446505,17.804607,6.223815,3.6315784,16.05646,10.366002,11.172648,6.548797,12.785722,15.6992035,8.670278,6.442334,14.818154,16.104902,9.168275,8.580465,4.525213,16.947819,15.059261,7.1286206,5.2748384,5.719777,12.862998,21.933605,12.192245,5.320005,10.51206,7.1737094,5.978654,0.67141813,4.433553,14.060884,22.602856,10.551742,3.6232474,8.092482,1.1715723,9.172379,12.89524,11.128785,10.215069,2.7519705,9.360131,13.223414,8.699943,5.387265,16.0312,12.945191,1.0435009,6.862075,12.675603,11.979518,8.1567955,12.462025,13.957807,4.649093,15.296154,11.391713,6.996754,9.614031,10.277322,24.415863,13.472098,3.7815528,3.8570619,6.783842,3.532538,8.838556,16.494293,9.589375,11.502026,8.294054,10.782718,9.940818,14.193842,16.293417,7.269712,13.028747,9.423214,14.493853,8.84433,1.9676204,10.533468,3.900051,9.098588,6.2196345,6.7638702,6.289397,1.8225417,8.659146,8.318941,6.1858544,4.3498116,13.722488,5.901183,null,20.655693,8.802844,10.247718,4.9107347,15.061835,3.6289794,24.942371,11.746686,9.691815,2.1867988,11.877887,11.241735,7.4882336,17.30769,9.483513,9.433922,8.892268,7.2536764,4.886369,7.488418,4.5892015,5.2804813,12.360178,11.566184,12.533264,9.822011,3.1403935,4.573499,11.431455,12.646547,4.351622,14.121237,11.612797,3.5154037,6.3300147,7.1221356,12.626192,9.769462,5.1197658,14.359828,5.434194,4.474447,16.42538,6.024919,10.512276,11.926126,5.26419,17.72302,13.753946,1.4914311,4.062542,9.128294,9.833127,8.113137,11.178952,1.9551427,12.312076,19.292065,4.9568005,8.132046,20.887548,19.501173,13.757436,8.047359,13.25941,14.141793,7.712847,15.323298,9.58849,17.799456,22.703289,16.225199,11.420765,5.510887,11.476548,19.266792,18.92298,13.197554,29.732891,4.795616,23.865082,7.0386944,4.1887174,2.1303384,14.872988,29.262297,15.040392,25.6425,3.7361586,25.058962,2.7772753,8.79277,4.862644,6.0522094,8.177221,10.968969,7.5819545,24.872782,8.445421,14.280414,null,6.0358477,13.466098,4.3174796,13.394048,20.595165,13.192624,18.662066,12.524108,9.721327,15.150449,24.627628,8.650259,13.556127,19.852428,12.801024,26.763988,18.365065,17.641945,14.290163,12.631489,7.239432,14.307475,14.958501,10.108553,33.214863,22.19999,4.631658,2.6659234,4.621247,4.3655005,18.73528,24.854523,5.9360156,8.504718,18.426777,24.31895,9.632018,23.34688,24.844942,29.87667,21.961943,17.233028,4.321805,1.1282185,12.6641655,9.7658,22.34187,10.983132,17.61041,15.379487,13.265973,21.462633,9.185362,9.638227,28.130795,4.129209,8.447681,11.73146,15.854189,8.379155,8.725596,14.06718,7.503598,9.966341,2.4055588,6.5265255,13.464474,23.338428,7.486683,3.1385362,11.048177,16.307228,11.769041,27.689793,6.5448875,8.723661,6.526398,7.2477694,4.537849,9.92901,18.738428,28.138498,12.681021,17.15954,3.8292747,16.025826,16.574165,7.9115767,13.251794,8.267811,15.570463,8.205804,7.9560137,0.6762426,7.4877925,9.566875,26.815704,10.743685,12.585753,7.3684435,null,12.913705,9.324215,9.238547,6.8910174,13.004162,9.654213,3.1693244,2.2052314,5.2707148,14.269529,13.839416,8.048299,11.595661,12.589027,7.2459364,20.41441,16.07299,12.514291,10.703705,11.9137335,6.2096334,21.455467,12.367642,4.1260524,6.1616855,9.385255,5.0535235,8.369474,8.865619,1.0523651,11.634726,10.884588,5.891123,6.940181,5.740911,7.494307,6.3421316,14.456941,26.97505,25.951658,24.788317,23.13045,10.019421,19.028664,19.164345,10.241339,13.284787,10.35076,11.316602,19.562918,9.475144,12.396881,10.679294,7.7969904,7.8852906,4.636005,7.5145273,7.8620524,5.113236,4.322914,12.013933,11.115908,8.381026,15.341338,7.7519226,8.365446,8.634659,6.1293707,14.428963,9.476564,5.4382076,16.01603,12.571125,19.139128,21.271357,7.451197,8.678733,5.609004,5.9126387,7.3211517,14.05771,6.131204,3.2338252,9.874491,8.374318,11.5321045,9.899633,26.774828,5.390698,9.856384,10.03928,11.205323,2.9439893,7.575719,18.724918,8.746859,8.932762,16.587376,15.298115,10.697401,null,10.775569,5.9324217,7.0468636,5.1201167,11.603663,11.443294,8.0067215,11.028893,7.9674892,11.783367,13.1653595,4.516762,10.890933,9.448322,7.508324,32.757614,4.826,30.834568,13.080589,36.01716,11.305446,17.138294,6.739563,18.266914,18.957024,6.6278925,25.993446,20.757633,25.4613,20.527918,3.5713184,9.939063,15.475691,18.557674,4.5893517,17.414133,8.560359,12.9747925,7.630848,15.848737,25.25253,14.915264,12.983484,10.670064,2.809891,11.629544,10.772907,12.430365,8.432038,25.120756,15.880397,6.087071,15.114081,11.332388,16.961151,6.926005,15.527482,6.7686605,12.798058,26.322847,25.46802,10.041645,12.732537,9.177899,10.072938,10.819196,14.260204,17.254595,15.255958,17.083588,9.9350815,6.22356,22.08445,25.672203,31.938318,22.68797,9.597761,12.736883,20.457642,8.84342,8.271419,18.47441,5.3379683,18.708525,31.136082,15.729816,24.654436,12.593035,18.008146,9.843834,11.735372,7.846533,12.802293,9.306092,15.294844,20.019098,18.950869,16.308577,15.65219,6.728122,null,15.63368,19.84061,6.340281,8.875077,4.874698,13.308594,5.8619204,7.6188583,16.913788,19.056538,16.30085,24.441229,17.646105,13.09589,24.663818,13.65056,27.31858,13.854564,4.550074,29.126715,7.6486316,14.3426485,21.512823,25.665197,16.333578,9.981406,3.9255726,11.968718,18.945375,9.605849,27.115124,20.935436,13.140265,17.60619,10.182565,9.256465,10.316148,8.282058,10.719483,6.5848684,13.481674,16.968937,22.60637,5.743833,15.278979,9.238709,10.747204,8.113107,15.544084,6.0135183,9.409507,8.47274,10.118372,7.8384614,6.743463,10.340943,7.462725,14.581889,18.623354,11.431428,3.254915,5.100371,16.263626,13.878281,10.837454,3.8138835,7.0968566,10.614249,15.367954,16.613987,23.544857,11.061002,3.887253,2.4818938,14.802941,21.209091,2.8236358,25.523142,14.219001,11.8670435,8.320083,13.346197,16.459959,4.9025674,10.832009,8.269689,6.460942,9.318653,5.795786,11.593942,4.7603683,8.08451,9.51976,10.347144,16.489494,3.7312548,3.0554721,13.195887,7.8523726,7.018174,null,6.0413375,17.453447,1.8074273,10.833955,11.57953,19.440529,10.553126,12.5460615,13.443182,2.3062477,18.060375,4.148179,17.485498,12.0815,5.7904267,7.602695,5.081578,13.477266,9.399025,8.971558,4.0600057,1.8523406,10.303728,10.51819,6.717925,20.797354,14.952803,1.802573,14.142976,5.261249,24.328413,19.164839,3.6290493,11.745246,16.509607,5.1961713,6.4016685,13.992671,25.911776,14.306196,3.1073053,6.272679,8.253829,16.944485,7.894607,9.955932,11.1214905,6.1333804,6.5381994,10.763739,15.058037,19.799706,26.871025,26.540876,11.185924,18.47467,12.072802,5.2058043,11.395498,9.975465,12.253082,21.185764,17.448267,3.2546132,7.8090363,4.254818,8.521733,2.544991,18.395538,16.284662,17.549364,16.095873,4.8811326,17.813324,17.143932,12.487606,7.999441,11.230981,1.1939026,15.040194,15.364922,15.148192,6.1663632,4.7716317,16.503027,14.630582,8.000586,7.260251,6.761326,2.9528632,14.200688,3.6726942,19.631058,10.558676,16.053904,18.488503,13.132718,17.031357,9.98713,13.887103,null,16.46223,25.282513,15.951425,20.188183,8.851764,10.922686,11.126191,1.4118001,8.885361,7.6862416,12.400825,7.574274,10.553496,7.987534,5.8578634,28.696009,22.317028,20.423033,12.95248,25.588957,7.571261,24.21299,21.63475,3.63113,20.87074,12.257287,24.708412,29.79504,15.501135,7.122537,8.9519205,12.887707,30.247318,8.761881,22.37704,20.158714,10.004656,12.250877,15.493303,23.98599,11.469998,13.447643,18.529148,8.414817,0.5527423,32.34594,30.92241,11.287439,21.656225,18.442402,7.734374,11.6097145,18.185095,19.3888,15.0135355,8.880212,7.2592516,7.136394,11.878171,29.786491,19.424326,15.062812,18.984169,15.82577,15.599484,7.747454,12.737442,11.465238,28.162771,13.430893,24.44925,34.35892,15.265729,21.028173,30.672638,19.389038,26.132523,8.566723,10.534617,25.155468,11.8243475,2.644495,17.09913,18.069803,17.42974,12.30665,14.068039,3.8877726,12.887581,7.071821,19.843084,2.39271,30.2327,14.750212,16.113258,13.764267,29.880466,17.021084,23.384293,25.95764,null,17.789536,14.100984,4.110352,5.5874496,8.010888,8.690171,7.367998,7.1012416,3.1854029,7.4457035,16.633759,11.427557,9.261944,5.6752357,12.82934,4.5559425,5.984962,17.813835,3.0459445,26.619818,10.211492,3.9190917,4.192273,8.216519,8.3204975,7.212158,14.273448,12.330512,3.4743567,21.43804,18.907873,7.6281147,15.2645,10.028441,16.900616,25.298002,14.956354,9.451654,5.95934,3.253704,11.164428,1.8477081,13.6985235,12.842056,9.794647,12.245089,12.882825,6.443994,3.644542,6.4519653,5.511505,17.35403,7.197831,21.710424,13.302724,9.311657,6.6386733,11.548369,6.2415686,10.289883,4.8953743,13.234162,11.031165,14.836001,18.902538,10.51403,9.182328,5.8193364,16.380186,19.579777,2.2885256,21.50193,21.776632,6.9082546,12.939921,5.1603384,2.3781984,16.323658,6.112706,10.149346,14.717069,7.4897847,11.297005,5.267333,13.233761,12.903426,11.837288,12.699856,14.892957,8.910769,2.3572617,8.805069,12.571515,6.5018578,17.887486,11.3043585,22.591892,10.7602005,18.620497,9.908586,null,22.21179,6.694207,15.564942,14.720395,7.392866,20.965843,11.670473,14.520419,6.2219353,17.756258,11.752194,8.161154,5.7266974,17.31771,5.6168766,1.9625475,5.8831854,8.794585,8.339161,23.567974,13.244808,6.7633066,11.379891,20.05884,4.1001515,12.094304,1.6641508,14.938348,15.639781,12.570808,19.555387,24.126507,10.088202,0.90830785,12.991357,2.8672032,15.733622,10.4702,7.1930575,7.6340203,9.9850445,8.449016,4.690966,3.8252635,9.869958,15.1521845,17.290358,15.101015,5.9328203,11.686944,18.477959,11.049536,5.2158213,9.649963,18.774632,6.945834,4.299703,12.536217,5.4264,9.63833,10.511476,14.547472,3.8385155,16.060266,6.0389824,2.883224,13.87728,15.720475,11.196905,20.672848,9.222616,22.37014,27.870352,2.7663486,21.40078,25.864874,18.635214,26.342644,13.68465,12.5557785,9.751423,5.8257527,6.9550457,6.7757497,8.24838,7.6067967,9.910558,6.9770436,8.85798,6.5804667,13.707038,8.414037,6.2557507,10.82752,21.874033,6.6554394,5.810374,2.4102936,3.7882507,6.772481,null,10.211935,3.4455311,12.187056,8.826213,7.70283,4.398172,8.917449,4.985544,2.4022632,8.804516,12.430498,8.031931,21.34572,4.384644,16.00728,7.551894,24.272882,9.570359,20.381021,16.221981,7.609122,2.9977365,10.5737,18.131496,8.453653,39.118294,32.390682,24.20169,41.93495,10.209144,26.851946,26.834948,15.765118,17.5908,28.100756,11.645821,7.358584,18.112564,5.446571,2.7991846,15.695488,13.521719,14.664945,19.454142,14.402194,7.633386,21.476366,27.629742,12.663711,3.924284,14.724273,22.433342,17.414698,27.180063,16.993202,40.422634,41.31116,8.139514,12.324946,5.387532,2.775787,10.092323,23.282547,5.459312,13.67971,4.692502,11.272842,29.240013,24.089714,22.324133,4.0642056,22.01342,3.7128232,19.345919,12.865745,10.686609,10.217929,9.577586,14.753478,24.289333,22.75854,22.419308,22.440552,3.7832043,4.6841574,11.61978,13.785987,14.754088,16.31624,2.3145187,9.801115,14.021852,7.402279,18.479017,15.712755,10.815189,17.7642,7.404558,12.300406,4.8705354,null,18.067244,5.160831,16.206156,5.744522,10.822841,5.7513213,13.576038,4.043122,9.561359,12.531701,9.211241,3.5600648,8.072981,1.8634038,9.514856,13.951965,4.5566254,8.78966,7.206303,17.11799,9.146639,0.514608,20.218237,14.613168,13.512122,12.816291,7.5142536,20.319199,21.53554,4.5051007,8.292758,34.17596,20.233612,10.517978,2.6503131,7.261417,8.301416,19.796934,13.662837,14.169369,4.722231,1.8682908,12.875778,16.543396,15.950559,12.321741,18.302235,13.150447,10.067449,24.688286,4.668426,18.283527,14.521027,3.8043618,1.7271993,5.160996,28.170145,23.502403,2.379646,11.3186655,29.339005,18.964808,5.1961565,17.641579,22.577879,8.379982,1.7104601,8.207307,5.9351525,3.0562906,12.66366,9.769872,7.13274,18.274384,6.4083457,14.267687,9.694975,7.741571,8.7301445,10.933057,6.7394114,7.3779736,3.6947048,3.0591364,12.872408,12.122022,4.1959343,12.437924,16.93393,13.182881,6.7886944,9.772315,9.20832,10.450856,7.543103,13.84228,10.719435,3.7350528,7.8354654,8.54606,null,7.856824,7.363656,19.41045,2.9724731,13.969861,11.434154,12.749221,10.464348,10.248704,14.86187,14.326561,10.576204,18.335697,18.490406,23.574995,10.42899,14.432369,4.900822,15.680015,10.559091,35.19776,16.85514,13.958855,11.008669,18.310406,17.895826,9.63328,28.180485,19.38959,11.929586,21.406013,5.3443575,16.586864,19.23425,14.884597,17.937449,14.424057,20.227274,5.559232,20.190922,13.522062,19.540699,16.850542,24.147379,11.678274,4.8357177,18.112436,8.337967,17.124094,18.219902,2.358934,17.416935,9.090187,20.315105,24.268501,14.102486,25.149513,13.854258,8.822264,1.3661958,17.034796,7.862846,10.542166,18.76262,22.237585,15.127552,15.998871,19.78783,19.034763,14.0991335,11.198158,14.776357,24.679838,9.387909,22.864388,16.29988,16.441185,7.7738843,5.7709937,6.193153,12.886593,6.4708705,4.0968456,10.562436,3.616555,9.906041,19.891851,12.347786,4.1795607,1.3640063,21.437134,15.406122,14.270472,12.155651,24.59792,5.6114106,19.66213,10.647158,19.003489,4.0136156,null,8.260409,8.846434,15.846645,9.222224,11.2749605,7.8624535,20.325819,11.762268,12.892029,17.093534,12.529964,4.6921544,12.587827,10.476166,10.866619,27.689075,14.216038,40.636845,18.343132,36.568974,15.595767,7.662406,31.202549,17.049408,11.355894,15.331844,20.21098,5.163121,18.413975,19.58927,23.421286,34.558033,18.07206,6.443822,11.708681,11.238167,16.427906,21.066923,26.114857,9.337093,14.165768,23.713625,26.941896,5.425195,32.958824,19.054056,7.6069994,10.441167,17.51386,9.8300085,16.670761,5.6063914,1.0806383,19.188784,25.008924,25.2687,14.796756,12.38318,14.531641,8.42326,5.23073,23.416016,20.577017,31.916315,24.351534,9.400207,9.3396,2.8381956,12.258689,22.122093,16.363646,17.743784,14.52506,7.6822944,34.26048,17.702055,22.870396,7.7776566,7.200873,21.888885,0.69593245,14.06913,33.409164,32.990604,13.920455,9.69633,16.71525,14.623736,10.04222,8.604697,11.610685,11.233413,6.5043035,8.2085705,9.341464,11.096643,11.303328,14.087998,1.6713427,22.17603,null,7.703912,13.676889,6.8538413,16.03965,15.150001,11.235818,9.2551,16.402481,12.129027,12.270838,13.145343,9.668592,1.5868773,13.553009,6.181773,23.956268,11.67858,17.492113,3.7593184,17.07218,3.20637,12.362581,11.458437,17.974442,13.973976,29.563044,16.17086,20.21303,13.147763,22.672726,13.482981,7.7255306,1.8137684,4.8411646,9.096673,16.478958,20.250313,15.066279,7.0769706,21.753,28.96892,23.11458,16.167503,6.339002,8.526616,16.826044,32.767334,34.242382,11.819569,9.404942,2.5323012,8.325633,14.6842985,12.663871,7.0051937,19.062668,4.271215,18.878845,14.271266,31.761166,20.55518,6.687587,5.989492,2.1747544,1.2444263,13.105557,13.848032,0.78526384,6.527185,8.233164,12.561089,11.222115,18.543064,1.9692627,17.081787,25.074032,13.480335,22.984018,8.812947,32.259174,14.0304985,11.654155,16.82423,30.212662,11.588938,10.144509,4.040523,9.757166,12.800099,6.634785,2.9472506,9.139384,17.523926,3.9001863,21.153732,7.3671374,11.889445,20.620855,18.340805,13.941366,null,14.690573,6.1936507,7.7616324,8.320986,6.6784687,13.177814,14.10329,12.816252,16.699306,6.602865,26.62111,6.7305503,13.671368,14.988449,8.362665,20.512693,26.810501,38.377792,16.0254,21.864347,16.502722,13.408423,18.76267,20.888853,13.35468,5.780477,9.933879,17.76581,19.292253,5.6060767,5.8130517,15.255205,18.309671,7.639453,2.9717863,5.649936,12.684265,14.530583,19.765425,4.245183,11.414893,15.0324545,17.768612,16.379301,31.03949,23.52251,25.533756,15.329973,21.31149,34.26827,27.56366,25.838741,20.23429,16.319359,13.58528,21.61575,6.817804,9.792641,6.3155117,25.498547,14.796628,18.804733,24.005127,18.258434,17.696953,23.5663,11.966596,3.244363,10.329145,11.913735,10.101983,13.051381,17.662687,8.318119,7.6384916,15.230068,4.022185,18.322367,23.643435,26.275331,17.535772,17.126192,17.086046,26.531391,7.5936165,32.85331,16.091124,29.642023,15.7086935,14.7105255,7.322772,3.6327364,4.6537704,6.332478,6.4001718,11.114897,7.7142353,15.423083,11.435214,14.80944,null,14.074898,5.8238688,6.1227956,24.000751,8.58567,13.686793,12.572914,13.66269,9.0170355,11.550664,13.786435,5.20791,10.053724,7.9105535,7.0054617,18.591496,7.799517,34.736813,17.32403,25.29791,19.66103,41.34407,12.186933,21.550169,21.363094,17.379847,15.279756,20.923471,30.469578,26.785288,7.26223,18.001253,0.41841593,23.86377,12.514696,7.0624313,16.850515,18.125683,16.881523,15.413912,13.752107,38.307888,44.51808,23.046276,17.235756,20.317196,35.655632,24.364359,18.037153,10.528385,11.809756,35.6923,35.799797,13.982613,10.128641,11.093722,31.184862,25.877169,14.509606,8.0295725,17.400864,15.80024,11.499928,3.5437145,23.82398,10.720893,19.412954,13.041084,2.043578,26.458776,20.302185,18.419249,14.962302,18.092356,14.43416,23.456861,29.465609,23.302948,30.65648,29.259703,15.504896,27.562365,6.1434,24.239902,14.013996,22.229149,23.237568,10.475806,2.1588764,3.5787609,4.8534575,9.860291,4.8251233,6.3752327,10.9766,4.5038843,4.746408,7.947431,17.094255,15.771023,null,15.099879,16.329906,8.690463,10.96617,5.4668727,6.341026,12.711465,6.247784,10.677919,11.287733,9.909183,15.968001,4.6658134,5.0038724,11.055304,2.5873823,15.853327,7.0213003,22.48095,14.3028145,17.89439,20.090206,5.067326,10.325883,13.354499,14.843987,10.773864,6.366338,10.917504,10.643293,20.707773,12.510854,11.903948,11.805964,12.000194,16.12327,15.689448,13.358645,31.04605,45.866653,24.38223,21.475012,27.814943,21.892042,24.308767,21.012701,13.790314,12.155709,4.8621893,31.250767,45.28651,23.274885,3.3610427,18.909428,4.1978745,13.887792,12.765436,8.355803,6.1130247,16.425144,10.170188,11.300217,15.328079,29.499895,31.329277,18.12443,12.193555,11.157927,8.697113,29.131472,25.08054,0.54390556,11.286366,12.368858,24.405413,1.3219575,15.415055,9.616692,7.8315353,25.420845,15.004987,22.033268,8.609073,18.262432,16.540062,15.137797,17.729311,20.630972,9.490111,25.65789,11.690351,14.551025,17.172127,26.1884,15.996254,13.747461,1.1930825,16.676762,10.188794,21.449844,null,19.157824,6.9207244,7.4721575,16.11617,4.3958154,12.254579,16.732182,15.624459,14.823116,13.211617,6.5296545,28.882195,10.920244,24.33137,15.1547785,30.618862,9.65386,32.526,10.763017,34.667973,19.689306,14.745009,35.04699,28.69252,22.11472,17.948116,19.0674,26.086676,16.81311,15.76734,28.707802,23.321123,5.8611426,8.598454,14.201337,2.3635023,26.08405,19.363731,30.471495,39.262096,47.769028,33.563377,33.193974,24.818283,23.983753,28.96012,23.000702,5.5046935,7.259598,31.305145,42.209526,33.47977,17.197927,25.272053,18.272802,19.659733,31.637705,7.344743,39.7721,46.511063,26.872244,5.322303,8.107368,28.355734,35.180042,21.127195,11.184571,24.894281,31.750341,4.0439897,8.601762,22.205164,37.474163,15.598464,25.958355,18.009445,30.511246,7.4586873,41.113163,17.641148,26.62936,44.864967,40.44648,23.307562,10.121479,20.148293,6.644083,19.782587,6.6886997,13.660511,2.3924253,2.7441194,5.096981,4.419116,2.9322128,15.871648,8.734354,11.682421,15.257381,9.665328,null,18.332026,2.0752409,19.731682,12.909365,14.497279,19.156128,9.708019,10.043559,3.5264618,11.616305,7.437028,12.762726,4.374981,26.695557,13.793924,34.321613,7.6195064,16.013672,28.51276,22.942955,34.03743,15.8315735,47.665257,6.9482126,37.634808,13.64872,20.365396,21.307165,37.469093,17.477043,13.446928,13.328694,13.830932,13.821318,22.553925,26.082878,2.8046331,27.363121,29.753477,29.343151,24.390314,33.708347,23.927147,14.335144,36.90262,43.522106,36.991425,22.62358,9.264701,11.10212,10.75605,12.575986,17.432533,23.580652,37.05902,35.299194,26.680862,24.09288,44.244183,45.15171,39.76607,25.052137,21.994528,15.959995,7.7805324,28.312668,20.827143,31.800518,22.745298,29.116302,28.773169,5.5982265,2.7906332,12.567133,23.109735,8.488023,11.398792,26.02594,29.113993,20.545334,18.131557,32.636646,7.1684318,25.758852,4.8253384,21.388094,1.7711746,13.48291,14.626494,20.588154,4.7879195,12.149897,11.251063,16.10522,5.2225933,13.712377,13.045155,16.431011,8.638456,2.6280894,null,15.776295,3.5719733,19.159813,18.804358,6.4878526,8.680011,8.065714,12.776942,10.30922,15.4970665,8.354855,23.953218,21.986637,32.430073,11.869659,30.668621,7.4767346,28.59924,10.082817,42.268265,10.610183,24.261602,19.647821,22.6093,16.398191,7.4838667,20.990248,12.644134,7.3084736,15.676524,14.07294,2.0626516,18.592384,34.026806,23.306705,35.46091,44.141495,16.228481,42.513695,8.088175,16.30058,21.11523,27.929365,26.101482,17.000305,31.968142,59.410267,48.06509,16.839743,11.54687,31.707317,46.37838,44.173897,20.717072,35.687935,34.198017,16.492802,38.064568,26.830645,5.9335246,25.042572,23.802923,14.230978,20.057571,8.888371,22.759083,39.945976,14.385476,18.513487,11.064072,29.447243,22.867395,4.2370768,8.330028,34.65092,10.37538,24.984846,19.029919,41.710003,13.578143,33.093742,22.655954,19.941069,34.796806,13.642063,14.158886,15.742676,21.19504,21.70087,1.6008548,14.880387,15.280747,5.779373,12.5606785,19.64259,10.260887,12.18424,8.821014,10.712221,16.440878,null,7.4685764,23.322786,5.8666444,22.958857,2.515806,10.091585,3.8722305,21.019154,14.031383,14.891646,18.294846,3.61931,17.236898,15.127629,17.023987,21.414059,4.6519785,30.688803,19.25566,30.036682,38.099747,13.633061,40.498165,5.6104927,30.88867,25.753141,24.383543,25.14286,11.997057,11.182977,31.783583,41.642757,31.24447,14.690373,13.330545,11.142766,26.211119,22.860493,13.559352,30.276733,31.59024,40.569256,33.420223,43.593506,27.787828,31.44335,65.7883,57.925827,41.270252,52.719883,59.008694,37.853836,22.872679,35.718685,39.218395,14.768586,32.921314,36.453384,22.776722,41.178436,61.55671,28.557795,30.299042,43.759502,25.320932,11.559555,28.847916,11.341352,44.876717,13.753122,31.817581,13.545401,39.749306,20.999895,33.52854,6.5258408,28.855148,13.781695,11.455553,31.019293,14.025121,26.868856,24.512941,51.554848,11.869702,14.634872,29.67996,21.158499,12.081612,12.303741,32.19245,22.54982,20.659122,10.286905,4.72265,7.1522813,13.165739,8.575371,16.316164,11.409177,null,22.041162,13.279825,8.418413,3.2177842,7.201133,5.9785185,8.940354,12.093782,10.088821,5.5964336,8.110403,14.809159,32.157795,7.997599,22.131516,26.691416,27.902939,24.241953,10.665083,23.647371,10.955511,37.09873,2.7717059,16.933954,15.151399,17.110672,11.131811,7.004001,18.229761,17.233503,34.470142,18.901562,33.52722,29.115602,29.759174,34.933178,8.242682,37.45625,16.908062,37.04801,49.944103,10.744473,23.609274,24.689192,29.491789,18.729488,27.787071,49.25745,55.0043,60.193897,59.53085,57.10675,47.243607,37.15418,10.617506,29.131845,40.355827,29.875458,26.306906,43.814972,23.989676,20.514112,21.081778,28.530788,65.6029,36.736076,16.407526,23.88378,19.83342,14.324957,30.07904,28.95147,14.009803,13.734179,28.80694,4.934593,30.723911,4.432939,23.644417,25.826035,20.907099,12.526676,10.851577,26.141542,11.631239,12.819351,19.06075,3.088101,5.6327558,18.916,6.481009,9.566371,5.9822454,16.647905,22.94863,19.233854,19.452188,19.207474,21.713537,23.829737,null,29.379759,16.97526,10.867999,30.09592,12.005474,12.489041,28.280764,5.1840672,17.419142,5.1884527,1.357039,8.98665,16.667473,14.929154,24.62506,2.4056122,23.960897,11.8927555,15.410766,22.339138,25.680174,14.253068,37.324333,7.4623322,32.0529,8.767175,17.45465,25.817327,0.21700045,10.104747,23.523945,10.258151,30.157377,17.812584,21.516428,10.908291,16.887943,14.955391,39.281246,34.294975,40.49155,42.345978,35.20486,11.154696,13.734806,38.103363,37.508224,12.602107,47.832283,48.689262,56.089878,42.52606,24.526577,15.322812,26.60919,26.25772,28.002758,16.224127,53.80155,37.659863,17.628588,33.594513,4.266135,23.719683,25.506878,27.156998,19.855473,34.37773,3.3822324,19.931746,31.783525,32.99595,12.781389,7.5534844,25.599045,8.6126585,24.397789,21.562536,8.6370325,48.09103,9.958956,32.12116,21.166231,15.831094,31.809206,20.18082,27.49381,9.663474,16.457474,4.89949,11.815905,18.376133,2.8412845,4.2035627,15.976663,5.6980886,11.640953,19.969593,0.11699951,25.177729,null,26.828814,14.784157,15.047093,21.279465,6.703599,22.839819,3.2287207,12.086276,16.64346,13.017416,7.0353174,7.824275,9.094723,3.892894,24.669476,3.502441,23.39693,22.129124,30.513384,21.449741,18.754936,28.016611,10.426084,33.127148,15.638434,31.507536,20.242603,37.63817,9.713956,16.220009,13.600696,23.58089,21.661573,21.563019,16.25543,41.991077,69.56237,39.75962,39.635723,39.081345,3.7763703,25.908127,31.313808,13.599291,46.481293,46.155678,28.734861,16.845634,14.471319,22.707623,33.1409,18.428928,20.79707,23.564936,26.804108,48.167713,8.295978,53.913425,56.279396,20.690536,46.410637,10.201862,50.658215,42.531265,32.591465,30.388361,23.08226,15.399138,19.111105,16.909914,6.2790265,11.740083,10.669062,23.07483,32.228687,5.1027703,36.54977,8.282608,20.741772,18.572847,9.183228,20.845974,9.418482,7.1127033,24.160122,4.2701426,15.353652,14.948549,12.219825,20.558277,10.146906,2.680212,12.198257,0.60471857,18.111916,12.861238,14.912938,10.495146,21.87198,2.929483,null,17.837,2.4572918,25.477211,22.521736,18.08585,16.633602,11.912985,11.509592,14.493994,1.2836541,7.398615,30.136747,2.5604162,13.993152,27.10361,8.4027605,31.260006,17.705809,23.741766,5.7644296,15.9176,26.947868,28.593845,28.8212,30.265182,17.294895,23.111145,12.575931,14.292936,13.625272,2.9932358,42.2871,22.506588,20.581856,10.754651,39.705215,33.34919,13.535788,14.207957,30.830006,38.77187,16.964857,44.988018,44.494667,11.785761,28.117346,29.109253,31.233894,17.223484,10.244143,21.662184,28.733383,21.519793,27.569395,14.670169,3.2323065,28.49209,53.30663,40.045425,54.623207,48.96114,14.563916,27.329924,7.2996283,34.40997,5.287475,38.49009,10.967381,31.271479,22.312653,10.088341,24.588936,26.081656,18.799093,18.357958,2.826906,23.855776,35.447426,9.041881,26.175251,28.905096,9.106798,27.987612,14.023962,13.212344,25.032343,12.829437,15.299945,13.315128,11.117939,22.407442,23.908009,12.995617,14.121728,22.26748,12.945537,21.437513,14.869875,5.4469075,22.672283,null,6.8065567,14.679119,7.7035246,18.422941,10.292112,15.174168,9.194146,6.0533295,15.423027,5.1843686,18.599512,12.114989,10.183901,14.737257,21.985727,20.836617,32.30465,35.01941,37.22185,22.344648,34.0235,32.193653,22.669611,18.254814,29.487185,12.539784,14.915786,29.62029,28.246555,19.825335,36.62546,24.293428,25.768696,10.439012,29.377825,21.365974,24.184649,16.248875,28.768862,19.118023,42.451477,49.54571,29.151712,9.376348,21.93234,36.906124,40.870113,40.320927,50.27672,48.037033,25.851576,20.727232,53.376675,60.640163,30.051136,9.230138,10.666377,35.71624,47.55338,34.08794,39.759624,58.374756,17.157213,49.069714,12.422514,32.40165,25.003872,30.785448,21.27878,14.904076,13.206472,4.365219,29.490826,11.597864,21.563913,15.202878,37.70136,8.11351,16.187145,43.619125,19.2785,1.4857825,39.48863,21.253891,12.606415,37.248013,10.239007,14.285196,22.836767,1.6754838,9.785884,16.126982,8.887743,14.147325,29.21467,10.578016,28.18145,26.946474,4.342279,36.307453,null,30.560347,6.48941,21.096836,22.8867,12.1022005,16.50502,15.485484,13.320706,10.539828,3.6101694,14.506104,14.634044,21.363766,14.42134,26.973848,23.093716,12.745815,34.356842,41.511017,23.290026,39.434753,33.10846,28.008314,41.547447,20.856022,16.407248,26.776463,12.140838,21.771057,26.487434,13.09214,22.264742,12.546619,23.262798,30.145782,61.126072,24.378506,19.612297,15.301816,18.51364,36.991516,65.54773,29.279892,54.721745,62.203423,30.380196,4.483063,16.531296,31.146614,25.19057,29.378525,27.393032,26.644918,15.413176,31.104198,66.97697,59.7081,38.97541,54.306263,35.749344,17.028217,9.080686,52.906452,48.715714,36.05479,32.631683,44.055454,22.570423,27.755995,6.562972,28.938889,29.176683,7.280372,13.332037,9.495272,23.603476,29.519789,28.474705,41.120186,26.063038,49.566185,20.038332,25.461071,43.681683,12.624357,24.645954,30.371605,16.52456,8.783405,12.690954,12.61012,10.943388,7.1433153,5.1022134,10.149827,10.16029,9.062182,4.951862,9.895163,5.019927,null,4.5340056,9.653485,6.8875747,11.0181,3.105185,15.612679,3.974905,11.670254,10.340246,13.043251,8.709454,9.945108,19.0873,14.578407,25.031467,9.236238,26.305796,41.489586,16.48565,38.26792,43.087856,31.644205,37.502697,38.591644,24.219246,25.005882,10.963005,24.876312,13.790061,22.585186,1.2490889,15.658413,36.64161,21.200834,24.488455,32.974316,40.22616,33.897243,22.976574,53.900085,49.95279,17.623386,33.495056,48.32512,41.857292,29.613234,15.868886,11.23621,17.900507,40.986774,50.757214,41.356056,31.090057,47.66627,48.989502,49.358467,43.783604,9.348359,28.96688,37.796135,14.771899,43.18153,17.252636,44.45999,20.326902,30.663147,16.179832,51.073082,31.272543,20.132551,7.820106,22.911425,32.6914,17.886562,29.195444,27.819962,33.315018,22.980488,26.60876,23.027107,29.114372,30.79404,10.552152,18.40636,24.51202,14.632496,24.882944,7.149122,12.453572,10.804263,8.812696,20.264933,9.413386,21.45094,19.883364,4.331878,27.273735,20.591455,14.773935,12.706769,null,9.666846,6.4670086,5.5431123,15.743903,12.856135,22.495169,14.136004,15.833495,15.740639,24.49017,8.199064,8.738764,13.93536,14.668957,10.014788,9.223787,27.782152,16.290665,6.4122415,28.67912,13.925201,20.157288,41.50193,31.64318,12.070255,38.384197,36.68166,21.597271,25.587114,23.608912,39.04968,31.034004,26.948118,23.124748,20.926527,62.536625,21.895535,43.656235,21.405737,31.660564,12.02544,29.938616,45.73986,43.753933,20.435394,35.639183,43.37432,12.178805,21.077553,42.037277,59.8547,46.73233,15.286265,26.210958,56.530106,32.257324,22.749352,43.222656,25.353676,9.352165,28.103914,12.427464,39.920876,24.016117,51.097496,39.21552,10.268685,28.817215,22.042198,12.338187,7.7684617,23.169657,18.848253,36.004463,23.588886,21.74854,45.601986,39.382374,24.082754,46.765224,41.68642,18.158466,36.898785,26.179365,32.856224,15.819154,7.680555,14.54064,9.16337,7.9330196,6.715857,7.0910587,9.691904,7.7925844,21.98105,10.405111,12.623465,5.9740796,17.298187,16.727562,null,16.136208,12.659562,10.035841,10.392591,13.252572,14.051501,9.994637,16.07995,18.696247,5.784071,8.324219,10.531946,22.196043,2.9464283,9.690238,24.019487,14.62718,22.474825,31.283516,18.346521,30.856651,29.557453,16.309475,35.720226,23.598072,22.586557,35.687332,4.0409007,24.562288,10.487675,14.415688,8.71694,29.86395,31.8008,58.23162,24.634964,34.435738,41.461864,12.016851,45.61443,17.731731,32.788845,30.185608,23.909945,37.402718,49.064053,13.047397,62.120926,91.87217,67.94744,48.056767,62.895973,41.544502,26.74497,33.66776,49.528374,21.905075,15.915838,41.47475,39.72187,28.320992,34.699215,21.890236,26.642828,29.235115,71.48963,24.361074,12.373665,18.20039,23.44296,32.09274,7.2398796,14.167875,31.974344,21.252373,11.455793,26.976946,26.120049,10.189516,28.083607,10.943497,8.409977,28.167517,7.6680484,7.3690033,17.802263,7.089592,3.7262735,22.295977,10.097038,12.590892,17.565754,14.392408,16.20859,10.91598,16.19797,10.554667,15.145683,9.912346,2.3833716,null,9.861666,7.6848564,3.1003704,8.499987,11.265511,16.692743,8.42538,12.58605,3.3971226,17.57201,16.758898,12.283145,27.02619,9.5616,11.927108,9.027427,7.943061,16.754816,28.98918,24.186893,10.779949,24.731333,18.048119,19.67532,13.209322,16.997622,22.937609,10.253343,16.000238,20.224586,14.051212,4.193525,15.489929,24.293652,20.51437,25.48528,19.40234,42.40336,28.472038,26.021406,34.811184,47.820274,30.500805,40.082745,62.085922,36.12787,43.122314,50.39388,40.198402,42.429268,17.86981,5.735936,50.42718,47.49966,14.952693,17.722704,30.40648,46.287235,32.78884,15.655383,40.001465,21.896711,79.96061,35.60928,27.400309,33.099796,42.115383,29.984968,35.440296,5.079421,27.43429,6.940867,24.040215,29.716879,12.567058,47.3932,23.816153,8.107911,32.746376,29.78971,8.0375595,26.203045,16.523392,10.456718,15.817821,16.099047,12.916771,5.4876003,8.79225,22.887985,9.370881,12.980885,12.030533,12.782655,27.627064,14.031546,30.284225,22.554737,27.103947,8.858814,null,3.3238747,21.200712,18.854895,18.153696,16.80086,15.897378,9.5479,11.883715,4.7376666,6.722152,9.506679,11.950602,19.338924,22.95464,9.93634,22.867283,14.1352825,4.2782345,30.05092,4.666473,9.33106,40.050632,13.698239,15.200901,25.83288,21.155582,21.066813,26.427422,13.195536,13.343932,13.071003,4.6698337,12.478995,35.22308,21.041586,29.607058,27.749968,42.951294,10.171886,8.311681,55.98826,20.871826,32.82515,49.492844,48.57547,84.41032,17.57551,60.85486,77.82466,90.28913,96.76817,87.69716,62.439785,65.47924,80.007866,51.23016,38.379505,47.874783,44.193054,33.071022,17.751677,30.804031,9.955498,23.317722,41.126297,19.24818,4.832384,20.63927,16.340298,16.0649,21.749075,31.38543,22.542612,24.7985,18.353277,23.833675,21.466074,12.232345,31.810352,22.104465,12.717318,44.845226,4.6096573,11.868588,34.736362,1.9761847,13.525392,26.965944,9.735228,17.97288,18.948584,8.19035,21.085205,14.419005,26.754208,10.471672,8.950197,18.04977,8.657858,14.529135,null,12.290569,16.532848,20.19307,14.063775,8.220472,11.545213,9.958607,17.052317,4.8123465,12.864148,11.178568,11.015369,16.792051,24.252378,4.297566,25.08884,14.473538,10.752261,38.738056,5.7000647,18.251244,33.90023,10.660929,19.31346,27.084705,18.354406,20.705814,10.194463,9.862197,10.1787405,28.08,15.0282,14.88327,22.947021,11.357976,34.03033,30.194756,18.683275,41.62373,11.771722,35.818565,44.442577,19.488363,58.743828,116.249596,34.782166,120.56922,55.84947,127.85045,165.07283,175.54056,146.42632,21.954906,103.77285,48.376064,110.524315,53.94572,21.722393,42.34871,30.928082,35.055817,61.300293,13.177521,15.064719,59.470978,30.594645,25.457632,25.3417,33.468197,32.19765,31.784033,27.957918,4.8473854,31.767323,33.141895,24.285734,15.298596,28.478842,28.218132,8.732117,12.009949,23.298084,20.624243,10.071764,17.384089,19.76447,5.5457063,5.722932,24.19207,3.2751973,12.397237,10.453011,16.699171,13.4430895,4.884973,7.2465754,14.327448,14.782382,4.790309,9.415474,null,20.372324,8.043468,23.235052,18.712444,9.713635,10.723147,6.4598365,11.845214,13.705355,18.145008,14.360241,11.880378,20.150824,9.618819,16.534193,32.72065,6.171927,21.96529,39.82316,22.420305,13.792004,23.980995,41.487434,20.037674,22.527542,19.043497,19.77623,18.886171,35.616238,26.826862,18.200865,17.870995,12.197803,10.995749,40.206017,33.222332,10.801017,35.736073,48.876106,24.627338,26.789207,15.037042,69.99446,36.521397,38.880394,122.09011,78.16459,131.75473,55.65686,152.70532,153.16621,44.24602,161.0493,52.880447,91.35951,65.89263,54.724,43.94425,26.45234,39.605793,41.741173,52.917667,22.915392,34.514343,4.9810543,24.818409,33.08203,9.646122,3.1442037,30.026953,9.005854,14.759185,21.85916,12.962815,4.1777763,38.192764,17.939482,28.940369,22.6841,34.318237,23.846464,46.06127,14.052301,29.4346,41.683403,5.898468,25.701412,20.69392,8.456634,27.686779,4.9717164,9.577447,10.396864,2.388155,19.054596,17.733076,12.048721,15.721487,10.192442,15.153357,null,14.774477,6.1809764,15.060447,7.159255,10.586094,7.5616717,14.423135,9.029757,7.4010315,10.937821,15.511849,12.544445,23.059885,37.441338,25.985369,19.227776,49.24029,23.406818,37.84677,24.181204,29.409576,11.328525,34.754757,9.917507,19.06248,18.003376,9.379292,24.231668,27.343107,14.659875,14.488983,8.929152,4.1086264,6.8367,16.079157,17.952143,18.469116,18.959309,65.255585,33.526604,15.303187,30.400463,36.126423,82.50151,28.675653,83.94686,227.24425,48.876976,252.04204,414.29626,442.2584,233.52696,47.490242,217.0917,89.27957,31.86964,84.30534,87.96618,14.815144,28.068281,5.7915187,40.512806,18.038836,16.980764,19.117691,36.586643,18.800238,16.48291,12.006918,20.895214,19.496576,27.920761,15.241037,1.5496633,23.5004,17.692158,6.0873504,15.488093,44.985466,25.069668,23.171106,36.056156,12.705451,8.300014,25.70582,18.166788,15.767813,28.106878,12.999841,6.9684525,13.17202,9.881607,7.071565,8.143407,9.893019,4.336805,14.965613,14.271788,1.2917234,17.045069,null,11.620275,5.9580736,2.4851773,17.901419,5.305984,5.5830693,21.62925,9.446542,12.3191,9.152326,12.532737,28.236591,10.128753,31.357456,19.198277,16.463345,32.155304,11.344894,34.652405,29.921751,31.307478,10.312021,38.534744,15.657465,13.715782,29.20312,20.044678,8.733723,21.427689,13.68654,14.524335,22.271576,17.162535,29.051666,21.05133,34.93897,27.32446,45.86678,71.26558,33.599712,69.11288,41.118366,12.898686,120.466995,28.005577,22.106926,289.76743,125.26217,92.23215,1674.7178,1673.0135,92.306465,122.59001,283.38116,23.820728,26.330166,114.25676,6.912059,46.327927,65.79447,34.973354,72.965866,43.23775,25.433435,39.09492,25.129137,33.03539,8.243651,23.871742,19.224735,8.288421,23.689192,10.066289,18.165983,35.021183,11.863838,14.001524,41.99377,10.801621,25.330364,27.00024,33.833416,9.338148,32.587105,18.315744,18.484417,31.439022,15.67955,30.735003,13.670647,12.385619,8.235748,8.474578,20.182306,6.9464426,4.526863,14.47145,4.3003035,7.0572696,11.694248,null,16.797663,3.8386602,11.004604,14.876914,3.9862573,9.711272,12.17629,11.070293,10.903023,17.195282,7.1022453,14.798304,28.582075,8.52198,21.58179,31.239952,14.585061,13.031696,40.625717,27.13659,24.87469,49.456272,18.308931,4.8153033,20.181553,27.502968,4.0123467,18.283604,28.613228,23.411938,20.24625,8.971249,11.04602,19.912766,38.35116,9.5867405,23.483929,23.214483,30.875477,4.9605746,35.702427,20.630152,89.97948,75.767624,32.447067,89.28599,202.84671,57.660686,211.68835,435.559,401.85733,235.09032,63.165184,212.83916,82.84844,18.177313,77.35944,42.26209,28.100708,17.273176,28.861313,64.50129,21.021553,13.7623415,11.385663,17.40016,1.4848578,4.362351,15.2080555,17.535923,10.248775,34.5432,23.787365,15.142955,24.036097,19.236748,4.2606263,38.989765,9.448754,30.409939,24.867447,37.102306,20.098963,47.251724,18.3334,27.729395,35.887,25.112019,17.086811,13.606135,12.039168,7.494486,12.462691,10.865357,10.01133,8.7273035,7.9872246,13.999674,9.450483,15.141449,null,16.312914,12.183779,15.883498,14.963904,12.902569,21.87969,2.434241,10.666283,7.5688677,3.2152345,25.616266,8.212747,18.852112,22.393726,6.1744986,34.067863,25.998055,11.813786,44.417145,17.044067,36.16043,19.779276,23.384716,19.34521,35.580944,6.63577,18.957375,18.357653,16.29883,10.877502,27.56882,9.005897,13.106638,29.151897,25.651545,11.591662,28.99423,23.544186,60.47187,41.96018,40.01117,33.49128,53.99416,55.960613,80.7813,98.72817,50.477333,169.36812,41.844215,152.16443,142.7882,43.193527,143.53171,82.85588,132.09883,57.23847,38.027832,86.277855,16.081842,25.582,34.041885,50.697815,31.460785,15.462078,35.429615,37.527763,17.2308,15.983521,12.303343,18.993336,31.772127,33.32332,18.86544,17.16254,19.961208,18.5756,20.58567,36.45591,22.916328,13.960065,18.742691,35.979332,19.091835,0.73171544,28.432854,17.837831,12.885059,16.729933,8.681115,15.79296,16.469122,13.579008,15.733102,7.0646787,18.340824,11.67268,20.690882,24.376041,6.6656876,22.089985,null,12.005048,5.741442,12.631193,15.005029,7.1419334,10.188742,10.887467,17.917187,5.705079,12.032698,6.598702,24.238825,10.621586,5.3485646,19.638401,19.453636,9.695695,19.34089,20.956017,14.306942,6.02585,31.224636,28.389515,12.482157,23.725588,36.398586,31.98503,3.0574718,27.84412,33.122696,33.284695,40.946144,20.193243,26.962143,31.220474,54.473858,18.66713,13.824914,53.434494,41.69589,31.15705,38.09959,23.60469,41.352325,115.99513,58.84926,96.82699,15.473109,144.11278,156.95895,147.08185,122.85727,44.966827,116.91026,33.478348,120.94587,48.687107,21.380426,48.44193,22.65167,10.384711,40.942234,9.822687,28.904594,32.867203,15.080293,20.929968,14.04792,18.072891,26.841866,7.1172733,7.06429,9.7362585,21.820671,14.172606,31.507677,21.202177,9.500685,38.45137,22.251276,8.331388,46.94755,10.24904,19.318707,27.21346,6.6640654,28.966583,18.479507,12.240404,13.638232,14.739148,7.5119557,18.790506,10.752734,4.770918,7.009876,10.074019,15.975286,18.013346,8.464786,null,10.444922,9.521539,19.765078,8.465106,8.354581,22.58623,18.180279,23.567854,5.677907,18.481295,16.15465,3.2101235,26.893307,15.561474,5.226625,32.295135,11.92201,8.330906,44.221127,11.1494,25.60636,28.822428,10.814322,19.351013,23.298576,16.788815,25.588602,19.749107,32.99336,23.48638,14.256476,18.776009,21.493132,8.4986925,20.969913,36.941032,24.697798,1.1003398,29.257881,28.791502,28.205957,47.50627,33.969437,42.179646,69.688126,79.39254,55.474785,59.213905,82.277115,93.67995,91.855125,73.89634,47.87682,11.221112,75.17523,66.52074,47.8164,16.994244,22.19959,44.35396,3.9345539,4.5985317,33.91882,23.649515,24.970083,21.431328,31.23009,8.34498,6.5695114,13.907653,19.76617,15.60952,24.965704,25.225952,22.915968,26.088884,18.283342,9.928018,42.94726,10.060947,4.769829,31.732653,5.9461303,14.804334,21.346783,9.200762,25.094522,21.3882,9.386393,6.805548,9.455269,1.3198755,13.155578,8.490546,17.34367,16.51045,17.830824,22.040743,18.611816,0.6675575,null,7.8103743,20.957863,24.57755,22.342672,11.565414,27.077866,9.613515,7.1626167,10.952285,6.369047,21.112825,5.0008607,3.5895722,14.169382,11.006538,11.542854,8.511372,11.835462,23.714409,7.5309076,30.07427,26.940464,7.055596,20.640287,36.89005,15.024591,21.78551,21.627762,7.707635,20.994633,7.302575,32.93361,32.999474,42.31018,32.182213,23.760672,36.09526,73.58438,27.215895,34.367054,17.308382,41.408825,39.160767,37.863754,23.58827,16.054428,37.926388,51.345875,14.409306,22.60756,46.769352,50.28481,53.53945,29.987614,30.402967,67.00628,46.341557,26.418009,50.370953,34.381794,16.298748,17.15957,38.33041,16.809963,19.030188,22.647718,19.81198,13.192295,2.8389168,10.942878,16.20608,14.633606,10.520852,20.642826,16.878529,9.611379,20.423626,21.684925,19.144361,17.055544,25.495369,26.821218,18.097216,6.041072,10.770307,14.916045,10.7555895,28.67013,13.396458,13.334985,18.858578,7.0923796,14.467062,6.9432306,16.401133,10.135938,6.824076,4.0039845,5.4733105,13.523354,null,5.016178,8.277456,14.124622,13.161591,11.047527,12.9498625,15.24568,9.6165495,18.687172,16.07036,6.754648,20.498653,8.351399,11.184417,18.815353,10.901086,10.18842,30.017752,7.7756786,13.758443,34.584633,8.54448,28.793335,29.929714,11.491145,23.077042,37.18475,13.357195,4.123542,39.18038,23.504799,14.783432,11.190322,25.273102,64.77574,44.19579,24.277325,5.943057,36.88136,17.692852,50.969124,40.35043,25.925306,27.467216,44.69244,25.783272,29.907566,40.188194,56.91576,38.16245,67.5576,88.51718,52.423435,13.594862,41.223118,29.35655,33.642075,36.502834,23.543642,17.171755,39.87243,12.825833,26.371527,41.178745,15.200558,56.760353,24.441626,23.040966,7.5153165,15.851737,12.508854,24.401173,5.2155743,39.67006,25.832468,25.353394,42.513916,16.835482,32.762436,36.059265,21.512169,34.832294,24.587486,18.311518,24.072916,13.042606,7.523366,20.952286,10.118134,7.2942424,6.680809,17.484255,18.315447,9.773843,10.250644,11.328537,11.269097,14.842636,12.659583,17.486198,null,16.372002,19.712803,7.7309885,11.946953,9.325814,17.20021,8.198419,5.966381,1.7819084,11.158332,7.4190526,11.947389,16.811682,11.356845,19.383043,26.90549,27.921612,35.31881,15.933908,42.914494,47.199818,25.838207,42.51531,43.24321,21.452711,22.156315,31.367744,22.101627,23.003796,5.1086955,10.22685,24.988344,18.602386,10.146971,40.877155,46.29489,21.246248,45.88693,12.068262,35.344223,14.317286,29.224651,47.655426,19.395912,21.47935,54.90148,32.431755,10.493139,46.006203,59.22199,41.7356,19.843252,15.8324375,46.702244,35.909145,10.182796,40.658924,49.474823,26.21302,18.931261,24.980461,21.403492,39.424335,21.440586,61.992126,26.196915,27.471031,21.834717,35.277493,43.215473,25.662933,19.371847,22.44354,31.996447,30.651258,9.901448,25.048384,34.049305,19.52587,9.770739,24.080938,8.149479,17.304459,23.255377,5.9778852,6.192988,7.2141285,7.855204,8.035474,8.243937,16.916382,17.062006,14.7983055,17.171032,14.984542,8.463248,15.7091465,5.445154,9.138082,7.873919,null,13.036857,13.189349,15.285335,24.888603,4.5257626,12.698596,17.675425,6.3925695,15.207803,11.266126,7.755587,8.775309,10.471578,18.567509,9.976607,26.180023,15.602879,11.27311,30.047655,26.767227,23.41434,26.517633,22.310848,30.329655,22.81442,28.519884,18.821836,27.299759,30.68642,7.0664716,15.355776,38.105915,50.161835,23.137373,25.245396,17.789133,38.53319,17.853436,42.631397,22.593206,33.839817,16.270195,4.9607215,33.343132,44.27764,49.345364,49.60846,32.01409,43.674713,47.754242,36.84504,18.296686,9.365586,20.443995,41.134434,39.725677,31.340773,32.276844,26.264284,46.399033,55.79887,22.852385,36.104027,36.439396,25.595108,17.293661,33.64176,35.761364,24.784502,2.4437766,25.417284,12.072158,24.919836,11.938461,21.238344,23.608719,35.430607,37.906338,31.800205,39.912167,39.586075,17.476185,36.48219,27.60114,7.2411814,26.821943,12.632932,21.407404,11.516126,4.405696,11.699253,10.290605,13.716963,3.247196,17.136805,7.7489963,15.075302,11.399093,14.814923,2.6706462,null,0.62391615,11.013562,6.6744905,7.28193,11.394345,11.307156,5.4549136,6.272119,10.451602,7.1056843,13.411904,8.286136,16.15162,35.64314,22.445353,15.335632,46.80177,23.936478,25.312513,48.91328,26.95048,43.508446,28.382122,30.400522,24.458546,12.993496,11.4642935,7.828411,30.342058,27.219997,10.878049,26.860727,13.558794,47.468815,22.414743,40.35427,34.344597,52.750904,19.72907,12.456893,26.46865,54.107185,45.717186,51.29661,67.56301,37.58055,5.6882896,16.175167,23.242517,30.992714,25.25258,27.270828,12.889194,11.401863,36.19377,57.80133,45.23609,33.30505,60.22617,27.302439,16.082458,5.2016244,15.634885,32.70933,56.171116,23.420866,24.606379,13.072877,23.396517,12.797495,23.630165,20.856678,7.5815945,32.318054,17.742695,22.535547,39.195736,31.526161,27.408548,41.220562,24.877188,40.25427,32.574436,10.966255,22.90793,23.660551,12.280947,22.311207,14.083649,10.112021,8.117768,15.342371,17.430658,15.578702,21.564777,13.739947,25.29651,25.510672,3.439283,34.50423,null,37.038727,3.0031443,28.627739,27.298355,15.014322,26.09893,13.478042,5.4577775,15.81418,13.38028,7.105276,19.092503,10.7989025,8.266802,33.380775,7.859247,18.252443,33.508797,5.7118754,20.712244,33.74894,13.642698,11.452748,34.31012,20.919153,15.134744,7.0608754,24.814257,10.109479,12.186091,23.56491,17.190144,36.078335,15.473147,37.423157,12.20944,50.007786,12.959354,58.700096,37.23111,33.257782,48.140003,40.83921,14.448215,7.1641426,36.66125,59.4113,45.5361,19.34084,23.880184,43.363697,53.949398,43.08733,38.661293,43.000854,32.746544,16.348513,33.4889,54.405712,44.731926,17.470118,28.99843,23.014751,22.967102,25.139505,28.608845,14.521188,25.607618,23.29162,32.85027,12.016924,32.31888,28.12597,11.145179,12.694697,22.50154,13.711123,20.129902,26.279566,31.844501,13.897876,32.54194,30.463245,29.615742,15.275496,23.814844,16.190468,16.993723,9.502404,19.30506,5.1594644,12.3666115,5.104355,11.193723,14.656117,10.606409,17.41302,9.976845,10.976991,8.913204,null,20.241573,2.6223373,10.649911,15.005125,8.702131,20.760548,10.173511,15.823559,21.765846,30.13372,13.71098,12.49623,18.7261,14.42099,24.512094,18.314949,11.590205,28.956581,11.838579,26.47999,29.331034,7.106775,31.191845,30.702785,2.9576929,21.578808,21.142149,21.62666,28.111017,4.0522885,22.160389,26.10925,16.085716,37.086895,10.861132,35.372326,16.137768,23.616125,3.5759573,42.16998,54.61435,48.222893,43.519905,30.280218,12.181661,8.823894,23.77471,23.77348,34.36859,23.89852,8.057475,27.9256,34.564507,25.308039,25.16734,8.794447,44.32398,39.75564,22.455381,35.40048,21.996248,8.415963,11.1004505,35.716484,32.14633,12.382937,12.728974,29.996225,32.403088,8.649081,5.0806513,13.133969,6.717166,26.5631,18.510435,34.54496,30.080893,30.648638,26.436903,15.281661,8.264006,26.725021,21.368473,34.4224,14.13425,30.640583,19.20426,3.39107,32.72364,6.943349,4.111409,15.123335,5.9984508,11.410387,13.280615,16.78746,25.866236,21.084091,2.5047097,21.45488,null,6.069316,22.057648,8.59949,16.627974,15.514817,15.810731,2.966479,9.555651,3.710408,5.961622,20.91857,15.220067,11.713616,16.152687,7.3719277,22.412245,8.038702,5.735909,18.037497,7.5044875,12.359729,28.589146,9.721084,34.1781,8.380953,34.073048,18.086525,9.453539,10.173482,1.9121732,7.786684,22.83475,6.4622765,30.02711,20.622463,36.60649,29.62786,50.598618,4.066831,37.34422,23.890125,45.51044,49.22086,3.723314,39.955414,20.678726,24.520065,20.298395,10.157484,23.419634,15.208289,8.880147,10.892162,24.96176,39.584637,37.728313,7.462444,29.22259,15.434679,16.619476,37.387085,32.27994,41.171265,60.281277,37.366375,7.3994975,9.991366,15.436508,11.248777,5.20333,4.404889,1.1994423,27.997229,16.915049,26.657251,10.2891445,28.816938,9.203637,24.450008,15.124008,18.054417,33.342056,19.486925,25.816236,6.339963,22.707207,4.859812,3.378547,11.369034,5.1339817,14.136819,17.379969,13.874257,1.8949326,25.996103,13.410271,24.460545,17.678402,13.4691725,30.564283,null,23.09074,2.8075328,20.091942,11.551801,7.285069,15.546011,7.451452,3.9616919,17.155993,5.712146,5.3901963,14.78729,5.08935,25.423435,19.291988,25.968307,12.958655,20.60698,22.57971,3.6276917,36.159603,11.667051,17.970957,11.921623,8.305497,14.336957,5.101905,7.774466,26.578094,23.72447,17.755322,6.689056,33.848026,17.100294,25.611612,17.598688,17.195585,6.731036,25.995504,13.228559,34.154068,44.91976,15.031913,30.784567,28.820784,17.600014,8.339236,21.737074,41.55584,55.00639,43.391888,40.07476,8.940087,37.39575,35.25098,11.123771,10.846877,36.283344,43.121418,47.417862,33.042267,42.415062,21.464333,16.459265,16.220634,19.641945,19.953411,23.656462,15.7811165,22.565844,13.030529,2.685105,16.771782,15.712893,6.712063,22.821308,13.810264,32.60675,16.456614,17.691753,23.970152,16.495983,12.3609295,25.966864,3.893145,29.214878,9.6985235,11.227223,5.717945,5.771881,5.905213,12.529073,9.098249,19.75728,10.116114,10.617257,24.663122,6.6632466,15.367841,26.307178,null,22.739445,19.260027,15.666543,16.413855,19.368896,16.704666,18.698053,3.473825,8.615337,7.4923706,20.412205,3.8700097,6.9690666,20.515888,14.420166,11.955976,28.490644,8.918978,14.396938,23.01901,25.599142,25.85223,3.3301888,34.37887,8.054062,28.815224,18.743507,11.861854,35.525852,28.167906,11.936777,16.60341,28.002398,18.34382,35.888027,61.39365,32.426537,8.955696,12.135372,16.30701,38.67832,28.15411,22.439728,34.142742,24.909924,10.393831,30.755445,43.475903,54.165443,54.40118,56.769905,48.301838,40.66828,23.181664,24.203285,29.640774,18.647131,22.451782,17.237345,44.46389,28.261454,18.806173,26.686283,6.3348985,32.37606,22.327032,32.313248,24.884325,19.360924,31.237123,19.93729,9.704247,6.8362617,11.722767,15.857079,13.705716,19.861181,5.4871573,39.230625,13.737561,22.426802,10.204849,26.17932,23.7732,27.890608,20.095552,8.266726,31.749126,14.906455,8.099216,9.029396,9.094835,11.1816225,12.2985325,10.505602,4.9922357,4.103492,10.790803,11.308817,22.861252,null,16.976913,15.918403,9.6761465,20.337067,9.190599,8.984311,9.08861,20.28817,17.96538,26.94381,10.657566,12.630962,19.070103,30.676886,14.55751,11.929985,45.242264,26.061377,25.4938,12.6952305,25.209278,6.2052364,11.134757,20.402166,7.005159,27.553812,14.96793,27.538242,12.617242,21.151724,12.409135,30.240936,9.563726,15.774492,7.556445,15.342476,33.44233,30.916058,18.947865,56.157356,45.236504,12.139795,28.017168,27.364109,10.149513,35.91532,29.75259,17.888498,36.229046,54.433308,48.626396,38.850945,53.39208,63.40109,32.5573,26.188139,35.500164,24.476202,37.86682,27.25887,25.640936,5.907805,19.258451,21.536125,8.721476,19.041805,23.348793,29.545033,32.054333,33.739277,7.1883,5.2137523,12.102988,15.60421,13.386025,23.610376,3.1975765,25.929535,14.079877,26.047613,27.527151,15.316828,25.28913,4.489098,17.73868,13.947617,6.650026,18.115482,3.633066,18.909399,11.761422,8.019865,14.292345,2.5738153,8.69384,2.1845279,15.739696,8.873944,16.199635,7.3954077,null,11.2921715,8.126176,9.176287,7.380977,6.0887704,15.161283,10.989068,4.919625,11.704274,19.595606,3.9568863,16.20395,24.030512,24.251654,12.078923,6.1197915,34.197525,12.446295,25.74121,25.249323,20.471378,29.827448,22.832561,19.76788,8.013085,26.593903,12.113586,9.767684,18.156502,28.396128,12.640472,22.977327,12.68509,41.474163,25.856441,14.373943,25.531342,7.403499,24.619152,20.489115,5.4283667,27.25058,39.770706,17.300112,36.14043,30.452776,18.59281,43.008415,44.81363,23.255178,8.147044,23.72652,47.491356,49.254463,29.25954,20.007631,30.251232,20.726933,23.240324,17.788528,9.835506,39.478554,20.027718,40.140015,42.20543,23.27709,35.678204,17.503672,3.7076447,15.386168,13.455866,14.234839,12.152142,19.350634,3.3921084,17.917269,26.029585,15.811335,23.112513,18.388926,38.579517,11.121942,25.73059,10.369625,28.55917,13.12791,23.568624,22.905201,15.960663,8.1435995,7.4243855,10.921872,10.539871,6.7546415,6.1553226,5.042247,15.933891,16.15543,4.632207,11.976647,null,5.72592,5.6853385,13.185697,12.419315,12.59685,1.533699,19.589626,10.2630005,10.831391,4.279032,18.81225,18.738634,12.0777645,3.5174425,25.571367,2.5768933,28.433977,5.8588943,31.672468,20.786732,23.822857,32.299946,29.494526,12.631772,8.346451,27.239004,15.448428,9.121362,9.326209,30.940884,26.831251,21.69205,24.773989,22.862728,23.297068,9.4288435,14.208035,11.4525795,20.973969,39.701603,35.0001,39.862347,26.832924,21.973114,24.82729,29.698542,16.672821,14.816928,14.630753,8.6694765,6.631074,15.470263,22.498152,34.01157,38.180157,29.29172,6.9280777,23.44345,27.608004,20.087486,36.206802,24.414822,21.2468,2.7589915,17.793312,15.170864,17.988577,5.918173,13.443604,12.631111,18.494701,32.035496,17.48221,17.43282,13.620057,31.469465,6.710242,47.451313,11.674379,31.04087,22.408281,26.119661,16.70068,5.905037,36.43069,12.85964,25.025778,5.3158083,8.406536,7.0303726,14.134537,4.360843,9.877702,12.726052,20.764637,16.01464,13.346243,18.33064,3.1455343,17.007156,null,10.066868,15.939239,14.248192,9.93775,14.640414,3.3967285,2.223897,5.218393,2.5544002,8.076587,8.177083,4.3013344,9.565186,6.67596,14.280294,8.2418,17.185703,30.144241,36.708714,16.119139,11.349464,22.446657,7.163428,18.43989,13.325623,12.1298275,10.175162,26.688646,23.769762,3.4821188,1.4261818,18.80085,20.038315,6.9944944,20.204023,31.132044,26.835552,12.5594,4.3400517,25.164326,44.24007,34.64973,4.6180634,26.53624,18.289974,12.071499,21.935797,7.6251264,37.23045,42.006046,28.493425,13.562928,10.845056,18.146414,26.149605,23.866583,23.977407,18.18676,27.446257,42.029488,41.871258,21.80132,19.275658,18.855782,4.3769007,14.753991,8.460024,6.8855643,11.679388,16.973423,8.806606,11.923445,15.230771,11.146382,11.7260685,9.882382,23.251768,20.894758,2.0705667,5.8949814,19.617609,9.295837,19.127317,10.859104,19.093037,8.192963,17.533066,11.6139555,13.940044,1.6629623,4.648998,9.38549,10.465943,13.611101,5.8912787,5.8505707,12.084417,6.6037617,7.284257,13.471066,null,22.031263,1.2048488,15.065871,6.105843,14.771137,10.983033,19.648666,16.210056,12.210675,9.75213,18.117598,10.862996,14.58908,14.877419,18.811657,12.711966,14.647439,15.624783,23.751345,5.700522,16.16721,9.504784,10.266587,14.6928835,14.787101,22.104538,16.672531,16.65245,8.448798,25.021137,28.409426,15.63467,9.844863,22.030443,18.57561,41.7177,23.475006,15.219756,11.53403,13.623282,16.051294,7.5613933,3.2326684,12.299623,7.5691667,2.7724743,15.244597,3.9074795,28.948238,43.74989,30.508814,5.41132,11.670509,21.936966,21.077007,25.086075,18.293165,23.921066,20.56384,27.666245,48.197758,29.293972,11.043258,13.907479,13.151891,8.774185,7.9422665,10.87615,19.098259,27.364674,14.712566,13.956611,3.823096,13.323938,16.294815,15.715794,5.858866,6.9598966,14.780903,19.4798,13.535502,28.258566,5.266162,18.759068,7.264378,8.61194,7.6391354,2.5059655,14.961999,3.7354023,13.872731,5.252424,7.2811522,8.119375,3.4252126,2.9941201,10.434497,5.32548,19.592367,14.807542,null,14.605893,10.562087,5.6893353,8.090537,1.0261698,8.988712,4.755297,3.9784365,6.0671144,8.122416,2.9879782,0.89478946,16.547335,19.270617,20.7686,20.470558,26.19591,13.143904,27.738272,15.70648,31.611067,24.071741,29.043901,25.81099,27.28701,14.507793,21.94109,12.219769,13.801763,20.481363,24.473183,1.0165926,7.0269475,13.564656,14.560676,16.8297,9.03687,14.713018,10.861463,14.71645,8.938661,9.186416,23.723011,24.012297,8.079895,5.1622725,8.276857,32.9218,34.785717,11.316007,7.8455524,12.404313,18.911188,29.196764,17.699059,13.918356,22.418129,32.056725,25.367762,10.344623,14.385192,17.078117,25.629427,9.518924,5.0086017,12.798851,25.443254,8.385457,11.210614,11.075338,19.270075,31.380873,18.201643,14.9036665,13.581506,17.452059,14.74245,9.522575,31.465902,19.71033,17.675386,16.886545,34.411327,8.202323,17.847437,4.8380675,10.040482,9.163089,4.2114515,11.49276,11.826469,5.2612724,10.55904,6.8086586,11.366865,13.7568,19.22657,5.0454926,2.3788433,12.31287,null,15.925439,8.770285,10.117503,10.105724,6.308496,9.743444,2.120894,4.6233406,2.6868284,2.4833558,9.607764,7.8859777,18.157282,13.987858,17.978235,11.9649725,10.825306,7.696611,8.875216,8.800821,14.4680395,19.000328,7.971275,1.1931248,15.385074,10.425369,6.9529724,12.031348,8.54207,3.3628602,5.253567,8.496556,5.350991,4.9620824,10.804561,17.511988,17.312191,24.418581,16.922611,12.85074,21.805302,8.747011,11.751518,14.432278,18.09111,16.179092,17.190187,17.375214,23.117537,27.490526,31.016972,18.70375,17.408594,24.310867,26.730896,31.974848,14.18834,14.326801,17.896057,16.010153,2.296666,20.964293,16.632023,7.103905,10.089732,11.418139,13.889437,17.518333,7.147915,1.6885635,7.1353846,16.50309,15.526706,5.5873184,7.747983,10.197254,10.905493,14.537734,11.679332,16.18942,20.281162,10.229161,33.616676,15.086821,16.44253,5.0502496,15.362667,4.9108706,12.139027,16.029749,12.414877,4.434884,11.69246,5.199853,4.4175863,12.954792,9.790931,2.8805652,3.6453066,4.8700953,null,11.289861,11.881968,19.045118,5.500824,5.400244,12.279757,7.8251624,11.054836,13.16559,4.6052504,3.951055,10.924304,6.7889295,5.8870516,12.666547,12.510403,24.947678,8.696736,16.013033,15.521108,32.899548,10.108133,22.76119,9.960703,29.071138,24.36316,5.578762,14.315972,18.084282,13.301996,11.013247,8.860743,6.3649487,11.959523,8.076698,4.860684,4.2029066,11.264592,7.490247,17.556108,33.15727,18.407701,13.017505,2.4945056,20.636322,11.703143,4.599263,13.145437,7.640516,2.870074,16.483988,10.002131,27.659494,31.10773,14.243238,3.376668,8.136035,14.712117,24.024298,26.243816,19.205616,9.250545,13.12602,19.622017,15.876162,11.611663,6.927833,5.8190823,11.76885,14.5856285,21.556883,9.490103,16.475166,17.18439,29.059187,12.45536,18.867,16.602814,18.921944,5.592461,14.60758,6.8982296,17.729034,9.371374,24.340132,5.7143645,15.108873,0.5978884,3.3080378,14.566849,11.882485,16.427197,17.434109,6.21801,7.1975904,7.4647646,11.632009,4.806911,11.221425,3.1843557,null,25.621777,5.0154486,19.26651,10.30707,11.178923,3.2302818,11.720146,0.82270753,16.224964,9.387278,10.732321,11.211039,15.021585,15.456566,11.550011,11.237995,30.676685,34.948704,2.9245758,2.208295,16.081604,2.6907036,10.691318,18.848146,18.530941,33.67879,13.031476,18.707129,20.581715,11.14561,14.581863,11.181653,8.859868,7.5220985,8.975438,17.971668,23.562487,20.107054,18.963055,0.58508795,10.476962,23.303263,23.184198,15.043201,27.732805,18.783314,15.166736,8.300976,10.872151,9.3031,14.761905,24.141647,7.7179246,3.1869092,16.52322,27.041502,8.277432,12.183184,26.954512,20.928223,8.145249,28.094692,21.079142,11.842098,5.2856293,8.987751,5.1351204,21.611649,20.00794,9.492292,12.608885,11.571492,0.17175543,17.989248,9.654692,7.31423,13.953409,24.331217,3.4685712,5.54249,21.891964,7.003506,29.646816,11.084366,15.874985,5.1781645,4.0568404,12.156313,4.691579,8.561813,12.291408,10.818491,6.820875,24.131409,14.746821,11.462617,4.8561554,18.651419,5.212076,10.849985,null,2.7265506,15.839774,9.605676,14.814984,3.8078334,11.865055,8.375659,4.6085854,9.249523,13.38297,12.6209755,4.88374,8.03286,16.949629,5.33545,4.6040897,8.151624,7.64059,8.570986,12.79029,9.123566,8.143071,6.056241,9.185325,12.601917,12.086423,8.433626,11.766691,5.971264,3.9531095,11.833054,16.048403,22.235765,17.518475,12.013986,18.55772,9.849488,7.4616003,12.344822,19.946367,6.6634936,4.2857366,9.6536665,24.606493,16.631792,13.5591345,15.96103,2.596442,5.0627203,7.856971,20.94925,22.472523,13.534576,17.124075,2.0641634,12.56492,25.069365,15.0834675,17.714031,10.6702795,21.49884,8.349418,24.807497,17.285362,9.76848,9.41697,9.164376,12.999107,4.0815315,19.44215,12.722084,20.938133,18.911528,8.65382,16.969496,13.45815,6.3137584,9.39366,18.309505,19.143587,8.147386,2.8938382,8.321729,4.102041,12.268187,15.17842,11.75745,20.831942,13.360169,11.080029,16.28099,3.102123,12.725004,8.886293,7.578941,13.196593,2.6669683,18.394659,3.4135933,7.894729,null,8.329141,4.1213965,4.095678,3.8493395,13.048835,15.800424,8.143987,10.885613,13.535078,13.718392,9.695433,7.924602,17.962738,8.778066,11.757103,8.3251505,3.5760462,6.9364557,7.675512,6.212255,12.0895405,14.231654,12.132756,11.22528,12.494315,8.64408,16.94538,7.691689,8.538372,16.944828,5.1055665,9.045569,9.64442,1.638518,11.44246,27.576351,21.651857,4.42765,20.454172,31.998735,14.155479,6.8232746,22.571213,26.356987,1.5396514,2.8236883,6.605608,13.089298,20.193327,11.192129,19.02222,8.811581,14.977996,12.442797,8.014693,13.652815,11.102364,9.560164,2.5640264,2.587331,20.231073,16.463655,21.053,11.797005,8.840927,5.013586,9.857738,24.829714,32.719193,5.6183715,6.073614,18.783833,21.70853,11.8171015,15.946794,17.55097,17.990139,25.002357,0.8613676,6.75522,11.805771,4.276818,9.588336,5.318157,12.609406,8.524732,1.7525246,12.778774,4.6559863,13.757982,6.1480565,12.196617,5.1191425,11.195021,10.140231,13.99192,5.183431,17.979902,3.6887386,17.362381,null,6.0916204,11.272922,4.833751,19.435835,3.4716568,17.801777,14.02841,11.072855,9.441269,8.971506,7.214277,17.462072,3.7769508,15.087048,2.6909666,7.070463,2.3373435,13.658253,19.88171,8.550056,20.220753,14.607727,8.953863,9.2288065,6.5139236,8.815693,11.039626,2.0700793,10.719049,3.5386848,18.943968,12.418919,19.285683,17.88115,7.3608193,15.969005,2.2592013,19.424297,13.809001,13.265058,12.250445,0.52699363,8.888968,32.948395,33.641018,16.221184,14.112483,13.262318,19.230291,8.97479,8.045159,17.773193,25.74163,15.640259,3.1816828,11.662327,15.054306,13.71568,17.747038,5.9933333,7.3904696,5.4204617,10.476032,9.218024,5.5419946,16.297955,6.906199,15.531875,26.0779,15.918237,13.23805,30.816772,15.56051,22.221785,27.538685,7.644165,7.0785747,7.4030538,3.7467892,1.8213559,9.218442,7.1439934,7.961068,12.227604,8.594631,14.582292,12.977422,13.968184,8.841324,3.1977112,5.6823645,11.35188,2.797976,8.229217,6.0015535,8.938037,5.9534144,13.05496,1.6363978,9.714884,null,5.2524247,2.2350154,4.221274,7.5593195,10.091493,11.514098,6.4577236,3.1108253,5.1856155,5.596158,4.3377204,4.3437138,4.8157964,4.258271,7.7130885,10.503799,2.7733314,10.579518,2.6622276,6.933193,11.275644,2.9611876,23.53918,12.189985,18.940813,14.289538,5.375746,19.487154,15.827309,2.342875,10.955176,11.420581,3.592214,4.388258,5.6907973,3.0814497,12.456572,9.148423,7.314245,17.10307,12.840997,7.766014,7.5143104,4.6584144,12.662955,11.529251,9.084014,4.007268,15.386605,20.067139,8.24553,9.342776,16.966793,20.682869,15.224035,4.97353,3.8879054,2.1618118,6.993688,7.304841,9.158851,1.824844,7.32615,11.952363,0.7789977,12.096279,3.525118,17.106386,17.21178,20.275969,9.664249,17.161646,13.177217,4.3104644,10.20435,5.762071,19.756914,10.510257,4.5944953,11.615016,16.099684,3.6313128,8.409958,11.519415,8.150522,4.0422726,20.291597,14.46336,6.3215494,12.132078,12.294292,7.785433,10.7727165,9.952954,14.609935,1.8866991,11.458879,10.5728855,4.8076577,20.806557,null,11.707762,16.978104,7.470081,19.3313,14.407938,16.492405,3.8046649,3.9333544,6.838674,7.214202,7.054758,17.832659,16.588634,13.773179,11.349332,8.742422,10.700688,2.7590551,10.940455,7.7834144,9.9503765,1.2257347,13.985286,7.9909835,2.5803957,13.158326,9.174389,21.636395,16.445005,7.361822,18.134584,15.476356,0.8995583,11.154184,7.211501,19.240734,13.982178,16.283888,15.182334,7.7297163,19.432032,14.4911785,7.4501657,5.0791793,3.5337214,16.986076,24.504198,2.2720847,13.470503,16.893175,12.603076,7.8090806,14.189157,15.628613,8.714313,7.2471476,17.288366,18.832384,2.6184292,14.882678,14.269289,0.40665957,16.880447,21.598246,28.46822,17.192947,11.028048,13.825063,6.9560633,19.4682,26.952442,6.3810534,17.100328,12.728882,5.674103,6.3468714,9.829333,9.24724,6.452263,7.015493,19.93497,2.0571449,15.91718,1.1046389,9.28962,0.9353302,6.5170774,4.732498,9.612333,19.664698,13.953114,3.6264808,3.154119,11.022676,9.3887415,1.1886234,6.2372427,5.9327226,12.125178,12.092982,null,19.0428,7.663469,8.307335,14.451725,8.844203,6.024655,12.334325,21.287329,2.5324008,11.46955,7.291073,9.7046585,2.769213,12.517849,10.557539,8.955104,11.8866415,2.1862786,7.5872736,4.6446366,11.753082,13.08145,6.3821583,15.516201,16.194555,16.682247,17.497517,11.401816,22.048052,12.896243,3.4407587,19.19347,12.598122,7.9318547,4.2693276,8.931649,13.305732,11.944204,3.1120052,9.523601,26.918238,19.126558,15.611407,16.93269,0.6428442,17.81057,18.360674,14.579875,11.529823,7.672631,4.978019,5.7027016,3.1253135,21.11523,24.464487,7.290929,10.671924,18.122787,14.726005,11.921299,15.443307,14.236785,18.333403,9.089441,12.664691,17.182495,3.9098022,22.175318,13.682691,9.253887,5.640468,14.495125,20.350407,14.685548,7.764583,14.302788,2.9556453,19.844633,15.252892,5.995317,17.752676,10.312974,7.580315,17.998428,15.720804,9.570911,15.477415,8.109387,8.10146,7.75402,10.544703,6.919249,3.531817,13.032125,8.785297,8.534219,11.541008,11.23319,9.88787,10.295188,null,9.140156,5.7081428,9.178713,8.135477,10.881065,11.652074,13.758273,13.596633,2.0742996,11.420143,4.797568,6.02842,6.6606445,6.016027,11.45953,12.569922,18.269325,5.140414,11.077731,15.070033,14.162909,6.758637,4.3035874,9.611307,11.468011,16.260551,17.567703,1.817433,9.527014,12.962795,8.683764,14.126471,7.6314054,3.1468143,5.821405,12.133325,2.3554544,16.690496,25.757149,16.850704,13.917198,11.314618,10.506937,8.277077,10.979785,6.945871,17.03921,22.42776,6.318427,8.361189,17.470295,11.580173,5.5501103,13.113121,7.841147,4.308322,24.819048,20.72359,4.0446744,7.4299283,18.28786,25.92891,4.60604,6.949027,10.027145,12.672947,7.740507,6.607235,19.445005,25.22377,6.9510765,15.3316965,10.036981,11.475943,25.516645,11.614487,12.651925,8.263713,5.0624433,4.961552,6.3395796,3.041509,10.445301,11.683593,9.24407,11.606094,11.883879,16.505417,8.041394,16.666029,2.7422488,8.175687,9.40129,4.7953253,16.8175,4.7231345,8.50352,7.654341,12.178737,11.124353,null,10.427574,5.0147195,12.459755,2.9215038,4.973887,14.1273575,8.7156105,16.715897,8.333895,6.809009,7.5545077,0.803018,0.699516,3.1406033,4.945471,6.664176,5.374936,14.514364,14.4728985,12.370294,11.45195,12.054024,16.249823,8.240764,15.638557,14.41939,7.4077396,9.221392,7.4709754,21.696566,16.019547,12.259634,5.263172,6.0126925,6.707366,10.294067,18.018764,20.458284,2.3186336,6.0657816,7.549672,17.020798,11.121575,9.643023,12.698817,9.645777,9.373661,10.134484,17.8886,7.8239317,10.754838,20.747824,4.1661034,6.0442257,4.9056873,13.15519,3.3307452,28.475239,29.205847,9.621937,20.632242,12.591374,9.952596,14.136212,5.5473714,15.82427,16.166836,9.218236,12.114143,18.980377,6.580558,10.864781,11.151363,7.7325315,11.852945,10.03966,16.295166,15.031885,8.54091,8.810167,15.722471,1.7232102,17.708332,17.764744,8.976452,18.311762,7.95152,9.3048115,19.603703,10.294221,17.488197,20.707634,8.655418,1.5990883,12.324006,10.204997,6.8579397,6.8687963,11.873089,8.697801,null,3.1788328,8.661064,9.220882,10.125808,9.150304,13.649707,7.1406755,10.822659,7.000193,4.025461,3.0070999,9.830223,1.5541285,13.890596,3.8356133,17.314713,7.0222206,1.6451074,4.9903765,2.7615256,9.070361,4.3328815,11.010997,4.933563,13.598057,23.720684,25.164839,15.538945,7.889183,2.0223093,11.676576,10.205954,10.963186,18.335686,7.472372,7.7773767,12.643238,13.845901,5.8889904,28.642683,25.393538,7.56333,4.112847,14.2005205,8.156281,8.033577,8.722397,5.7738953,4.241896,17.718744,15.657802,14.558795,3.661532,15.435226,10.851488,6.504844,10.549496,16.370872,13.908911,14.249228,8.763726,13.647679,16.343142,6.7039857,17.353647,2.7545033,15.787863,8.2889185,8.3506365,15.094218,17.459929,13.192122,17.014954,18.97758,5.8533597,9.655527,11.7936125,4.3705497,5.039674,8.310262,25.411293,4.368299,19.475811,8.570424,21.4688,5.9307933,2.8572168,15.762011,11.059315,10.897649,5.4378858,7.459296,5.975113,1.8406749,3.353307,9.616553,3.3110373,5.649116,11.979592,13.893995,null,5.936452,12.718154,9.504824,10.337861,9.285291,16.315704,13.252697,4.3142977,9.409128,10.611385,4.034067,8.707592,24.905584,8.773021,9.0521555,8.6529875,11.589989,3.6250677,6.274358,8.479057,5.1228166,8.9856205,6.956279,16.586237,13.264656,20.80886,16.494946,14.351776,23.324318,10.52649,4.327297,14.089022,6.7106104,10.308025,11.2256775,8.618943,19.703688,16.4882,12.173629,11.670377,6.6580763,10.073799,7.538847,3.9949322,2.88399,6.665035,8.1060705,11.938805,18.04823,6.8881135,9.516819,1.9427048,6.159564,3.774873,5.25837,13.222264,22.496262,14.880154,20.14915,25.367786,34.08255,31.051971,9.004938,3.4637764,14.061424,3.9461818,19.702896,13.420862,14.893807,7.201862,9.268387,11.083899,11.240781,6.2010965,8.905291,4.374578,4.655733,13.324255,26.404913,5.811998,20.62235,4.298585,15.005843,12.708889,19.2978,11.767437,9.519283,14.913769,6.6952834,17.323282,20.189022,10.697763,8.63675,3.92457,10.774787,11.676652,7.8929906,3.9130998,9.387358,10.234842,null,6.7633133,8.850436,11.373794,21.497814,12.285693,5.209363,6.5984936,10.99431,7.1879416,10.829705,1.90535,6.630232,7.1875615,16.035389,13.98279,4.7524304,14.562105,8.230554,18.193802,20.327799,3.683264,6.852385,11.038926,7.558992,2.0445523,1.9872922,12.996782,13.241675,13.669536,12.656254,7.5444775,5.3731027,13.439634,13.446401,7.7695284,4.3393483,13.15355,6.3365088,13.546249,4.4546595,8.25839,14.409652,2.4604163,10.189548,5.284635,15.039062,6.962152,6.057949,6.9241614,17.116644,12.0758095,3.6400979,8.491822,14.16898,9.790413,4.852307,4.300879,13.279228,20.523352,21.616562,20.894741,13.69921,8.351108,8.120164,14.063386,22.246164,4.27534,15.891379,15.987388,13.699637,11.151582,8.882959,12.58475,10.812112,11.49737,16.170687,8.323044,4.163995,1.9767711,4.3485665,3.9059212,17.911673,14.034499,14.027609,17.699457,9.93262,10.283285,8.471024,4.75435,15.579356,16.923878,4.1166844,9.9099,11.235581,12.5616865,15.305873,9.07849,2.311458,5.746613,3.628268,null,7.975914,9.251765,16.068869,4.3881536,4.578952,10.857052,6.350709,3.4191897,8.019932,4.5165606,11.777186,5.829939,12.210788,16.841805,12.613655,10.634737,5.90095,3.4172254,7.233467,11.08931,2.7379537,9.671594,2.456379,13.244446,14.161445,13.874022,9.041045,1.1742738,8.411566,16.647896,15.519239,4.411473,18.992733,6.901528,5.034339,12.883239,14.397107,4.3630767,6.626329,13.487599,8.373116,3.9418292,9.93415,14.059623,2.332505,7.377759,8.576653,11.060508,7.263951,8.166023,5.683671,12.578485,8.942535,7.9032803,19.026453,8.3642435,6.292555,5.5721593,1.1781162,5.9287744,9.240323,5.681339,15.785777,25.400171,8.706133,15.169917,16.023474,7.818947,15.76023,7.0898952,3.5549564,3.7638123,2.290072,11.000485,14.298571,8.949984,7.903732,16.552422,3.895434,10.2596855,4.72347,16.37301,8.621547,10.243471,7.5902095,10.18561,9.9172945,4.9941263,3.826474,4.172766,2.298131,7.692491,8.219796,12.187351,2.5842597,9.227989,3.9597,8.132831,3.157757,16.319443,null,10.284202,7.334458,6.23382,9.355489,11.299799,7.712874,4.0045466,2.6322389,8.5765915,11.083795,9.011755,3.515344,16.592733,3.3824155,14.079826,11.073042,1.1631925,9.905798,3.4102387,7.574128,7.6471653,10.030565,16.191002,9.006265,9.428708,12.497264,8.960534,5.2299337,5.3904724,10.116329,6.008513,1.1613528,12.40911,18.29652,5.300131,11.565588,3.8613367,11.672991,10.362882,3.9326427,13.055599,9.780926,6.878147,16.421492,13.879851,3.5556638,4.5882754,12.093452,12.680635,7.3236465,11.995937,12.867716,11.596443,7.0534015,13.898094,3.0197792,6.704798,8.686933,3.6077921,4.1238117,2.2213962,20.362694,31.538038,17.646933,10.430529,12.574043,7.166506,9.99362,7.466433,5.382968,12.27924,15.34076,9.316547,5.2896385,3.9797091,10.796779,6.5357213,12.799847,5.2915373,9.6163,1.4540085,6.7821045,8.268718,12.516873,8.450875,9.2882805,6.84637,7.142736,12.002928,3.9940238,11.831071,9.578448,2.7842152,11.734956,7.985941,8.294564,11.972072,4.841903,2.1468792,4.2295856,null,6.755221,3.528432,17.119349,11.590891,14.351712,14.062559,3.1714122,7.4218917,2.876412,10.086563,7.3696766,3.1682625,4.2058706,4.8761473,9.211639,7.1066885,5.8571076,7.549548,8.962778,15.441775,19.72748,17.331171,7.060926,11.355817,10.565685,2.4843411,5.8397617,9.143488,5.3551545,1.1721567,9.9586315,6.1560683,18.535898,21.674788,3.7369368,9.61691,11.913274,9.310764,2.0212383,4.9506764,9.237982,15.543475,18.829868,24.003397,8.00237,13.142555,2.5215828,15.184533,6.447688,10.525963,8.290435,11.510039,10.223028,10.610917,17.411009,11.644711,3.0644171,10.4506445,18.615417,14.138225,3.6961308,8.074015,6.86084,12.866559,3.6736908,3.1069968,10.372548,8.184742,3.6208642,2.9571044,12.989912,10.660435,10.13617,7.7462955,6.091651,3.4812129,6.650305,14.215963,10.40849,18.617014,4.328199,10.170807,2.4185972,11.256077,6.7962375,14.546109,7.0795865,14.124998,2.7101328,3.5316827,15.259716,12.225992,4.751417,10.986439,8.64203,6.170183,16.022303,6.8317494,13.397073,3.4404643,null,8.272512,1.8043792,4.124336,5.893303,6.576821,3.1545236,7.513687,7.6027336,3.1124508,6.966497,3.8301208,8.221382,10.308318,8.693183,11.911752,14.4425535,13.77234,16.840372,10.9211445,10.512964,9.585313,13.182324,6.0735936,16.081264,6.813778,7.533563,10.496614,11.519202,12.445642,6.5843587,2.3215451,9.438821,5.5365095,0.42366868,3.6497548,11.737886,19.381536,18.190582,13.112734,20.239721,11.717164,21.039879,36.63935,27.679422,5.7213383,12.830603,25.045107,17.135683,13.134543,19.518652,12.645139,4.120139,13.984923,15.139042,5.1351995,4.382464,9.273769,8.766057,6.428764,3.7794895,9.677415,10.994583,4.0325828,9.916368,8.992607,8.926844,4.478458,1.1643908,3.8943005,2.2868788,5.3068933,8.668967,17.074814,6.561221,8.721914,14.608563,2.1163654,6.871174,12.834479,10.318535,14.777409,5.392623,16.839514,1.8464702,14.470494,1.4147661,7.07529,4.7000117,7.1071463,8.787517,9.242043,7.2527676,3.682792,6.0061336,8.785244,10.576198,4.0796824,6.190313,4.899948,8.62371,null,5.441104,8.200275,9.753151,3.4713857,3.6970274,3.0330112,10.521239,14.860337,7.160762,8.149543,3.3767233,9.214199,9.5720625,7.534668,3.979272,6.6012497,3.8344812,6.733831,8.870392,12.69003,11.135295,2.3387263,7.351253,4.0600185,12.157812,17.079712,19.512106,15.328455,8.937246,6.3524837,4.7622647,14.130556,15.385462,3.0364437,8.380609,1.7678912,13.477609,8.540761,10.967873,15.654393,17.82426,11.119015,5.414803,2.3818421,14.124126,11.995752,8.412903,17.176027,12.270984,3.978731,10.102417,8.900959,9.599507,4.7151523,9.286876,10.689385,5.383632,6.3385267,14.495101,12.1601305,11.851778,7.3666306,24.249277,15.27721,3.0600102,13.967521,13.389042,8.759027,11.983801,16.504469,14.00319,0.56305426,3.5505493,9.486014,10.233044,3.6751568,12.027527,2.3708892,10.423778,2.2477348,5.9607377,10.297983,13.631316,10.689079,1.9519526,8.185713,9.32102,5.1509633,12.492951,10.2589855,4.955476,5.675613,7.4938745,2.808797,7.5531673,6.331396,6.2906585,8.953628,16.043457,5.954367,null,5.0342803,7.387917,0.8037456,5.4306455,2.87899,6.6990986,4.7147274,8.955071,12.662571,11.156929,7.475186,9.356805,2.0205042,10.942835,5.1449327,6.4814243,3.9647336,11.058162,16.690777,7.0431576,15.018004,11.533589,8.970145,9.217595,19.731834,9.961748,3.919238,10.243724,5.2107444,11.355332,20.506996,9.790437,5.407837,4.1119995,4.001193,8.596389,4.720822,12.870118,0.5492542,2.2748404,8.285233,13.448582,9.964694,11.954651,5.7306576,7.8670363,14.919764,13.904482,9.818122,7.119973,12.909027,17.44368,4.4721675,10.090257,12.212201,9.637777,8.619491,5.8957596,7.056986,9.619448,7.1702585,8.900916,4.5327272,11.403543,2.0833948,10.207249,5.823475,8.60638,2.1940713,19.427505,12.252519,6.9261765,7.2026534,9.7389555,9.451528,8.67558,19.072721,17.901117,4.2556167,10.591428,7.9441085,10.434172,19.936699,13.283654,10.533903,1.2895951,5.051498,7.9197984,7.042672,6.2860746,11.407289,12.890508,8.007664,10.486542,11.029599,5.91502,1.3887025,3.9036386,3.6536257,7.718324,null,18.420784,8.723988,5.3003697,7.4427094,6.6973357,7.5737615,9.336157,2.8887491,16.09026,10.452132,4.2227526,4.560141,10.580201,16.820436,3.2927928,12.02199,5.7923994,5.005131,16.670235,9.74461,4.251749,8.11065,11.471877,7.8316135,5.272616,11.0363035,6.9563565,1.2058693,4.0905776,2.829642,5.303011,7.2015023,5.1116047,10.588069,19.516493,7.5215507,9.123031,3.5475957,10.545108,19.843946,6.211988,6.477988,2.7783308,10.0716715,9.299784,16.094376,14.508747,3.4728067,10.115987,19.759405,12.511398,15.499573,28.300135,20.900854,7.487181,15.295345,7.3581367,8.345137,18.016306,8.964575,5.8967113,6.9738383,11.98405,16.040321,15.165372,6.232749,1.7594074,2.9333534,8.915062,13.5382805,23.897902,19.504314,11.590921,17.656097,6.378907,13.572042,16.46531,5.2466903,11.595727,4.701495,12.242332,3.4867842,16.439592,8.923779,5.97117,9.248432,6.9832625,6.7576456,1.9272331,4.605299,6.616826,7.433685,12.574916,14.643428,4.5773993,6.264687,2.7513719,9.722984,11.7567215,11.169818,null,9.030642,3.6938584,9.564288,4.0089927,6.5166774,6.15053,8.764007,3.9787796,14.588497,10.868805,9.685437,6.538929,9.911917,12.328648,13.506263,7.722597,11.453889,7.8386617,5.9846816,1.673541,11.984928,2.4181192,16.022938,13.982413,15.009222,5.6932845,17.312265,6.3878365,3.4808183,10.511161,17.63768,12.009131,6.826771,7.383308,11.375049,12.028241,6.949132,1.3358865,9.414999,16.503065,15.4342985,8.160309,18.314547,16.53606,9.0739355,13.351269,15.565159,15.932872,10.920691,20.48798,23.697384,17.104496,6.1220846,14.39722,11.937853,13.135931,11.689854,4.0531645,6.496593,3.3636558,9.792451,8.880345,8.997235,7.3161235,13.527044,3.7960405,6.3416038,9.644755,4.8360534,7.0610037,2.2337258,6.7778487,7.5564766,11.809482,13.491378,6.0858364,3.9438922,7.6703167,7.6954017,8.563669,4.649026,9.706718,9.986216,10.536504,2.562451,13.642418,11.780134,10.681607,7.6549883,10.679171,4.031967,11.730976,6.761617,3.2715092,9.031825,8.110331,6.0676007,7.060093,9.849958,6.676033,null,15.017597,6.534186,11.75595,15.358843,21.833881,1.7988515,8.700033,2.4813845,5.8783264,5.7761254,9.218649,12.919305,9.739317,19.103197,10.568295,2.453201,4.656407,12.177711,12.014438,7.8240743,19.462715,10.452279,17.429644,10.993756,5.9902563,15.5691595,14.091388,11.439714,6.949092,5.581331,3.6665413,14.16823,16.22172,7.1821837,4.489059,4.8069835,7.2267675,4.445713,9.660792,11.587106,11.050323,6.8597736,8.472636,7.91786,8.268706,4.446587,19.50298,15.552289,8.271843,3.9066901,20.284767,13.616766,8.265366,10.44374,25.270422,19.081373,6.2098503,9.445929,3.3034017,0.5111026,7.7328987,7.823268,4.8625903,6.7917137,5.8602147,12.879736,15.948732,8.992981,7.9412074,1.7771655,6.0191865,6.1314273,14.242779,5.2209997,16.289043,16.274832,11.304942,6.3154783,17.428679,10.558324,17.778362,13.233183,8.907653,5.57086,6.590671,10.682546,17.46054,17.599531,7.87968,9.438488,7.887597,10.148924,7.0033374,12.975135,2.20285,8.123697,7.1683607,9.298205,5.8743973,6.7652264,null,5.134825,13.952526,8.667474,4.4112725,13.634399,2.5159822,15.831759,9.039814,7.490777,2.0222247,9.368797,7.132923,7.764873,10.895671,10.185741,5.7649007,11.210475,11.132621,6.950797,7.8190575,18.71253,13.844976,7.390638,9.512933,18.84686,13.334751,12.563765,6.726186,16.506643,21.149044,18.523165,9.444145,4.983514,11.90169,13.895591,8.543228,6.278571,8.063404,10.045141,9.911785,13.181275,9.275543,3.818336,8.625268,16.599754,10.717829,12.804617,17.636925,17.165358,9.615762,14.038553,20.185333,8.504483,5.286976,13.779251,17.04419,5.3190155,4.6358743,8.851148,8.360021,8.50256,6.1869173,14.794633,17.053307,9.698702,19.052748,5.2372985,12.8128195,15.2464285,14.776625,2.4067872,8.581335,5.1589093,14.617656,15.757741,1.544326,13.4713335,9.640833,1.4218495,3.1195948,6.493224,16.174059,12.528236,13.809623,13.504566,8.226723,7.4591393,0.788761,10.702064,10.201307,7.8618155,3.44015,7.3573394,4.577722,2.0377085,5.943669,5.2842765,8.36343,4.7254124,17.528177,null,3.6274226,15.489004,12.20191,14.615606,16.30505,6.718233,10.319104,7.278644,7.591752,11.835692,6.0139914,2.2474463,3.0618274,3.7179708,7.7947226,3.7867033,7.226448,12.192011,11.864339,11.414769,3.235651,16.41049,11.887034,4.018958,1.7352217,8.041562,13.0503645,6.4867606,7.7515693,12.994093,14.0495825,4.084415,8.410976,11.012614,20.670858,7.2737107,12.486268,1.5070763,15.103364,4.1148353,8.647197,1.3602778,8.1041565,13.376894,6.2025747,6.7195306,16.78831,11.129105,8.086417,13.386206,22.357904,20.742294,12.296902,15.144145,10.266306,7.090858,15.111426,13.503281,4.495565,14.882588,6.983462,10.360142,15.974172,2.061806,6.880034,3.5434265,5.8864336,8.853108,0.7371832,13.545718,12.211168,3.171526,5.656807,8.254323,15.840485,15.825652,11.24039,11.368825,3.9296303,10.8275,19.959227,9.023453,14.198893,1.1604633,5.8418374,2.351979,7.581806,9.466897,5.2568135,7.297166,1.4993047,6.914136,3.2290123,12.557913,6.7676334,7.0600734,1.6188575,4.283216,7.2865987,3.5789275,null,11.757545,12.3693495,7.2754254,9.610698,9.244341,4.7561727,3.007235,6.9805875,1.5520242,3.4732015,5.2240396,7.0963016,1.2792497,1.6500331,6.9319787,14.600278,15.759931,7.4752545,14.49886,4.5661416,3.9041235,8.108539,17.46335,3.5942533,19.799807,17.501833,6.3015924,21.42152,16.970484,3.3744147,4.5257287,3.6027422,3.9200146,0.27352285,1.6454575,12.915841,13.661999,11.238978,17.442076,13.621141,2.7414434,17.187826,17.190762,8.904974,5.3378634,1.6653463,7.121198,10.937468,5.6878085,5.05018,9.789274,15.504342,9.865822,11.293986,10.433873,6.4350147,4.9801726,11.172458,11.059868,11.436913,11.514535,13.94702,8.446577,9.271273,8.697165,12.503396,17.606594,10.448009,9.222833,2.5878804,7.768307,8.1525545,17.468744,4.058719,9.2727585,2.8296463,2.6890378,11.266863,6.1533465,10.426309,5.3512945,12.294485,5.025231,3.1758537,5.953053,5.2027016,9.3570385,5.1522818,11.371532,12.223084,7.8140078,7.2464104,12.117618,12.742422,1.8872046,5.6043487,9.946838,9.400613,7.7784634,4.6233406,null,10.345742,5.7544947,13.107132,7.840119,5.378752,4.1071343,6.7042117,6.6820674,5.410067,2.6056633,14.09141,9.470551,13.066441,7.7454185,1.7993035,7.341126,10.643512,17.529476,9.080412,10.51966,1.5533003,6.3198347,11.691416,2.194529,2.7119858,10.474332,13.308082,18.37219,14.871732,7.5908465,8.60175,16.27571,11.070625,11.141487,23.026712,4.177709,27.70216,13.919738,5.4055247,4.1447654,5.11328,9.747633,9.963678,0.43556875,14.642179,11.584233,4.043329,7.031432,4.5138426,3.82995,3.9747016,4.826043,6.0601215,9.872083,8.133509,12.161323,8.214423,12.490585,17.076193,8.775158,10.760996,3.6843946,15.174694,2.3003006,11.605591,3.8060193,8.494929,14.533386,1.4703354,3.9932463,12.564239,16.389675,6.5995574,10.293472,9.758108,0.6472882,6.170383,2.5050354,20.433426,18.15798,8.578698,15.50638,9.719369,3.4111285,14.235962,11.290386,7.141861,8.591762,16.83069,10.223301,5.9768844,8.8666725,12.965334,14.7386875,8.571665,12.663348,7.326081,1.5683371,7.7779746,8.601513,null,4.0084105,10.259332,8.326274,9.833153,3.6015158,14.35597,2.5754542,5.3302,10.119843,5.400165,3.190227,5.1249523,3.9272387,7.152375,0.8395375,5.0550585,4.258834,11.143281,11.684426,10.254319,13.302471,8.129066,2.0892637,11.23087,13.84017,10.471176,5.4399357,1.330008,11.620906,10.377416,4.287762,2.2732198,5.367262,18.449606,16.556448,3.103365,4.316285,11.747048,5.59156,2.4549959,5.3685946,11.887868,11.903427,3.517938,8.368496,1.651613,2.542704,1.0463251,5.386398,1.3753974,7.3631043,11.93697,4.9621887,5.9619308,3.392067,8.041001,4.23611,10.336199,5.4184685,11.654818,7.913176,14.45054,9.103369,7.324529,6.5547833,12.703741,9.807527,17.326515,9.394622,4.560353,10.128376,9.803739,7.3157816,7.6229806,3.490034,8.719507,6.3206697,5.374757,8.923669,5.4176536,4.4110184,5.332609,0.84172463,5.6826963,10.862754,9.815012,5.7688837,6.6791353,4.502808,6.214627,9.39982,11.093635,10.707166,14.447704,2.6219013,8.988783,2.916359,5.0765147,8.187223,11.16081,null,6.5434437,6.4809594,7.565198,3.3191466,6.5553775,14.188671,8.547512,7.269334,3.489336,16.87394,12.456843,1.2476916,5.7685757,11.465921,7.846014,4.978962,2.7096894,8.556577,4.398484,2.9113636,5.648807,3.8509033,11.408597,3.7901843,8.612821,8.983218,3.0409563,10.502465,9.926284,8.396607,24.09556,12.737788,13.993662,13.666208,13.016482,12.1680975,8.73104,8.467365,13.546609,3.2577286,10.079447,4.724927,12.789714,9.003309,5.1795154,4.8594213,6.283698,2.9080436,13.290788,18.876486,4.0177197,10.48924,9.379198,10.763111,8.169444,5.1976213,5.20431,5.54761,6.136556,17.060287,11.456936,8.510105,3.672086,9.329801,16.46799,11.77853,12.205581,7.6054215,6.679352,9.035442,12.540989,15.702971,10.705199,11.669201,15.018726,10.873742,11.507026,8.9524975,12.587769,17.469944,5.528123,14.454267,9.082866,8.029483,13.044176,14.393197,11.833456,15.986851,7.6487207,15.539598,5.4642754,9.6324215,5.5120006,13.792298,5.255633,2.6355574,2.1266067,2.8594182,11.841155,15.807943,null],"type":"scatter","name":"|S(t)|","hovertemplate":"(%{x:.4f} ms, %{y:.3f} a.u.)","x":[16.394000000000002,16.404000000000003,16.414,16.424000000000003,16.434,16.444000000000003,16.454,16.464000000000002,16.474,16.484,16.494000000000003,16.504,16.514000000000003,16.524,16.534000000000002,16.544,16.554000000000002,16.564000000000004,16.574,16.584000000000003,16.594,16.604000000000003,16.614,16.624000000000002,16.634,16.644000000000002,16.654000000000003,16.664,16.674000000000003,16.684,16.694000000000003,16.704,16.714000000000002,16.724,16.734,16.744000000000003,16.754,16.764000000000003,16.774,16.784000000000002,16.794,16.804000000000002,16.814000000000004,16.824,16.834000000000003,16.844,16.854000000000003,16.864,16.874000000000002,16.884,16.894000000000002,16.904000000000003,16.914,16.924000000000003,16.934,16.944000000000003,16.954,16.964000000000002,16.974,16.984,16.994000000000003,17.004,17.014000000000003,17.024,17.034000000000002,17.044,17.054000000000002,17.064000000000004,17.074,17.084000000000003,17.094,17.104000000000003,17.114,17.124000000000002,17.134,17.144000000000002,17.154000000000003,17.164,17.174000000000003,17.184,17.194000000000003,17.204,17.214000000000002,17.224,17.234,17.244000000000003,17.254,17.264000000000003,17.274,17.284000000000002,17.294,17.304000000000002,17.314000000000004,17.324,17.334000000000003,17.344,17.354000000000003,17.364,17.374000000000002,17.384,17.384,18.074,18.084000000000003,18.094,18.104000000000003,18.114,18.124000000000002,18.134,18.144000000000002,18.154,18.164,18.174000000000003,18.184,18.194000000000003,18.204,18.214000000000002,18.224,18.234,18.244000000000003,18.254,18.264000000000003,18.274,18.284000000000002,18.294,18.304000000000002,18.314,18.324,18.334000000000003,18.344,18.354000000000003,18.364,18.374000000000002,18.384,18.394000000000002,18.404,18.414,18.424000000000003,18.434,18.444000000000003,18.454,18.464000000000002,18.474,18.484,18.494000000000003,18.504,18.514000000000003,18.524,18.534000000000002,18.544,18.554000000000002,18.564,18.574,18.584000000000003,18.594,18.604000000000003,18.614,18.624000000000002,18.634,18.644000000000002,18.654,18.664,18.674000000000003,18.684,18.694000000000003,18.704,18.714000000000002,18.724,18.734,18.744000000000003,18.754,18.764000000000003,18.774,18.784000000000002,18.794,18.804000000000002,18.814,18.824,18.834000000000003,18.844,18.854000000000003,18.864,18.874000000000002,18.884,18.894000000000002,18.904,18.914,18.924000000000003,18.934,18.944000000000003,18.954,18.964000000000002,18.974,18.984,18.994000000000003,19.004,19.014000000000003,19.024,19.034000000000002,19.044,19.054000000000002,19.064,19.064,19.754,19.764000000000003,19.774,19.784000000000002,19.794,19.804000000000002,19.814,19.824,19.834,19.844,19.854000000000003,19.864,19.874000000000002,19.884,19.894000000000002,19.904,19.914,19.924000000000003,19.934,19.944000000000003,19.954,19.964000000000002,19.974,19.984,19.994,20.004,20.014000000000003,20.024,20.034000000000002,20.044,20.054000000000002,20.064,20.074,20.084,20.094,20.104000000000003,20.114,20.124000000000002,20.134,20.144000000000002,20.154,20.164,20.174000000000003,20.184,20.194000000000003,20.204,20.214000000000002,20.224,20.234,20.244,20.254,20.264000000000003,20.274,20.284000000000002,20.294,20.304000000000002,20.314,20.324,20.334,20.344,20.354000000000003,20.364,20.374000000000002,20.384,20.394000000000002,20.404,20.414,20.424000000000003,20.434,20.444000000000003,20.454,20.464000000000002,20.474,20.484,20.494,20.504,20.514000000000003,20.524,20.534000000000002,20.544,20.554000000000002,20.564,20.574,20.584,20.594,20.604000000000003,20.614,20.624000000000002,20.634,20.644000000000002,20.654,20.664,20.674000000000003,20.684,20.694000000000003,20.704,20.714000000000002,20.724,20.734,20.744,20.744,21.434,21.444000000000003,21.454,21.464000000000002,21.474,21.484,21.494,21.504,21.514,21.524,21.534000000000002,21.544,21.554000000000002,21.564,21.574,21.584,21.594,21.604000000000003,21.614,21.624000000000002,21.634,21.644000000000002,21.654,21.664,21.674,21.684,21.694000000000003,21.704,21.714000000000002,21.724,21.734,21.744,21.754,21.764,21.774,21.784000000000002,21.794,21.804000000000002,21.814,21.824,21.834,21.844,21.854000000000003,21.864,21.874000000000002,21.884,21.894000000000002,21.904,21.914,21.924,21.934,21.944000000000003,21.954,21.964000000000002,21.974,21.984,21.994,22.004,22.014,22.024,22.034000000000002,22.044,22.054000000000002,22.064,22.074,22.084,22.094,22.104000000000003,22.114,22.124000000000002,22.134,22.144000000000002,22.154,22.164,22.174,22.184,22.194000000000003,22.204,22.214000000000002,22.224,22.234,22.244,22.254,22.264,22.274,22.284000000000002,22.294,22.304000000000002,22.314,22.324,22.334,22.344,22.354000000000003,22.364,22.374000000000002,22.384,22.394000000000002,22.404,22.414,22.424,22.424,23.114,23.124000000000002,23.134,23.144000000000002,23.154,23.164,23.174,23.184,23.194,23.204,23.214000000000002,23.224,23.234,23.244,23.254,23.264,23.274,23.284000000000002,23.294,23.304000000000002,23.314,23.324,23.334,23.344,23.354,23.364,23.374000000000002,23.384,23.394000000000002,23.404,23.414,23.424,23.434,23.444,23.454,23.464000000000002,23.474,23.484,23.494,23.504,23.514,23.524,23.534000000000002,23.544,23.554000000000002,23.564,23.574,23.584,23.594,23.604,23.614,23.624000000000002,23.634,23.644000000000002,23.654,23.664,23.674,23.684,23.694,23.704,23.714000000000002,23.724,23.734,23.744,23.754,23.764,23.774,23.784000000000002,23.794,23.804000000000002,23.814,23.824,23.834,23.844,23.854,23.864,23.874000000000002,23.884,23.894000000000002,23.904,23.914,23.924,23.934,23.944,23.954,23.964000000000002,23.974,23.984,23.994,24.004,24.014,24.024,24.034000000000002,24.044,24.054000000000002,24.064,24.074,24.084,24.094,24.104,24.104,24.794,24.804000000000002,24.814,24.824,24.834,24.844,24.854,24.864,24.874,24.884,24.894000000000002,24.904,24.914,24.924,24.934,24.944,24.954,24.964000000000002,24.974,24.984,24.994,25.004,25.014,25.024,25.034,25.044,25.054000000000002,25.064,25.074,25.084,25.094,25.104,25.114,25.124,25.134,25.144000000000002,25.154,25.164,25.174,25.184,25.194,25.204,25.214000000000002,25.224,25.234,25.244,25.254,25.264,25.274,25.284,25.294,25.304000000000002,25.314,25.324,25.334,25.344,25.354,25.364,25.374,25.384,25.394000000000002,25.404,25.414,25.424,25.434,25.444,25.454,25.464000000000002,25.474,25.484,25.494,25.504,25.514,25.524,25.534,25.544,25.554000000000002,25.564,25.574,25.584,25.594,25.604,25.614,25.624,25.634,25.644000000000002,25.654,25.664,25.674,25.684,25.694,25.704,25.714000000000002,25.724,25.734,25.744,25.754,25.764,25.774,25.784,25.784,26.474,26.484,26.494,26.504,26.514,26.524,26.534,26.544,26.554,26.564,26.574,26.584,26.594,26.604,26.614,26.624,26.634,26.644000000000002,26.654,26.664,26.674,26.684,26.694,26.704,26.714,26.724,26.734,26.744,26.754,26.764,26.774,26.784,26.794,26.804,26.814,26.824,26.834,26.844,26.854,26.864,26.874,26.884,26.894000000000002,26.904,26.914,26.924,26.934,26.944,26.954,26.964,26.974,26.984,26.994,27.004,27.014,27.024,27.034,27.044,27.054,27.064,27.074,27.084,27.094,27.104,27.114,27.124,27.134,27.144000000000002,27.154,27.164,27.174,27.184,27.194,27.204,27.214,27.224,27.234,27.244,27.254,27.264,27.274,27.284,27.294,27.304,27.314,27.324,27.334,27.344,27.354,27.364,27.374,27.384,27.394000000000002,27.404,27.414,27.424,27.434,27.444,27.454,27.464,27.464,28.154,28.164,28.174,28.184,28.194,28.204,28.214,28.224,28.233999999999998,28.244,28.254,28.264,28.274,28.284,28.294,28.304,28.314,28.324,28.334,28.344,28.354,28.364,28.374,28.384,28.394,28.404,28.414,28.424,28.434,28.444,28.454,28.464,28.474,28.483999999999998,28.494,28.504,28.514,28.524,28.534,28.544,28.554,28.564,28.574,28.584,28.594,28.604,28.614,28.624,28.634,28.644,28.654,28.664,28.674,28.684,28.694,28.704,28.714,28.724,28.733999999999998,28.744,28.754,28.764,28.774,28.784,28.794,28.804,28.814,28.824,28.834,28.844,28.854,28.864,28.874,28.884,28.894,28.904,28.914,28.924,28.934,28.944,28.954,28.964,28.974,28.983999999999998,28.994,29.004,29.014,29.024,29.034,29.044,29.054,29.064,29.074,29.084,29.094,29.104,29.114,29.124,29.134,29.144,29.144,29.834,29.844,29.854,29.864,29.874,29.884,29.894,29.904,29.913999999999998,29.924,29.934,29.944,29.954,29.964,29.974,29.983999999999998,29.994,30.004,30.014,30.024,30.034,30.044,30.054,30.064,30.073999999999998,30.084,30.094,30.104,30.114,30.124,30.134,30.144,30.154,30.163999999999998,30.174,30.184,30.194,30.204,30.214,30.224,30.233999999999998,30.244,30.254,30.264,30.274,30.284,30.294,30.304,30.314,30.323999999999998,30.334,30.344,30.354,30.364,30.374,30.384,30.394,30.404,30.413999999999998,30.424,30.434,30.444,30.454,30.464,30.474,30.483999999999998,30.494,30.504,30.514,30.524,30.534,30.544,30.554,30.564,30.573999999999998,30.584,30.594,30.604,30.614,30.624,30.634,30.644,30.654,30.663999999999998,30.674,30.684,30.694,30.704,30.714,30.724,30.733999999999998,30.744,30.754,30.764,30.774,30.784,30.794,30.804,30.814,30.823999999999998,30.823999999999998,31.514,31.524,31.534,31.544,31.554,31.564,31.573999999999998,31.584,31.593999999999998,31.604,31.614,31.624,31.634,31.644,31.654,31.663999999999998,31.674,31.684,31.694,31.704,31.714,31.724,31.733999999999998,31.744,31.753999999999998,31.764,31.774,31.784,31.794,31.804,31.814,31.823999999999998,31.834,31.843999999999998,31.854,31.864,31.874,31.884,31.894,31.904,31.913999999999998,31.924,31.934,31.944,31.954,31.964,31.974,31.983999999999998,31.994,32.004,32.013999999999996,32.024,32.034,32.044,32.054,32.064,32.074,32.083999999999996,32.094,32.104,32.114,32.124,32.134,32.144,32.153999999999996,32.164,32.174,32.184,32.194,32.204,32.214,32.224,32.234,32.244,32.254,32.263999999999996,32.274,32.284,32.294,32.304,32.314,32.324,32.333999999999996,32.344,32.354,32.364,32.374,32.384,32.394,32.403999999999996,32.414,32.424,32.434,32.444,32.454,32.464,32.474,32.484,32.494,32.504,32.504,33.194,33.204,33.214000000000006,33.224000000000004,33.234,33.244,33.254000000000005,33.264,33.274,33.284000000000006,33.294000000000004,33.304,33.314,33.324000000000005,33.334,33.344,33.354,33.364000000000004,33.374,33.384,33.394000000000005,33.404,33.414,33.424,33.434000000000005,33.444,33.454,33.464000000000006,33.474000000000004,33.484,33.494,33.504000000000005,33.514,33.524,33.534000000000006,33.544000000000004,33.554,33.564,33.574000000000005,33.584,33.594,33.604,33.614000000000004,33.624,33.634,33.644000000000005,33.654,33.664,33.674,33.684000000000005,33.694,33.704,33.714000000000006,33.724000000000004,33.734,33.744,33.754000000000005,33.764,33.774,33.784000000000006,33.794000000000004,33.804,33.814,33.824000000000005,33.834,33.844,33.854,33.864000000000004,33.874,33.884,33.894000000000005,33.904,33.914,33.924,33.934000000000005,33.944,33.954,33.964000000000006,33.974000000000004,33.984,33.994,34.004000000000005,34.014,34.024,34.034000000000006,34.044000000000004,34.054,34.064,34.074000000000005,34.084,34.094,34.104,34.114000000000004,34.124,34.134,34.144000000000005,34.154,34.164,34.174,34.184000000000005,34.184000000000005,34.874,34.884,34.894000000000005,34.904,34.914,34.924,34.934000000000005,34.944,34.954,34.964000000000006,34.974000000000004,34.984,34.994,35.004000000000005,35.014,35.024,35.034,35.044000000000004,35.054,35.064,35.074000000000005,35.084,35.094,35.104,35.114000000000004,35.124,35.134,35.144000000000005,35.154,35.164,35.174,35.184000000000005,35.194,35.204,35.214000000000006,35.224000000000004,35.234,35.244,35.254000000000005,35.264,35.274,35.284,35.294000000000004,35.304,35.314,35.324000000000005,35.334,35.344,35.354,35.364000000000004,35.374,35.384,35.394000000000005,35.404,35.414,35.424,35.434000000000005,35.444,35.454,35.464000000000006,35.474000000000004,35.484,35.494,35.504000000000005,35.514,35.524,35.534,35.544000000000004,35.554,35.564,35.574000000000005,35.584,35.594,35.604,35.614000000000004,35.624,35.634,35.644000000000005,35.654,35.664,35.674,35.684000000000005,35.694,35.704,35.714000000000006,35.724000000000004,35.734,35.744,35.754000000000005,35.764,35.774,35.784,35.794000000000004,35.804,35.814,35.824000000000005,35.834,35.844,35.854,35.864000000000004,35.864000000000004,36.554,36.564,36.574000000000005,36.584,36.594,36.604,36.614000000000004,36.624,36.634,36.644000000000005,36.654,36.664,36.674,36.684000000000005,36.694,36.704,36.714,36.724000000000004,36.734,36.744,36.754000000000005,36.764,36.774,36.784,36.794000000000004,36.804,36.814,36.824000000000005,36.834,36.844,36.854,36.864000000000004,36.874,36.884,36.894000000000005,36.904,36.914,36.924,36.934000000000005,36.944,36.954,36.964,36.974000000000004,36.984,36.994,37.004000000000005,37.014,37.024,37.034,37.044000000000004,37.054,37.064,37.074000000000005,37.084,37.094,37.104,37.114000000000004,37.124,37.134,37.144000000000005,37.154,37.164,37.174,37.184000000000005,37.194,37.204,37.214,37.224000000000004,37.234,37.244,37.254000000000005,37.264,37.274,37.284,37.294000000000004,37.304,37.314,37.324000000000005,37.334,37.344,37.354,37.364000000000004,37.374,37.384,37.394000000000005,37.404,37.414,37.424,37.434000000000005,37.444,37.454,37.464,37.474000000000004,37.484,37.494,37.504000000000005,37.514,37.524,37.534,37.544000000000004,37.544000000000004,38.234,38.244,38.254000000000005,38.264,38.274,38.284,38.294000000000004,38.304,38.314,38.324000000000005,38.334,38.344,38.354,38.364000000000004,38.374,38.384,38.394,38.404,38.414,38.424,38.434000000000005,38.444,38.454,38.464,38.474000000000004,38.484,38.494,38.504000000000005,38.514,38.524,38.534,38.544000000000004,38.554,38.564,38.574000000000005,38.584,38.594,38.604,38.614000000000004,38.624,38.634,38.644,38.654,38.664,38.674,38.684000000000005,38.694,38.704,38.714,38.724000000000004,38.734,38.744,38.754000000000005,38.764,38.774,38.784,38.794000000000004,38.804,38.814,38.824000000000005,38.834,38.844,38.854,38.864000000000004,38.874,38.884,38.894,38.904,38.914,38.924,38.934000000000005,38.944,38.954,38.964,38.974000000000004,38.984,38.994,39.004000000000005,39.014,39.024,39.034,39.044000000000004,39.054,39.064,39.074000000000005,39.084,39.094,39.104,39.114000000000004,39.124,39.134,39.144,39.154,39.164,39.174,39.184000000000005,39.194,39.204,39.214,39.224000000000004,39.224000000000004,39.914,39.924,39.934000000000005,39.944,39.954,39.964,39.974000000000004,39.984,39.994,40.004000000000005,40.014,40.024,40.034,40.044000000000004,40.054,40.064,40.074,40.084,40.094,40.104,40.114000000000004,40.124,40.134,40.144,40.154,40.164,40.174,40.184000000000005,40.194,40.204,40.214,40.224000000000004,40.234,40.244,40.254000000000005,40.264,40.274,40.284,40.294000000000004,40.304,40.314,40.324,40.334,40.344,40.354,40.364000000000004,40.374,40.384,40.394,40.404,40.414,40.424,40.434000000000005,40.444,40.454,40.464,40.474000000000004,40.484,40.494,40.504000000000005,40.514,40.524,40.534,40.544000000000004,40.554,40.564,40.574,40.584,40.594,40.604,40.614000000000004,40.624,40.634,40.644,40.654,40.664,40.674,40.684000000000005,40.694,40.704,40.714,40.724000000000004,40.734,40.744,40.754000000000005,40.764,40.774,40.784,40.794000000000004,40.804,40.814,40.824,40.834,40.844,40.854,40.864000000000004,40.874,40.884,40.894,40.904,40.904,41.594,41.604,41.614000000000004,41.624,41.634,41.644,41.654,41.664,41.674,41.684000000000005,41.694,41.704,41.714,41.724000000000004,41.734,41.744,41.754,41.764,41.774,41.784,41.794000000000004,41.804,41.814,41.824,41.834,41.844,41.854,41.864000000000004,41.874,41.884,41.894,41.904,41.914,41.924,41.934000000000005,41.944,41.954,41.964,41.974000000000004,41.984,41.994,42.004,42.014,42.024,42.034,42.044000000000004,42.054,42.064,42.074,42.084,42.094,42.104,42.114000000000004,42.124,42.134,42.144,42.154,42.164,42.174,42.184000000000005,42.194,42.204,42.214,42.224000000000004,42.234,42.244,42.254,42.264,42.274,42.284,42.294000000000004,42.304,42.314,42.324,42.334,42.344,42.354,42.364000000000004,42.374,42.384,42.394,42.404,42.414,42.424,42.434000000000005,42.444,42.454,42.464,42.474000000000004,42.484,42.494,42.504,42.514,42.524,42.534,42.544000000000004,42.554,42.564,42.574,42.584,42.584,43.274,43.284,43.294000000000004,43.304,43.314,43.324,43.334,43.344,43.354,43.364000000000004,43.374,43.384,43.394,43.404,43.414,43.424,43.434,43.444,43.454,43.464,43.474000000000004,43.484,43.494,43.504,43.514,43.524,43.534,43.544000000000004,43.554,43.564,43.574,43.584,43.594,43.604,43.614000000000004,43.624,43.634,43.644,43.654,43.664,43.674,43.684,43.694,43.704,43.714,43.724000000000004,43.734,43.744,43.754,43.764,43.774,43.784,43.794000000000004,43.804,43.814,43.824,43.834,43.844,43.854,43.864000000000004,43.874,43.884,43.894,43.904,43.914,43.924,43.934,43.944,43.954,43.964,43.974000000000004,43.984,43.994,44.004,44.014,44.024,44.034,44.044000000000004,44.054,44.064,44.074,44.084,44.094,44.104,44.114000000000004,44.124,44.134,44.144,44.154,44.164,44.174,44.184,44.194,44.204,44.214,44.224000000000004,44.234,44.244,44.254,44.264,44.264,44.954,44.964,44.974000000000004,44.984,44.994,45.004,45.014,45.024,45.034,45.044000000000004,45.054,45.064,45.074,45.084,45.094,45.104,45.114,45.124,45.134,45.144,45.154,45.164,45.174,45.184,45.194,45.204,45.214,45.224000000000004,45.234,45.244,45.254,45.264,45.274,45.284,45.294000000000004,45.304,45.314,45.324,45.334,45.344,45.354,45.364,45.374,45.384,45.394,45.404,45.414,45.424,45.434,45.444,45.454,45.464,45.474000000000004,45.484,45.494,45.504,45.514,45.524,45.534,45.544000000000004,45.554,45.564,45.574,45.584,45.594,45.604,45.614,45.624,45.634,45.644,45.654,45.664,45.674,45.684,45.694,45.704,45.714,45.724000000000004,45.734,45.744,45.754,45.764,45.774,45.784,45.794000000000004,45.804,45.814,45.824,45.834,45.844,45.854,45.864,45.874,45.884,45.894,45.904,45.914,45.924,45.934,45.944,45.944,46.634,46.644,46.654,46.664,46.674,46.684,46.694,46.704,46.714,46.724000000000004,46.734,46.744,46.754,46.764,46.774,46.784,46.794,46.804,46.814,46.824,46.834,46.844,46.854,46.864,46.874,46.884,46.894,46.904,46.914,46.924,46.934,46.944,46.954,46.964,46.974000000000004,46.984,46.994,47.004,47.014,47.024,47.034,47.044,47.054,47.064,47.074,47.084,47.094,47.104,47.114,47.124,47.134,47.144,47.154,47.164,47.174,47.184,47.194,47.204,47.214,47.224000000000004,47.234,47.244,47.254,47.264,47.274,47.284,47.294,47.304,47.314,47.324,47.334,47.344,47.354,47.364,47.374,47.384,47.394,47.404,47.414,47.424,47.434,47.444,47.454,47.464,47.474000000000004,47.484,47.494,47.504,47.514,47.524,47.534,47.544,47.554,47.564,47.574,47.584,47.594,47.604,47.614,47.624,47.624,48.314,48.324,48.334,48.344,48.354,48.364,48.374,48.384,48.394,48.404,48.414,48.424,48.434,48.444,48.454,48.464,48.474,48.484,48.494,48.504,48.514,48.524,48.534,48.544,48.554,48.564,48.574,48.584,48.594,48.604,48.614,48.624,48.634,48.644,48.654,48.664,48.674,48.684,48.694,48.704,48.714,48.724,48.734,48.744,48.754,48.764,48.774,48.784,48.794,48.804,48.814,48.824,48.834,48.844,48.854,48.864,48.874,48.884,48.894,48.904,48.914,48.924,48.934,48.944,48.954,48.964,48.974,48.984,48.994,49.004,49.014,49.024,49.034,49.044,49.054,49.064,49.074,49.084,49.094,49.104,49.114,49.124,49.134,49.144,49.154,49.164,49.174,49.184,49.194,49.204,49.214,49.224,49.234,49.244,49.254,49.264,49.274,49.284,49.294,49.304,49.304,49.994,50.004,50.014,50.024,50.034,50.044,50.054,50.064,50.074,50.084,50.094,50.104,50.114,50.124,50.134,50.144,50.153999999999996,50.164,50.174,50.184,50.194,50.204,50.214,50.224,50.234,50.244,50.254,50.264,50.274,50.284,50.294,50.304,50.314,50.324,50.334,50.344,50.354,50.364,50.374,50.384,50.394,50.403999999999996,50.414,50.424,50.434,50.444,50.454,50.464,50.474,50.484,50.494,50.504,50.514,50.524,50.534,50.544,50.554,50.564,50.574,50.584,50.594,50.604,50.614,50.624,50.634,50.644,50.653999999999996,50.664,50.674,50.684,50.694,50.704,50.714,50.724,50.734,50.744,50.754,50.764,50.774,50.784,50.794,50.804,50.814,50.824,50.834,50.844,50.854,50.864,50.874,50.884,50.894,50.903999999999996,50.914,50.924,50.934,50.944,50.954,50.964,50.974,50.984,50.984,51.674,51.684,51.694,51.704,51.714,51.724,51.734,51.744,51.754,51.764,51.774,51.784,51.794,51.804,51.814,51.824,51.833999999999996,51.844,51.854,51.864,51.874,51.884,51.894,51.903999999999996,51.914,51.924,51.934,51.944,51.954,51.964,51.974,51.984,51.994,52.004,52.014,52.024,52.034,52.044,52.054,52.064,52.074,52.083999999999996,52.094,52.104,52.114,52.124,52.134,52.144,52.153999999999996,52.164,52.174,52.184,52.194,52.204,52.214,52.224,52.234,52.244,52.254,52.264,52.274,52.284,52.294,52.304,52.314,52.324,52.333999999999996,52.344,52.354,52.364,52.374,52.384,52.394,52.403999999999996,52.414,52.424,52.434,52.444,52.454,52.464,52.474,52.484,52.494,52.504,52.514,52.524,52.534,52.544,52.554,52.564,52.574,52.583999999999996,52.594,52.604,52.614,52.624,52.634,52.644,52.653999999999996,52.664,52.664,53.354,53.364,53.374,53.384,53.394,53.403999999999996,53.414,53.424,53.434,53.444,53.454,53.464,53.474,53.484,53.494,53.504,53.513999999999996,53.524,53.534,53.544,53.554,53.564,53.574,53.583999999999996,53.594,53.604,53.614,53.624,53.634,53.644,53.653999999999996,53.664,53.674,53.684,53.694,53.704,53.714,53.724,53.734,53.744,53.754,53.763999999999996,53.774,53.784,53.794,53.804,53.814,53.824,53.833999999999996,53.844,53.854,53.864,53.874,53.884,53.894,53.903999999999996,53.914,53.924,53.934,53.944,53.954,53.964,53.974,53.984,53.994,54.004,54.013999999999996,54.024,54.034,54.044,54.054,54.064,54.074,54.083999999999996,54.094,54.104,54.114,54.124,54.134,54.144,54.153999999999996,54.164,54.174,54.184,54.194,54.204,54.214,54.224,54.234,54.244,54.254,54.263999999999996,54.274,54.284,54.294,54.304,54.314,54.324,54.333999999999996,54.344,54.344,55.034,55.044,55.054,55.064,55.074,55.083999999999996,55.094,55.104,55.114,55.124,55.134,55.144,55.153999999999996,55.164,55.174,55.184,55.193999999999996,55.204,55.214,55.224,55.234,55.244,55.254,55.263999999999996,55.274,55.284,55.294,55.304,55.314,55.324,55.333999999999996,55.344,55.354,55.364,55.374,55.384,55.394,55.403999999999996,55.414,55.424,55.434,55.443999999999996,55.454,55.464,55.474,55.484,55.494,55.504,55.513999999999996,55.524,55.534,55.544,55.554,55.564,55.574,55.583999999999996,55.594,55.604,55.614,55.624,55.634,55.644,55.653999999999996,55.664,55.674,55.684,55.693999999999996,55.704,55.714,55.724,55.734,55.744,55.754,55.763999999999996,55.774,55.784,55.794,55.804,55.814,55.824,55.833999999999996,55.844,55.854,55.864,55.874,55.884,55.894,55.903999999999996,55.914,55.924,55.934,55.943999999999996,55.954,55.964,55.974,55.984,55.994,56.004,56.013999999999996,56.024,56.024,56.714,56.724,56.734,56.744,56.754,56.763999999999996,56.774,56.784,56.794,56.804,56.814,56.824,56.833999999999996,56.844,56.854,56.864,56.873999999999995,56.884,56.894,56.903999999999996,56.914,56.924,56.934,56.943999999999996,56.954,56.964,56.974,56.984,56.994,57.004,57.013999999999996,57.024,57.034,57.044,57.054,57.064,57.074,57.083999999999996,57.094,57.104,57.114,57.123999999999995,57.134,57.144,57.153999999999996,57.164,57.174,57.184,57.193999999999996,57.204,57.214,57.224,57.234,57.244,57.254,57.263999999999996,57.274,57.284,57.294,57.304,57.314,57.324,57.333999999999996,57.344,57.354,57.364,57.373999999999995,57.384,57.394,57.403999999999996,57.414,57.424,57.434,57.443999999999996,57.454,57.464,57.474,57.484,57.494,57.504,57.513999999999996,57.524,57.534,57.544,57.554,57.564,57.574,57.583999999999996,57.594,57.604,57.614,57.623999999999995,57.634,57.644,57.653999999999996,57.664,57.674,57.684,57.693999999999996,57.704,57.704,58.394,58.403999999999996,58.414,58.424,58.434,58.443999999999996,58.454,58.464,58.474,58.484,58.494,58.504,58.513999999999996,58.524,58.534,58.544,58.553999999999995,58.564,58.574,58.583999999999996,58.594,58.604,58.614,58.623999999999995,58.634,58.644,58.653999999999996,58.664,58.674,58.684,58.693999999999996,58.704,58.714,58.724,58.734,58.744,58.754,58.763999999999996,58.774,58.784,58.794,58.803999999999995,58.814,58.824,58.833999999999996,58.844,58.854,58.864,58.873999999999995,58.884,58.894,58.903999999999996,58.914,58.924,58.934,58.943999999999996,58.954,58.964,58.974,58.984,58.994,59.004,59.013999999999996,59.024,59.034,59.044,59.053999999999995,59.064,59.074,59.083999999999996,59.094,59.104,59.114,59.123999999999995,59.134,59.144,59.153999999999996,59.164,59.174,59.184,59.193999999999996,59.204,59.214,59.224,59.234,59.244,59.254,59.263999999999996,59.274,59.284,59.294,59.303999999999995,59.314,59.324,59.333999999999996,59.344,59.354,59.364,59.373999999999995,59.384,59.384,60.074,60.083999999999996,60.094,60.104,60.114,60.123999999999995,60.134,60.144,60.153999999999996,60.164,60.174,60.184,60.193999999999996,60.204,60.214,60.224,60.233999999999995,60.244,60.254,60.263999999999996,60.274,60.284,60.294,60.303999999999995,60.314,60.324,60.333999999999996,60.344,60.354,60.364,60.373999999999995,60.384,60.394,60.403999999999996,60.414,60.424,60.434,60.443999999999996,60.454,60.464,60.474,60.483999999999995,60.494,60.504,60.513999999999996,60.524,60.534,60.544,60.553999999999995,60.564,60.574,60.583999999999996,60.594,60.604,60.614,60.623999999999995,60.634,60.644,60.653999999999996,60.664,60.674,60.684,60.693999999999996,60.704,60.714,60.724,60.733999999999995,60.744,60.754,60.763999999999996,60.774,60.784,60.794,60.803999999999995,60.814,60.824,60.833999999999996,60.844,60.854,60.864,60.873999999999995,60.884,60.894,60.903999999999996,60.914,60.924,60.934,60.943999999999996,60.954,60.964,60.974,60.983999999999995,60.994,61.004,61.013999999999996,61.024,61.034,61.044,61.053999999999995,61.064,61.064,61.754,61.763999999999996,61.774,61.784,61.794,61.803999999999995,61.814,61.824,61.833999999999996,61.844,61.854,61.864,61.873999999999995,61.884,61.894,61.903999999999996,61.913999999999994,61.924,61.934,61.943999999999996,61.954,61.964,61.974,61.983999999999995,61.994,62.004,62.013999999999996,62.024,62.034,62.044,62.053999999999995,62.064,62.074,62.083999999999996,62.094,62.104,62.114,62.123999999999995,62.134,62.144,62.153999999999996,62.163999999999994,62.174,62.184,62.193999999999996,62.204,62.214,62.224,62.233999999999995,62.244,62.254,62.263999999999996,62.274,62.284,62.294,62.303999999999995,62.314,62.324,62.333999999999996,62.344,62.354,62.364,62.373999999999995,62.384,62.394,62.403999999999996,62.413999999999994,62.424,62.434,62.443999999999996,62.454,62.464,62.474,62.483999999999995,62.494,62.504,62.513999999999996,62.524,62.534,62.544,62.553999999999995,62.564,62.574,62.583999999999996,62.594,62.604,62.614,62.623999999999995,62.634,62.644,62.653999999999996,62.663999999999994,62.674,62.684,62.693999999999996,62.704,62.714,62.724,62.733999999999995,62.744,62.744,63.434000000000005,63.444,63.45400000000001,63.464000000000006,63.474000000000004,63.484,63.49400000000001,63.504000000000005,63.514,63.52400000000001,63.534000000000006,63.544000000000004,63.554,63.56400000000001,63.574000000000005,63.584,63.594,63.604000000000006,63.614000000000004,63.624,63.63400000000001,63.644000000000005,63.654,63.664,63.67400000000001,63.684000000000005,63.694,63.70400000000001,63.714000000000006,63.724000000000004,63.734,63.74400000000001,63.754000000000005,63.764,63.77400000000001,63.784000000000006,63.794000000000004,63.804,63.81400000000001,63.824000000000005,63.834,63.844,63.854000000000006,63.864000000000004,63.874,63.88400000000001,63.894000000000005,63.904,63.914,63.92400000000001,63.934000000000005,63.944,63.95400000000001,63.964000000000006,63.974000000000004,63.984,63.99400000000001,64.004,64.01400000000001,64.024,64.034,64.04400000000001,64.054,64.06400000000001,64.074,64.084,64.09400000000001,64.104,64.114,64.12400000000001,64.134,64.144,64.15400000000001,64.164,64.174,64.184,64.194,64.20400000000001,64.214,64.224,64.23400000000001,64.244,64.254,64.26400000000001,64.274,64.284,64.29400000000001,64.304,64.31400000000001,64.324,64.334,64.34400000000001,64.354,64.364,64.37400000000001,64.384,64.394,64.40400000000001,64.414,64.424,64.424,65.114,65.12400000000001,65.134,65.144,65.15400000000001,65.164,65.174,65.184,65.194,65.20400000000001,65.214,65.224,65.23400000000001,65.244,65.254,65.26400000000001,65.274,65.284,65.29400000000001,65.304,65.31400000000001,65.324,65.334,65.34400000000001,65.354,65.364,65.37400000000001,65.384,65.394,65.40400000000001,65.414,65.424,65.434,65.444,65.45400000000001,65.464,65.474,65.48400000000001,65.494,65.504,65.51400000000001,65.524,65.534,65.54400000000001,65.554,65.56400000000001,65.574,65.584,65.59400000000001,65.604,65.614,65.62400000000001,65.634,65.644,65.65400000000001,65.664,65.674,65.684,65.694,65.70400000000001,65.714,65.724,65.73400000000001,65.744,65.754,65.76400000000001,65.774,65.784,65.79400000000001,65.804,65.81400000000001,65.824,65.834,65.84400000000001,65.854,65.864,65.87400000000001,65.884,65.894,65.90400000000001,65.914,65.924,65.934,65.944,65.95400000000001,65.964,65.974,65.98400000000001,65.994,66.004,66.01400000000001,66.024,66.034,66.04400000000001,66.054,66.06400000000001,66.074,66.084,66.09400000000001,66.104,66.104,66.794,66.804,66.814,66.824,66.834,66.844,66.854,66.86399999999999,66.874,66.884,66.89399999999999,66.904,66.914,66.92399999999999,66.934,66.944,66.954,66.964,66.974,66.984,66.994,67.00399999999999,67.014,67.024,67.03399999999999,67.044,67.054,67.064,67.074,67.084,67.094,67.104,67.11399999999999,67.124,67.134,67.14399999999999,67.154,67.164,67.17399999999999,67.184,67.194,67.204,67.214,67.224,67.234,67.244,67.25399999999999,67.264,67.274,67.28399999999999,67.294,67.304,67.314,67.324,67.334,67.344,67.354,67.36399999999999,67.374,67.384,67.39399999999999,67.404,67.414,67.42399999999999,67.434,67.444,67.454,67.464,67.474,67.484,67.494,67.50399999999999,67.514,67.524,67.53399999999999,67.544,67.554,67.564,67.574,67.584,67.594,67.604,67.61399999999999,67.624,67.634,67.64399999999999,67.654,67.664,67.67399999999999,67.684,67.694,67.704,67.714,67.724,67.734,67.744,67.75399999999999,67.764,67.774,67.78399999999999,67.78399999999999,68.474,68.48400000000001,68.494,68.504,68.51400000000001,68.524,68.534,68.544,68.554,68.56400000000001,68.574,68.584,68.59400000000001,68.604,68.614,68.62400000000001,68.634,68.644,68.65400000000001,68.664,68.674,68.684,68.694,68.70400000000001,68.714,68.724,68.73400000000001,68.744,68.754,68.76400000000001,68.774,68.784,68.794,68.804,68.81400000000001,68.824,68.834,68.84400000000001,68.854,68.864,68.87400000000001,68.884,68.894,68.90400000000001,68.914,68.924,68.934,68.944,68.95400000000001,68.964,68.974,68.98400000000001,68.994,69.004,69.01400000000001,69.024,69.034,69.044,69.054,69.06400000000001,69.074,69.084,69.09400000000001,69.104,69.114,69.12400000000001,69.134,69.144,69.15400000000001,69.164,69.174,69.184,69.194,69.20400000000001,69.214,69.224,69.23400000000001,69.244,69.254,69.26400000000001,69.274,69.284,69.294,69.304,69.31400000000001,69.324,69.334,69.34400000000001,69.354,69.364,69.37400000000001,69.384,69.394,69.40400000000001,69.414,69.424,69.434,69.444,69.45400000000001,69.464,69.464,70.154,70.164,70.17399999999999,70.184,70.194,70.204,70.214,70.22399999999999,70.234,70.244,70.25399999999999,70.264,70.274,70.28399999999999,70.294,70.304,70.314,70.324,70.334,70.344,70.354,70.36399999999999,70.374,70.384,70.39399999999999,70.404,70.414,70.42399999999999,70.434,70.444,70.454,70.464,70.47399999999999,70.484,70.494,70.50399999999999,70.514,70.524,70.53399999999999,70.544,70.554,70.564,70.574,70.584,70.594,70.604,70.61399999999999,70.624,70.634,70.64399999999999,70.654,70.664,70.67399999999999,70.684,70.694,70.704,70.714,70.72399999999999,70.734,70.744,70.75399999999999,70.764,70.774,70.78399999999999,70.794,70.804,70.814,70.824,70.834,70.844,70.854,70.86399999999999,70.874,70.884,70.89399999999999,70.904,70.914,70.92399999999999,70.934,70.944,70.954,70.964,70.97399999999999,70.984,70.994,71.00399999999999,71.014,71.024,71.03399999999999,71.044,71.054,71.064,71.074,71.084,71.094,71.104,71.11399999999999,71.124,71.134,71.14399999999999,71.14399999999999,71.834,71.84400000000001,71.854,71.864,71.87400000000001,71.884,71.894,71.904,71.914,71.924,71.934,71.944,71.95400000000001,71.964,71.974,71.98400000000001,71.994,72.004,72.01400000000001,72.024,72.034,72.044,72.054,72.06400000000001,72.074,72.084,72.09400000000001,72.104,72.114,72.12400000000001,72.134,72.144,72.154,72.164,72.174,72.184,72.194,72.20400000000001,72.214,72.224,72.23400000000001,72.244,72.254,72.26400000000001,72.274,72.284,72.294,72.304,72.31400000000001,72.324,72.334,72.34400000000001,72.354,72.364,72.37400000000001,72.384,72.394,72.404,72.414,72.424,72.434,72.444,72.45400000000001,72.464,72.474,72.48400000000001,72.494,72.504,72.51400000000001,72.524,72.534,72.544,72.554,72.56400000000001,72.574,72.584,72.59400000000001,72.604,72.614,72.62400000000001,72.634,72.644,72.654,72.664,72.674,72.684,72.694,72.70400000000001,72.714,72.724,72.73400000000001,72.744,72.754,72.76400000000001,72.774,72.784,72.794,72.804,72.81400000000001,72.824,72.824,73.514,73.524,73.53399999999999,73.544,73.554,73.564,73.574,73.58399999999999,73.594,73.604,73.61399999999999,73.624,73.634,73.64399999999999,73.654,73.664,73.67399999999999,73.684,73.694,73.704,73.714,73.72399999999999,73.734,73.744,73.75399999999999,73.764,73.774,73.78399999999999,73.794,73.804,73.814,73.824,73.83399999999999,73.844,73.854,73.86399999999999,73.874,73.884,73.89399999999999,73.904,73.914,73.92399999999999,73.934,73.944,73.954,73.964,73.97399999999999,73.984,73.994,74.00399999999999,74.014,74.024,74.03399999999999,74.044,74.054,74.064,74.074,74.08399999999999,74.094,74.104,74.11399999999999,74.124,74.134,74.14399999999999,74.154,74.164,74.17399999999999,74.184,74.194,74.204,74.214,74.22399999999999,74.234,74.244,74.25399999999999,74.264,74.274,74.28399999999999,74.294,74.304,74.314,74.324,74.33399999999999,74.344,74.354,74.36399999999999,74.374,74.384,74.39399999999999,74.404,74.414,74.42399999999999,74.434,74.444,74.454,74.464,74.47399999999999,74.484,74.494,74.50399999999999,74.50399999999999,75.194,75.20400000000001,75.214,75.224,75.23400000000001,75.244,75.254,75.264,75.274,75.284,75.294,75.304,75.31400000000001,75.324,75.334,75.34400000000001,75.354,75.364,75.37400000000001,75.384,75.394,75.404,75.414,75.424,75.434,75.444,75.45400000000001,75.464,75.474,75.48400000000001,75.494,75.504,75.514,75.524,75.534,75.544,75.554,75.56400000000001,75.574,75.584,75.59400000000001,75.604,75.614,75.62400000000001,75.634,75.644,75.654,75.664,75.674,75.684,75.694,75.70400000000001,75.714,75.724,75.73400000000001,75.744,75.754,75.764,75.774,75.784,75.794,75.804,75.81400000000001,75.824,75.834,75.84400000000001,75.854,75.864,75.87400000000001,75.884,75.894,75.904,75.914,75.924,75.934,75.944,75.95400000000001,75.964,75.974,75.98400000000001,75.994,76.004,76.014,76.024,76.034,76.044,76.054,76.06400000000001,76.074,76.084,76.09400000000001,76.104,76.114,76.12400000000001,76.134,76.144,76.154,76.164,76.174,76.184,76.184,76.874,76.884,76.89399999999999,76.904,76.914,76.92399999999999,76.934,76.94399999999999,76.954,76.964,76.97399999999999,76.984,76.994,77.00399999999999,77.014,77.024,77.03399999999999,77.044,77.054,77.064,77.074,77.08399999999999,77.094,77.104,77.11399999999999,77.124,77.134,77.14399999999999,77.154,77.164,77.17399999999999,77.184,77.19399999999999,77.204,77.214,77.22399999999999,77.234,77.244,77.25399999999999,77.264,77.274,77.28399999999999,77.294,77.304,77.314,77.324,77.33399999999999,77.344,77.354,77.36399999999999,77.374,77.384,77.39399999999999,77.404,77.414,77.42399999999999,77.434,77.44399999999999,77.454,77.464,77.47399999999999,77.484,77.494,77.50399999999999,77.514,77.524,77.53399999999999,77.544,77.554,77.564,77.574,77.58399999999999,77.594,77.604,77.61399999999999,77.624,77.634,77.64399999999999,77.654,77.664,77.67399999999999,77.684,77.69399999999999,77.704,77.714,77.72399999999999,77.734,77.744,77.75399999999999,77.764,77.774,77.78399999999999,77.794,77.804,77.814,77.824,77.83399999999999,77.844,77.854,77.86399999999999,77.86399999999999,78.554,78.56400000000001,78.574,78.584,78.59400000000001,78.604,78.614,78.624,78.634,78.644,78.654,78.664,78.674,78.684,78.694,78.70400000000001,78.714,78.724,78.73400000000001,78.744,78.754,78.764,78.774,78.784,78.794,78.804,78.81400000000001,78.824,78.834,78.84400000000001,78.854,78.864,78.874,78.884,78.894,78.904,78.914,78.924,78.934,78.944,78.95400000000001,78.964,78.974,78.98400000000001,78.994,79.004,79.014,79.024,79.034,79.044,79.054,79.06400000000001,79.074,79.084,79.09400000000001,79.104,79.114,79.124,79.134,79.144,79.154,79.164,79.174,79.184,79.194,79.20400000000001,79.214,79.224,79.23400000000001,79.244,79.254,79.264,79.274,79.284,79.294,79.304,79.31400000000001,79.324,79.334,79.34400000000001,79.354,79.364,79.374,79.384,79.394,79.404,79.414,79.424,79.434,79.444,79.45400000000001,79.464,79.474,79.48400000000001,79.494,79.504,79.514,79.524,79.534,79.544,79.544,80.234,80.244,80.25399999999999,80.264,80.274,80.28399999999999,80.294,80.30399999999999,80.314,80.324,80.33399999999999,80.344,80.354,80.36399999999999,80.374,80.384,80.39399999999999,80.404,80.414,80.42399999999999,80.434,80.44399999999999,80.454,80.464,80.47399999999999,80.484,80.494,80.50399999999999,80.514,80.524,80.53399999999999,80.544,80.55399999999999,80.564,80.574,80.58399999999999,80.594,80.604,80.61399999999999,80.624,80.634,80.64399999999999,80.654,80.664,80.67399999999999,80.684,80.69399999999999,80.704,80.714,80.72399999999999,80.734,80.744,80.75399999999999,80.764,80.774,80.78399999999999,80.794,80.80399999999999,80.814,80.824,80.83399999999999,80.844,80.854,80.86399999999999,80.874,80.884,80.89399999999999,80.904,80.914,80.92399999999999,80.934,80.94399999999999,80.954,80.964,80.97399999999999,80.984,80.994,81.00399999999999,81.014,81.024,81.03399999999999,81.044,81.05399999999999,81.064,81.074,81.08399999999999,81.094,81.104,81.11399999999999,81.124,81.134,81.14399999999999,81.154,81.164,81.17399999999999,81.184,81.19399999999999,81.204,81.214,81.22399999999999,81.22399999999999,81.914,81.924,81.934,81.944,81.95400000000001,81.964,81.974,81.984,81.994,82.004,82.014,82.024,82.034,82.044,82.054,82.06400000000001,82.074,82.084,82.09400000000001,82.104,82.114,82.124,82.134,82.144,82.154,82.164,82.174,82.184,82.194,82.20400000000001,82.214,82.224,82.234,82.244,82.254,82.264,82.274,82.284,82.294,82.304,82.31400000000001,82.324,82.334,82.34400000000001,82.354,82.364,82.374,82.384,82.394,82.404,82.414,82.424,82.434,82.444,82.45400000000001,82.464,82.474,82.484,82.494,82.504,82.514,82.524,82.534,82.544,82.554,82.56400000000001,82.574,82.584,82.59400000000001,82.604,82.614,82.624,82.634,82.644,82.654,82.664,82.674,82.684,82.694,82.70400000000001,82.714,82.724,82.734,82.744,82.754,82.764,82.774,82.784,82.794,82.804,82.81400000000001,82.824,82.834,82.84400000000001,82.854,82.864,82.874,82.884,82.894,82.904,82.904,83.59400000000001,83.60400000000001,83.614,83.62400000000001,83.63400000000001,83.644,83.65400000000001,83.664,83.674,83.68400000000001,83.694,83.70400000000001,83.71400000000001,83.724,83.73400000000001,83.74400000000001,83.754,83.76400000000001,83.77400000000002,83.784,83.79400000000001,83.804,83.81400000000001,83.82400000000001,83.834,83.84400000000001,83.85400000000001,83.864,83.87400000000001,83.88400000000001,83.894,83.90400000000001,83.914,83.924,83.93400000000001,83.944,83.95400000000001,83.96400000000001,83.974,83.98400000000001,83.99400000000001,84.004,84.01400000000001,84.02400000000002,84.034,84.04400000000001,84.054,84.06400000000001,84.07400000000001,84.084,84.09400000000001,84.10400000000001,84.114,84.12400000000001,84.13400000000001,84.144,84.15400000000001,84.164,84.174,84.18400000000001,84.194,84.20400000000001,84.21400000000001,84.224,84.23400000000001,84.24400000000001,84.254,84.26400000000001,84.27400000000002,84.284,84.29400000000001,84.304,84.31400000000001,84.32400000000001,84.334,84.34400000000001,84.35400000000001,84.364,84.37400000000001,84.38400000000001,84.394,84.40400000000001,84.414,84.424,84.43400000000001,84.444,84.45400000000001,84.46400000000001,84.474,84.48400000000001,84.49400000000001,84.504,84.51400000000001,84.52400000000002,84.534,84.54400000000001,84.554,84.56400000000001,84.57400000000001,84.584,84.584,85.274,85.284,85.294,85.304,85.31400000000001,85.324,85.334,85.344,85.354,85.364,85.374,85.384,85.394,85.404,85.414,85.424,85.434,85.444,85.45400000000001,85.464,85.474,85.484,85.494,85.504,85.514,85.524,85.534,85.544,85.554,85.56400000000001,85.574,85.584,85.594,85.604,85.614,85.624,85.634,85.644,85.654,85.664,85.674,85.684,85.694,85.70400000000001,85.714,85.724,85.734,85.744,85.754,85.764,85.774,85.784,85.794,85.804,85.81400000000001,85.824,85.834,85.844,85.854,85.864,85.874,85.884,85.894,85.904,85.914,85.924,85.934,85.944,85.95400000000001,85.964,85.974,85.984,85.994,86.004,86.014,86.024,86.034,86.044,86.054,86.06400000000001,86.074,86.084,86.094,86.104,86.114,86.124,86.134,86.144,86.154,86.164,86.174,86.184,86.194,86.20400000000001,86.214,86.224,86.234,86.244,86.254,86.264,86.264,86.95400000000001,86.96400000000001,86.974,86.98400000000001,86.99400000000001,87.004,87.01400000000001,87.024,87.034,87.04400000000001,87.054,87.06400000000001,87.07400000000001,87.084,87.09400000000001,87.10400000000001,87.114,87.12400000000001,87.13400000000001,87.144,87.15400000000001,87.164,87.174,87.18400000000001,87.194,87.20400000000001,87.21400000000001,87.224,87.23400000000001,87.24400000000001,87.254,87.26400000000001,87.274,87.284,87.29400000000001,87.304,87.31400000000001,87.32400000000001,87.334,87.34400000000001,87.35400000000001,87.364,87.37400000000001,87.38400000000001,87.394,87.40400000000001,87.414,87.424,87.43400000000001,87.444,87.45400000000001,87.46400000000001,87.474,87.48400000000001,87.49400000000001,87.504,87.51400000000001,87.524,87.534,87.54400000000001,87.554,87.56400000000001,87.57400000000001,87.584,87.59400000000001,87.60400000000001,87.614,87.62400000000001,87.63400000000001,87.644,87.65400000000001,87.664,87.674,87.68400000000001,87.694,87.70400000000001,87.71400000000001,87.724,87.73400000000001,87.74400000000001,87.754,87.76400000000001,87.774,87.784,87.79400000000001,87.804,87.81400000000001,87.82400000000001,87.834,87.84400000000001,87.85400000000001,87.864,87.87400000000001,87.88400000000001,87.894,87.90400000000001,87.914,87.924,87.93400000000001,87.944,87.944,88.634,88.644,88.654,88.664,88.674,88.684,88.694,88.704,88.714,88.724,88.734,88.744,88.754,88.764,88.774,88.784,88.794,88.804,88.81400000000001,88.824,88.834,88.844,88.854,88.864,88.874,88.884,88.894,88.904,88.914,88.924,88.934,88.944,88.954,88.964,88.974,88.984,88.994,89.004,89.014,89.024,89.034,89.044,89.054,89.06400000000001,89.074,89.084,89.094,89.104,89.114,89.124,89.134,89.144,89.154,89.164,89.174,89.184,89.194,89.204,89.214,89.224,89.234,89.244,89.254,89.264,89.274,89.284,89.294,89.304,89.31400000000001,89.324,89.334,89.344,89.354,89.364,89.374,89.384,89.394,89.404,89.414,89.424,89.434,89.444,89.454,89.464,89.474,89.484,89.494,89.504,89.514,89.524,89.534,89.544,89.554,89.56400000000001,89.574,89.584,89.594,89.604,89.614,89.624,89.624,90.31400000000001,90.32400000000001,90.334,90.34400000000001,90.35400000000001,90.364,90.37400000000001,90.384,90.394,90.40400000000001,90.414,90.424,90.43400000000001,90.444,90.45400000000001,90.46400000000001,90.474,90.48400000000001,90.49400000000001,90.504,90.51400000000001,90.524,90.534,90.54400000000001,90.554,90.56400000000001,90.57400000000001,90.584,90.59400000000001,90.60400000000001,90.614,90.62400000000001,90.634,90.644,90.65400000000001,90.664,90.674,90.68400000000001,90.694,90.70400000000001,90.71400000000001,90.724,90.73400000000001,90.74400000000001,90.754,90.76400000000001,90.774,90.784,90.79400000000001,90.804,90.81400000000001,90.82400000000001,90.834,90.84400000000001,90.85400000000001,90.864,90.87400000000001,90.884,90.894,90.90400000000001,90.914,90.924,90.93400000000001,90.944,90.95400000000001,90.96400000000001,90.974,90.98400000000001,90.99400000000001,91.004,91.01400000000001,91.024,91.034,91.04400000000001,91.054,91.06400000000001,91.07400000000001,91.084,91.09400000000001,91.10400000000001,91.114,91.12400000000001,91.134,91.144,91.15400000000001,91.164,91.174,91.18400000000001,91.194,91.20400000000001,91.21400000000001,91.224,91.23400000000001,91.24400000000001,91.254,91.26400000000001,91.274,91.284,91.29400000000001,91.304,91.304,91.994,92.004,92.014,92.024,92.034,92.044,92.054,92.064,92.074,92.084,92.094,92.104,92.114,92.124,92.134,92.144,92.154,92.164,92.174,92.184,92.194,92.204,92.214,92.224,92.234,92.244,92.254,92.264,92.274,92.284,92.294,92.304,92.314,92.324,92.334,92.344,92.354,92.364,92.374,92.384,92.394,92.404,92.414,92.424,92.434,92.444,92.454,92.464,92.474,92.484,92.494,92.504,92.514,92.524,92.534,92.544,92.554,92.564,92.574,92.584,92.594,92.604,92.614,92.624,92.634,92.644,92.654,92.664,92.674,92.684,92.694,92.704,92.714,92.724,92.734,92.744,92.754,92.764,92.774,92.784,92.794,92.804,92.814,92.824,92.834,92.844,92.854,92.864,92.874,92.884,92.894,92.904,92.914,92.924,92.934,92.944,92.954,92.964,92.974,92.984,92.984,93.674,93.68400000000001,93.694,93.70400000000001,93.71400000000001,93.724,93.73400000000001,93.744,93.754,93.76400000000001,93.774,93.784,93.79400000000001,93.804,93.81400000000001,93.82400000000001,93.834,93.84400000000001,93.85400000000001,93.864,93.87400000000001,93.884,93.894,93.90400000000001,93.914,93.924,93.93400000000001,93.944,93.95400000000001,93.96400000000001,93.974,93.98400000000001,93.994,94.004,94.01400000000001,94.024,94.034,94.04400000000001,94.054,94.06400000000001,94.07400000000001,94.084,94.09400000000001,94.10400000000001,94.114,94.12400000000001,94.134,94.144,94.15400000000001,94.164,94.174,94.18400000000001,94.194,94.20400000000001,94.21400000000001,94.224,94.23400000000001,94.244,94.254,94.26400000000001,94.274,94.284,94.29400000000001,94.304,94.31400000000001,94.32400000000001,94.334,94.34400000000001,94.35400000000001,94.364,94.37400000000001,94.384,94.394,94.40400000000001,94.414,94.424,94.43400000000001,94.444,94.45400000000001,94.46400000000001,94.474,94.48400000000001,94.494,94.504,94.51400000000001,94.524,94.534,94.54400000000001,94.554,94.56400000000001,94.57400000000001,94.584,94.59400000000001,94.60400000000001,94.614,94.62400000000001,94.634,94.644,94.65400000000001,94.664,94.664,95.354,95.364,95.374,95.384,95.394,95.404,95.414,95.42399999999999,95.434,95.444,95.454,95.464,95.474,95.484,95.494,95.504,95.514,95.524,95.534,95.544,95.554,95.564,95.574,95.584,95.594,95.604,95.614,95.624,95.634,95.644,95.654,95.664,95.67399999999999,95.684,95.694,95.704,95.714,95.724,95.734,95.744,95.754,95.764,95.774,95.784,95.794,95.804,95.814,95.824,95.834,95.844,95.854,95.864,95.874,95.884,95.894,95.904,95.914,95.92399999999999,95.934,95.944,95.954,95.964,95.974,95.984,95.994,96.004,96.014,96.024,96.034,96.044,96.054,96.064,96.074,96.084,96.094,96.104,96.114,96.124,96.134,96.144,96.154,96.164,96.17399999999999,96.184,96.194,96.204,96.214,96.224,96.234,96.244,96.254,96.264,96.274,96.284,96.294,96.304,96.314,96.324,96.334,96.344,96.344,97.034,97.04400000000001,97.054,97.06400000000001,97.07400000000001,97.084,97.09400000000001,97.104,97.114,97.12400000000001,97.134,97.144,97.15400000000001,97.164,97.174,97.18400000000001,97.194,97.20400000000001,97.21400000000001,97.224,97.23400000000001,97.244,97.254,97.26400000000001,97.274,97.284,97.29400000000001,97.304,97.31400000000001,97.32400000000001,97.334,97.34400000000001,97.354,97.364,97.37400000000001,97.384,97.394,97.40400000000001,97.414,97.424,97.43400000000001,97.444,97.45400000000001,97.46400000000001,97.474,97.48400000000001,97.494,97.504,97.51400000000001,97.524,97.534,97.54400000000001,97.554,97.56400000000001,97.57400000000001,97.584,97.59400000000001,97.604,97.614,97.62400000000001,97.634,97.644,97.65400000000001,97.664,97.674,97.68400000000001,97.694,97.70400000000001,97.71400000000001,97.724,97.73400000000001,97.744,97.754,97.76400000000001,97.774,97.784,97.79400000000001,97.804,97.81400000000001,97.82400000000001,97.834,97.84400000000001,97.854,97.864,97.87400000000001,97.884,97.894,97.90400000000001,97.914,97.924,97.93400000000001,97.944,97.95400000000001,97.96400000000001,97.974,97.98400000000001,97.994,98.004,98.01400000000001,98.024,98.024,98.714,98.724,98.734,98.744,98.754,98.764,98.774,98.78399999999999,98.794,98.804,98.814,98.824,98.834,98.844,98.854,98.864,98.874,98.884,98.894,98.904,98.914,98.92399999999999,98.934,98.944,98.954,98.964,98.974,98.984,98.994,99.004,99.014,99.024,99.03399999999999,99.044,99.054,99.064,99.074,99.084,99.094,99.104,99.114,99.124,99.134,99.144,99.154,99.164,99.17399999999999,99.184,99.194,99.204,99.214,99.224,99.234,99.244,99.254,99.264,99.274,99.28399999999999,99.294,99.304,99.314,99.324,99.334,99.344,99.354,99.364,99.374,99.384,99.394,99.404,99.414,99.42399999999999,99.434,99.444,99.454,99.464,99.474,99.484,99.494,99.504,99.514,99.524,99.53399999999999,99.544,99.554,99.564,99.574,99.584,99.594,99.604,99.614,99.624,99.634,99.644,99.654,99.664,99.67399999999999,99.684,99.694,99.704,99.704,100.394,100.40400000000001,100.414,100.424,100.43400000000001,100.444,100.45400000000001,100.464,100.474,100.48400000000001,100.494,100.504,100.51400000000001,100.524,100.534,100.54400000000001,100.554,100.56400000000001,100.57400000000001,100.584,100.59400000000001,100.604,100.614,100.62400000000001,100.634,100.644,100.65400000000001,100.664,100.674,100.68400000000001,100.694,100.70400000000001,100.714,100.724,100.73400000000001,100.744,100.754,100.76400000000001,100.774,100.784,100.79400000000001,100.804,100.81400000000001,100.82400000000001,100.834,100.84400000000001,100.854,100.864,100.87400000000001,100.884,100.894,100.90400000000001,100.914,100.924,100.93400000000001,100.944,100.95400000000001,100.964,100.974,100.98400000000001,100.994,101.004,101.01400000000001,101.024,101.034,101.04400000000001,101.054,101.06400000000001,101.07400000000001,101.084,101.09400000000001,101.104,101.114,101.12400000000001,101.134,101.144,101.15400000000001,101.164,101.174,101.18400000000001,101.194,101.20400000000001,101.214,101.224,101.23400000000001,101.244,101.254,101.26400000000001,101.274,101.284,101.29400000000001,101.304,101.31400000000001,101.32400000000001,101.334,101.34400000000001,101.354,101.364,101.37400000000001,101.384,101.384,102.074,102.084,102.094,102.104,102.114,102.124,102.134,102.14399999999999,102.154,102.164,102.17399999999999,102.184,102.194,102.204,102.214,102.224,102.234,102.244,102.254,102.264,102.274,102.28399999999999,102.294,102.304,102.314,102.324,102.334,102.344,102.354,102.364,102.374,102.384,102.39399999999999,102.404,102.414,102.42399999999999,102.434,102.444,102.454,102.464,102.474,102.484,102.494,102.504,102.514,102.524,102.53399999999999,102.544,102.554,102.564,102.574,102.584,102.594,102.604,102.614,102.624,102.634,102.64399999999999,102.654,102.664,102.67399999999999,102.684,102.694,102.704,102.714,102.724,102.734,102.744,102.754,102.764,102.774,102.78399999999999,102.794,102.804,102.814,102.824,102.834,102.844,102.854,102.864,102.874,102.884,102.89399999999999,102.904,102.914,102.92399999999999,102.934,102.944,102.954,102.964,102.974,102.984,102.994,103.004,103.014,103.024,103.03399999999999,103.044,103.054,103.064,103.064,103.754,103.76400000000001,103.774,103.784,103.79400000000001,103.804,103.81400000000001,103.824,103.834,103.84400000000001,103.854,103.864,103.87400000000001,103.884,103.894,103.90400000000001,103.914,103.924,103.93400000000001,103.944,103.95400000000001,103.964,103.974,103.98400000000001,103.994,104.004,104.01400000000001,104.024,104.034,104.04400000000001,104.054,104.06400000000001,104.074,104.084,104.09400000000001,104.104,104.114,104.12400000000001,104.134,104.144,104.15400000000001,104.164,104.174,104.18400000000001,104.194,104.20400000000001,104.214,104.224,104.23400000000001,104.244,104.254,104.26400000000001,104.274,104.284,104.29400000000001,104.304,104.31400000000001,104.324,104.334,104.34400000000001,104.354,104.364,104.37400000000001,104.384,104.394,104.40400000000001,104.414,104.424,104.43400000000001,104.444,104.45400000000001,104.464,104.474,104.48400000000001,104.494,104.504,104.51400000000001,104.524,104.534,104.54400000000001,104.554,104.56400000000001,104.574,104.584,104.59400000000001,104.604,104.614,104.62400000000001,104.634,104.644,104.65400000000001,104.664,104.674,104.68400000000001,104.694,104.70400000000001,104.714,104.724,104.73400000000001,104.744,104.744,105.434,105.444,105.454,105.464,105.474,105.484,105.494,105.50399999999999,105.514,105.524,105.53399999999999,105.544,105.554,105.564,105.574,105.584,105.594,105.604,105.614,105.624,105.634,105.64399999999999,105.654,105.664,105.67399999999999,105.684,105.694,105.704,105.714,105.724,105.734,105.744,105.75399999999999,105.764,105.774,105.78399999999999,105.794,105.804,105.814,105.824,105.834,105.844,105.854,105.864,105.874,105.884,105.89399999999999,105.904,105.914,105.92399999999999,105.934,105.944,105.954,105.964,105.974,105.984,105.994,106.00399999999999,106.014,106.024,106.03399999999999,106.044,106.054,106.064,106.074,106.084,106.094,106.104,106.114,106.124,106.134,106.14399999999999,106.154,106.164,106.17399999999999,106.184,106.194,106.204,106.214,106.224,106.234,106.244,106.25399999999999,106.264,106.274,106.28399999999999,106.294,106.304,106.314,106.324,106.334,106.344,106.354,106.364,106.374,106.384,106.39399999999999,106.404,106.414,106.42399999999999,106.42399999999999,107.114,107.12400000000001,107.134,107.144,107.15400000000001,107.164,107.174,107.184,107.194,107.20400000000001,107.214,107.224,107.23400000000001,107.244,107.254,107.26400000000001,107.274,107.284,107.29400000000001,107.304,107.31400000000001,107.324,107.334,107.34400000000001,107.354,107.364,107.37400000000001,107.384,107.394,107.40400000000001,107.414,107.424,107.434,107.444,107.45400000000001,107.464,107.474,107.48400000000001,107.494,107.504,107.51400000000001,107.524,107.534,107.54400000000001,107.554,107.56400000000001,107.574,107.584,107.59400000000001,107.604,107.614,107.62400000000001,107.634,107.644,107.65400000000001,107.664,107.674,107.684,107.694,107.70400000000001,107.714,107.724,107.73400000000001,107.744,107.754,107.76400000000001,107.774,107.784,107.79400000000001,107.804,107.81400000000001,107.824,107.834,107.84400000000001,107.854,107.864,107.87400000000001,107.884,107.894,107.90400000000001,107.914,107.924,107.934,107.944,107.95400000000001,107.964,107.974,107.98400000000001,107.994,108.004,108.01400000000001,108.024,108.034,108.04400000000001,108.054,108.06400000000001,108.074,108.084,108.09400000000001,108.104,108.104,108.794,108.804,108.814,108.824,108.834,108.844,108.854,108.86399999999999,108.874,108.884,108.89399999999999,108.904,108.914,108.92399999999999,108.934,108.944,108.954,108.964,108.974,108.984,108.994,109.00399999999999,109.014,109.024,109.03399999999999,109.044,109.054,109.064,109.074,109.084,109.094,109.104,109.11399999999999,109.124,109.134,109.14399999999999,109.154,109.164,109.17399999999999,109.184,109.194,109.204,109.214,109.224,109.234,109.244,109.25399999999999,109.264,109.274,109.28399999999999,109.294,109.304,109.314,109.324,109.334,109.344,109.354,109.36399999999999,109.374,109.384,109.39399999999999,109.404,109.414,109.42399999999999,109.434,109.444,109.454,109.464,109.474,109.484,109.494,109.50399999999999,109.514,109.524,109.53399999999999,109.544,109.554,109.564,109.574,109.584,109.594,109.604,109.61399999999999,109.624,109.634,109.64399999999999,109.654,109.664,109.67399999999999,109.684,109.694,109.704,109.714,109.724,109.734,109.744,109.75399999999999,109.764,109.774,109.78399999999999,109.78399999999999,110.474,110.48400000000001,110.494,110.504,110.51400000000001,110.524,110.534,110.544,110.554,110.56400000000001,110.574,110.584,110.59400000000001,110.604,110.614,110.62400000000001,110.634,110.644,110.65400000000001,110.664,110.674,110.684,110.694,110.70400000000001,110.714,110.724,110.73400000000001,110.744,110.754,110.76400000000001,110.774,110.784,110.794,110.804,110.81400000000001,110.824,110.834,110.84400000000001,110.854,110.864,110.87400000000001,110.884,110.894,110.90400000000001,110.914,110.924,110.934,110.944,110.95400000000001,110.964,110.974,110.98400000000001,110.994,111.004,111.01400000000001,111.024,111.034,111.044,111.054,111.06400000000001,111.074,111.084,111.09400000000001,111.104,111.114,111.12400000000001,111.134,111.144,111.15400000000001,111.164,111.174,111.184,111.194,111.20400000000001,111.214,111.224,111.23400000000001,111.244,111.254,111.26400000000001,111.274,111.284,111.294,111.304,111.31400000000001,111.324,111.334,111.34400000000001,111.354,111.364,111.37400000000001,111.384,111.394,111.40400000000001,111.414,111.424,111.434,111.444,111.45400000000001,111.464,111.464,112.154,112.164,112.17399999999999,112.184,112.194,112.204,112.214,112.22399999999999,112.234,112.244,112.25399999999999,112.264,112.274,112.28399999999999,112.294,112.304,112.314,112.324,112.334,112.344,112.354,112.36399999999999,112.374,112.384,112.39399999999999,112.404,112.414,112.42399999999999,112.434,112.444,112.454,112.464,112.47399999999999,112.484,112.494,112.50399999999999,112.514,112.524,112.53399999999999,112.544,112.554,112.564,112.574,112.584,112.594,112.604,112.61399999999999,112.624,112.634,112.64399999999999,112.654,112.664,112.67399999999999,112.684,112.694,112.704,112.714,112.72399999999999,112.734,112.744,112.75399999999999,112.764,112.774,112.78399999999999,112.794,112.804,112.814,112.824,112.834,112.844,112.854,112.86399999999999,112.874,112.884,112.89399999999999,112.904,112.914,112.92399999999999,112.934,112.944,112.954,112.964,112.97399999999999,112.984,112.994,113.00399999999999,113.014,113.024,113.03399999999999,113.044,113.054,113.064,113.074,113.084,113.094,113.104,113.11399999999999,113.124,113.134,113.14399999999999,113.14399999999999,113.834,113.84400000000001,113.854,113.864,113.87400000000001,113.884,113.894,113.904,113.914,113.924,113.934,113.944,113.95400000000001,113.964,113.974,113.98400000000001,113.994,114.004,114.01400000000001,114.024,114.034,114.044,114.054,114.06400000000001,114.074,114.084,114.09400000000001,114.104,114.114,114.12400000000001,114.134,114.144,114.154,114.164,114.174,114.184,114.194,114.20400000000001,114.214,114.224,114.23400000000001,114.244,114.254,114.26400000000001,114.274,114.284,114.294,114.304,114.31400000000001,114.324,114.334,114.34400000000001,114.354,114.364,114.37400000000001,114.384,114.394,114.404,114.414,114.424,114.434,114.444,114.45400000000001,114.464,114.474,114.48400000000001,114.494,114.504,114.51400000000001,114.524,114.534,114.544,114.554,114.56400000000001,114.574,114.584,114.59400000000001,114.604,114.614,114.62400000000001,114.634,114.644,114.654,114.664,114.674,114.684,114.694,114.70400000000001,114.714,114.724,114.73400000000001,114.744,114.754,114.76400000000001,114.774,114.784,114.794,114.804,114.81400000000001,114.824,114.824,115.514,115.524,115.53399999999999,115.544,115.554,115.564,115.574,115.58399999999999,115.594,115.604,115.61399999999999,115.624,115.634,115.64399999999999,115.654,115.664,115.67399999999999,115.684,115.694,115.704,115.714,115.72399999999999,115.734,115.744,115.75399999999999,115.764,115.774,115.78399999999999,115.794,115.804,115.814,115.824,115.83399999999999,115.844,115.854,115.86399999999999,115.874,115.884,115.89399999999999,115.904,115.914,115.92399999999999,115.934,115.944,115.954,115.964,115.97399999999999,115.984,115.994,116.00399999999999,116.014,116.024,116.03399999999999,116.044,116.054,116.064,116.074,116.08399999999999,116.094,116.104,116.11399999999999,116.124,116.134,116.14399999999999,116.154,116.164,116.17399999999999,116.184,116.194,116.204,116.214,116.22399999999999,116.234,116.244,116.25399999999999,116.264,116.274,116.28399999999999,116.294,116.304,116.314,116.324,116.33399999999999,116.344,116.354,116.36399999999999,116.374,116.384,116.39399999999999,116.404,116.414,116.42399999999999,116.434,116.444,116.454,116.464,116.47399999999999,116.484,116.494,116.50399999999999,116.50399999999999,117.194,117.20400000000001,117.214,117.224,117.23400000000001,117.244,117.254,117.264,117.274,117.284,117.294,117.304,117.31400000000001,117.324,117.334,117.34400000000001,117.354,117.364,117.37400000000001,117.384,117.394,117.404,117.414,117.424,117.434,117.444,117.45400000000001,117.464,117.474,117.48400000000001,117.494,117.504,117.514,117.524,117.534,117.544,117.554,117.56400000000001,117.574,117.584,117.59400000000001,117.604,117.614,117.62400000000001,117.634,117.644,117.654,117.664,117.674,117.684,117.694,117.70400000000001,117.714,117.724,117.73400000000001,117.744,117.754,117.764,117.774,117.784,117.794,117.804,117.81400000000001,117.824,117.834,117.84400000000001,117.854,117.864,117.87400000000001,117.884,117.894,117.904,117.914,117.924,117.934,117.944,117.95400000000001,117.964,117.974,117.98400000000001,117.994,118.004,118.014,118.024,118.034,118.044,118.054,118.06400000000001,118.074,118.084,118.09400000000001,118.104,118.114,118.12400000000001,118.134,118.144,118.154,118.164,118.174,118.184,118.184,118.87400000000001,118.88400000000001,118.894,118.90400000000001,118.91400000000002,118.924,118.93400000000001,118.944,118.95400000000001,118.96400000000001,118.974,118.98400000000001,118.99400000000001,119.004,119.01400000000001,119.02400000000002,119.034,119.04400000000001,119.05400000000002,119.06400000000001,119.07400000000001,119.084,119.09400000000001,119.10400000000001,119.114,119.12400000000001,119.13400000000001,119.144,119.15400000000001,119.16400000000002,119.174,119.18400000000001,119.194,119.20400000000001,119.21400000000001,119.224,119.23400000000001,119.24400000000001,119.254,119.26400000000001,119.27400000000002,119.284,119.29400000000001,119.30400000000002,119.31400000000001,119.32400000000001,119.334,119.34400000000001,119.35400000000001,119.364,119.37400000000001,119.38400000000001,119.394,119.40400000000001,119.41400000000002,119.424,119.43400000000001,119.444,119.45400000000001,119.46400000000001,119.474,119.48400000000001,119.49400000000001,119.504,119.51400000000001,119.52400000000002,119.534,119.54400000000001,119.55400000000002,119.56400000000001,119.57400000000001,119.584,119.59400000000001,119.60400000000001,119.614,119.62400000000001,119.63400000000001,119.644,119.65400000000001,119.66400000000002,119.674,119.68400000000001,119.694,119.70400000000001,119.71400000000001,119.724,119.73400000000001,119.74400000000001,119.754,119.76400000000001,119.77400000000002,119.784,119.79400000000001,119.80400000000002,119.81400000000001,119.82400000000001,119.834,119.84400000000001,119.85400000000001,119.864,119.864,120.554,120.56400000000001,120.574,120.584,120.59400000000001,120.604,120.614,120.624,120.634,120.644,120.654,120.664,120.674,120.684,120.694,120.70400000000001,120.714,120.724,120.73400000000001,120.744,120.754,120.764,120.774,120.784,120.794,120.804,120.81400000000001,120.824,120.834,120.84400000000001,120.854,120.864,120.874,120.884,120.894,120.904,120.914,120.924,120.934,120.944,120.95400000000001,120.964,120.974,120.98400000000001,120.994,121.004,121.014,121.024,121.034,121.044,121.054,121.06400000000001,121.074,121.084,121.09400000000001,121.104,121.114,121.124,121.134,121.144,121.154,121.164,121.174,121.184,121.194,121.20400000000001,121.214,121.224,121.23400000000001,121.244,121.254,121.264,121.274,121.284,121.294,121.304,121.31400000000001,121.324,121.334,121.34400000000001,121.354,121.364,121.374,121.384,121.394,121.404,121.414,121.424,121.434,121.444,121.45400000000001,121.464,121.474,121.48400000000001,121.494,121.504,121.514,121.524,121.534,121.544,121.544,122.23400000000001,122.24400000000001,122.254,122.26400000000001,122.27400000000002,122.284,122.29400000000001,122.304,122.31400000000001,122.32400000000001,122.334,122.34400000000001,122.35400000000001,122.364,122.37400000000001,122.38400000000001,122.394,122.40400000000001,122.41400000000002,122.424,122.43400000000001,122.444,122.45400000000001,122.46400000000001,122.474,122.48400000000001,122.49400000000001,122.504,122.51400000000001,122.52400000000002,122.534,122.54400000000001,122.554,122.56400000000001,122.57400000000001,122.584,122.59400000000001,122.60400000000001,122.614,122.62400000000001,122.63400000000001,122.644,122.65400000000001,122.66400000000002,122.674,122.68400000000001,122.694,122.70400000000001,122.71400000000001,122.724,122.73400000000001,122.74400000000001,122.754,122.76400000000001,122.77400000000002,122.784,122.79400000000001,122.804,122.81400000000001,122.82400000000001,122.834,122.84400000000001,122.85400000000001,122.864,122.87400000000001,122.88400000000001,122.894,122.90400000000001,122.91400000000002,122.924,122.93400000000001,122.944,122.95400000000001,122.96400000000001,122.974,122.98400000000001,122.99400000000001,123.004,123.01400000000001,123.02400000000002,123.034,123.04400000000001,123.054,123.06400000000001,123.07400000000001,123.084,123.09400000000001,123.10400000000001,123.114,123.12400000000001,123.13400000000001,123.144,123.15400000000001,123.16400000000002,123.174,123.18400000000001,123.194,123.20400000000001,123.21400000000001,123.224,123.224,123.914,123.924,123.934,123.944,123.95400000000001,123.964,123.974,123.984,123.994,124.004,124.014,124.024,124.034,124.044,124.054,124.06400000000001,124.074,124.084,124.09400000000001,124.104,124.114,124.124,124.134,124.144,124.154,124.164,124.174,124.184,124.194,124.20400000000001,124.214,124.224,124.234,124.244,124.254,124.264,124.274,124.284,124.294,124.304,124.31400000000001,124.324,124.334,124.34400000000001,124.354,124.364,124.374,124.384,124.394,124.404,124.414,124.424,124.434,124.444,124.45400000000001,124.464,124.474,124.484,124.494,124.504,124.514,124.524,124.534,124.544,124.554,124.56400000000001,124.574,124.584,124.59400000000001,124.604,124.614,124.624,124.634,124.644,124.654,124.664,124.674,124.684,124.694,124.70400000000001,124.714,124.724,124.734,124.744,124.754,124.764,124.774,124.784,124.794,124.804,124.81400000000001,124.824,124.834,124.84400000000001,124.854,124.864,124.874,124.884,124.894,124.904,124.904,125.59400000000001,125.60400000000001,125.614,125.62400000000001,125.63400000000001,125.644,125.65400000000001,125.664,125.674,125.68400000000001,125.694,125.70400000000001,125.71400000000001,125.724,125.73400000000001,125.74400000000001,125.754,125.76400000000001,125.77400000000002,125.784,125.79400000000001,125.804,125.81400000000001,125.82400000000001,125.834,125.84400000000001,125.85400000000001,125.864,125.87400000000001,125.88400000000001,125.894,125.90400000000001,125.914,125.924,125.93400000000001,125.944,125.95400000000001,125.96400000000001,125.974,125.98400000000001,125.99400000000001,126.004,126.01400000000001,126.02400000000002,126.034,126.04400000000001,126.054,126.06400000000001,126.07400000000001,126.084,126.09400000000001,126.10400000000001,126.114,126.12400000000001,126.13400000000001,126.144,126.15400000000001,126.164,126.174,126.18400000000001,126.194,126.20400000000001,126.21400000000001,126.224,126.23400000000001,126.24400000000001,126.254,126.26400000000001,126.27400000000002,126.284,126.29400000000001,126.304,126.31400000000001,126.32400000000001,126.334,126.34400000000001,126.35400000000001,126.364,126.37400000000001,126.38400000000001,126.394,126.40400000000001,126.414,126.424,126.43400000000001,126.444,126.45400000000001,126.46400000000001,126.474,126.48400000000001,126.49400000000001,126.504,126.51400000000001,126.52400000000002,126.534,126.54400000000001,126.554,126.56400000000001,126.57400000000001,126.584,126.584,127.274,127.284,127.294,127.304,127.31400000000001,127.324,127.334,127.344,127.354,127.364,127.374,127.384,127.394,127.404,127.414,127.424,127.434,127.444,127.45400000000001,127.464,127.474,127.484,127.494,127.504,127.514,127.524,127.534,127.544,127.554,127.56400000000001,127.574,127.584,127.594,127.604,127.614,127.624,127.634,127.644,127.654,127.664,127.674,127.684,127.694,127.70400000000001,127.714,127.724,127.734,127.744,127.754,127.764,127.774,127.784,127.794,127.804,127.81400000000001,127.824,127.834,127.844,127.854,127.864,127.874,127.884,127.894,127.904,127.914,127.924,127.934,127.944,127.95400000000001,127.964,127.974,127.984,127.994,128.004,128.014,128.024,128.034,128.044,128.054,128.064,128.074,128.084,128.094,128.104,128.114,128.124,128.13400000000001,128.144,128.154,128.164,128.174,128.184,128.194,128.204,128.214,128.224,128.234,128.244,128.254,128.264,128.264,128.954,128.964,128.97400000000002,128.984,128.994,129.00400000000002,129.014,129.024,129.03400000000002,129.044,129.054,129.06400000000002,129.074,129.084,129.094,129.104,129.114,129.124,129.13400000000001,129.144,129.154,129.16400000000002,129.174,129.184,129.19400000000002,129.204,129.214,129.22400000000002,129.234,129.244,129.25400000000002,129.264,129.274,129.28400000000002,129.294,129.304,129.31400000000002,129.324,129.334,129.344,129.354,129.364,129.374,129.38400000000001,129.394,129.404,129.41400000000002,129.424,129.434,129.44400000000002,129.454,129.464,129.47400000000002,129.484,129.494,129.50400000000002,129.514,129.524,129.53400000000002,129.544,129.554,129.56400000000002,129.574,129.584,129.594,129.604,129.614,129.624,129.63400000000001,129.644,129.654,129.66400000000002,129.674,129.684,129.69400000000002,129.704,129.714,129.72400000000002,129.734,129.744,129.75400000000002,129.764,129.774,129.78400000000002,129.794,129.804,129.81400000000002,129.824,129.834,129.844,129.854,129.864,129.874,129.88400000000001,129.894,129.904,129.91400000000002,129.924,129.934,129.94400000000002,129.94400000000002,130.63400000000001,130.644,130.65400000000002,130.66400000000002,130.674,130.68400000000003,130.69400000000002,130.704,130.71400000000003,130.72400000000002,130.734,130.74400000000003,130.75400000000002,130.764,130.774,130.78400000000002,130.794,130.804,130.81400000000002,130.824,130.834,130.84400000000002,130.854,130.864,130.87400000000002,130.88400000000001,130.894,130.90400000000002,130.91400000000002,130.924,130.93400000000003,130.94400000000002,130.954,130.96400000000003,130.97400000000002,130.984,130.99400000000003,131.00400000000002,131.014,131.024,131.03400000000002,131.044,131.054,131.06400000000002,131.074,131.084,131.09400000000002,131.104,131.114,131.12400000000002,131.13400000000001,131.144,131.15400000000002,131.16400000000002,131.174,131.18400000000003,131.19400000000002,131.204,131.21400000000003,131.22400000000002,131.234,131.24400000000003,131.25400000000002,131.264,131.274,131.28400000000002,131.294,131.304,131.31400000000002,131.324,131.334,131.34400000000002,131.354,131.364,131.37400000000002,131.38400000000001,131.394,131.40400000000002,131.41400000000002,131.424,131.43400000000003,131.44400000000002,131.454,131.46400000000003,131.47400000000002,131.484,131.49400000000003,131.50400000000002,131.514,131.524,131.53400000000002,131.544,131.554,131.56400000000002,131.574,131.584,131.59400000000002,131.604,131.614,131.62400000000002,131.62400000000002,132.314,132.32399999999998,132.334,132.344,132.35399999999998,132.364,132.374,132.384,132.394,132.404,132.414,132.424,132.434,132.444,132.45399999999998,132.464,132.474,132.48399999999998,132.494,132.504,132.51399999999998,132.524,132.534,132.54399999999998,132.554,132.564,132.57399999999998,132.584,132.594,132.60399999999998,132.614,132.624,132.634,132.644,132.654,132.664,132.674,132.684,132.694,132.70399999999998,132.714,132.724,132.73399999999998,132.744,132.754,132.76399999999998,132.774,132.784,132.79399999999998,132.804,132.814,132.82399999999998,132.834,132.844,132.85399999999998,132.864,132.874,132.884,132.894,132.904,132.914,132.924,132.934,132.944,132.95399999999998,132.964,132.974,132.98399999999998,132.994,133.004,133.01399999999998,133.024,133.034,133.04399999999998,133.054,133.064,133.07399999999998,133.084,133.094,133.10399999999998,133.114,133.124,133.134,133.144,133.154,133.164,133.174,133.184,133.194,133.20399999999998,133.214,133.224,133.23399999999998,133.244,133.254,133.26399999999998,133.274,133.284,133.29399999999998,133.304,133.304,133.994,134.004,134.014,134.024,134.034,134.044,134.054,134.064,134.074,134.084,134.094,134.104,134.114,134.124,134.134,134.144,134.154,134.164,134.174,134.184,134.194,134.204,134.214,134.224,134.234,134.244,134.254,134.264,134.274,134.284,134.294,134.304,134.314,134.324,134.334,134.344,134.354,134.364,134.374,134.384,134.394,134.404,134.414,134.424,134.434,134.444,134.454,134.464,134.474,134.484,134.494,134.504,134.514,134.524,134.534,134.544,134.554,134.564,134.574,134.584,134.594,134.604,134.614,134.624,134.634,134.644,134.654,134.664,134.674,134.684,134.694,134.704,134.714,134.724,134.734,134.744,134.754,134.764,134.774,134.784,134.794,134.804,134.814,134.824,134.834,134.844,134.854,134.864,134.874,134.884,134.894,134.904,134.914,134.924,134.934,134.944,134.954,134.964,134.974,134.984,134.984,135.674,135.684,135.69400000000002,135.704,135.714,135.72400000000002,135.734,135.744,135.75400000000002,135.764,135.774,135.78400000000002,135.794,135.804,135.814,135.824,135.834,135.844,135.854,135.864,135.874,135.88400000000001,135.894,135.904,135.91400000000002,135.924,135.934,135.94400000000002,135.954,135.964,135.97400000000002,135.984,135.994,136.00400000000002,136.014,136.024,136.03400000000002,136.044,136.054,136.064,136.074,136.084,136.094,136.104,136.114,136.124,136.13400000000001,136.144,136.154,136.16400000000002,136.174,136.184,136.19400000000002,136.204,136.214,136.22400000000002,136.234,136.244,136.25400000000002,136.264,136.274,136.28400000000002,136.294,136.304,136.314,136.324,136.334,136.344,136.354,136.364,136.374,136.38400000000001,136.394,136.404,136.41400000000002,136.424,136.434,136.44400000000002,136.454,136.464,136.47400000000002,136.484,136.494,136.50400000000002,136.514,136.524,136.53400000000002,136.544,136.554,136.564,136.574,136.584,136.594,136.604,136.614,136.624,136.63400000000001,136.644,136.654,136.66400000000002,136.66400000000002,137.354,137.364,137.37400000000002,137.38400000000001,137.394,137.40400000000002,137.41400000000002,137.424,137.43400000000003,137.44400000000002,137.454,137.46400000000003,137.47400000000002,137.484,137.494,137.50400000000002,137.514,137.524,137.53400000000002,137.544,137.554,137.56400000000002,137.574,137.584,137.59400000000002,137.604,137.614,137.62400000000002,137.63400000000001,137.644,137.65400000000002,137.66400000000002,137.674,137.68400000000003,137.69400000000002,137.704,137.71400000000003,137.72400000000002,137.734,137.744,137.75400000000002,137.764,137.774,137.78400000000002,137.794,137.804,137.81400000000002,137.824,137.834,137.84400000000002,137.854,137.864,137.87400000000002,137.88400000000001,137.894,137.90400000000002,137.91400000000002,137.924,137.93400000000003,137.94400000000002,137.954,137.96400000000003,137.97400000000002,137.984,137.994,138.00400000000002,138.014,138.024,138.03400000000002,138.044,138.054,138.06400000000002,138.074,138.084,138.09400000000002,138.104,138.114,138.12400000000002,138.13400000000001,138.144,138.15400000000002,138.16400000000002,138.174,138.18400000000003,138.19400000000002,138.204,138.21400000000003,138.22400000000002,138.234,138.244,138.25400000000002,138.264,138.274,138.28400000000002,138.294,138.304,138.31400000000002,138.324,138.334,138.34400000000002,138.34400000000002,139.034,139.04399999999998,139.054,139.064,139.07399999999998,139.084,139.094,139.10399999999998,139.114,139.124,139.134,139.144,139.154,139.164,139.17399999999998,139.184,139.194,139.20399999999998,139.214,139.224,139.23399999999998,139.244,139.254,139.26399999999998,139.274,139.284,139.29399999999998,139.304,139.314,139.32399999999998,139.334,139.344,139.35399999999998,139.364,139.374,139.384,139.394,139.404,139.414,139.42399999999998,139.434,139.444,139.45399999999998,139.464,139.474,139.48399999999998,139.494,139.504,139.51399999999998,139.524,139.534,139.54399999999998,139.554,139.564,139.57399999999998,139.584,139.594,139.60399999999998,139.614,139.624,139.634,139.644,139.654,139.664,139.67399999999998,139.684,139.694,139.70399999999998,139.714,139.724,139.73399999999998,139.744,139.754,139.76399999999998,139.774,139.784,139.79399999999998,139.804,139.814,139.82399999999998,139.834,139.844,139.85399999999998,139.864,139.874,139.884,139.894,139.904,139.914,139.92399999999998,139.934,139.944,139.95399999999998,139.964,139.974,139.98399999999998,139.994,140.004,140.01399999999998,140.024,140.024,140.714,140.724,140.734,140.744,140.754,140.764,140.774,140.784,140.794,140.804,140.814,140.824,140.834,140.844,140.85399999999998,140.864,140.874,140.884,140.894,140.904,140.914,140.924,140.934,140.944,140.954,140.964,140.974,140.984,140.994,141.004,141.014,141.024,141.034,141.044,141.054,141.064,141.074,141.084,141.094,141.10399999999998,141.114,141.124,141.134,141.144,141.154,141.164,141.174,141.184,141.194,141.204,141.214,141.224,141.234,141.244,141.254,141.264,141.274,141.284,141.294,141.304,141.314,141.324,141.334,141.344,141.35399999999998,141.364,141.374,141.384,141.394,141.404,141.414,141.424,141.434,141.444,141.454,141.464,141.474,141.484,141.494,141.504,141.514,141.524,141.534,141.544,141.554,141.564,141.574,141.584,141.594,141.60399999999998,141.614,141.624,141.634,141.644,141.654,141.664,141.674,141.684,141.694,141.704,141.704,142.394,142.404,142.41400000000002,142.424,142.434,142.44400000000002,142.454,142.464,142.47400000000002,142.484,142.494,142.50400000000002,142.514,142.524,142.534,142.544,142.554,142.564,142.574,142.584,142.594,142.604,142.614,142.624,142.63400000000001,142.644,142.654,142.66400000000002,142.674,142.684,142.69400000000002,142.704,142.714,142.72400000000002,142.734,142.744,142.75400000000002,142.764,142.774,142.784,142.794,142.804,142.814,142.824,142.834,142.844,142.854,142.864,142.874,142.88400000000001,142.894,142.904,142.91400000000002,142.924,142.934,142.94400000000002,142.954,142.964,142.97400000000002,142.984,142.994,143.00400000000002,143.014,143.024,143.034,143.044,143.054,143.064,143.074,143.084,143.094,143.104,143.114,143.124,143.13400000000001,143.144,143.154,143.16400000000002,143.174,143.184,143.19400000000002,143.204,143.214,143.22400000000002,143.234,143.244,143.25400000000002,143.264,143.274,143.284,143.294,143.304,143.314,143.324,143.334,143.344,143.354,143.364,143.374,143.38400000000001,143.38400000000001,144.074,144.084,144.09400000000002,144.104,144.114,144.12400000000002,144.13400000000001,144.144,144.15400000000002,144.16400000000002,144.174,144.18400000000003,144.19400000000002,144.204,144.214,144.22400000000002,144.234,144.244,144.25400000000002,144.264,144.274,144.28400000000002,144.294,144.304,144.31400000000002,144.324,144.334,144.34400000000002,144.354,144.364,144.37400000000002,144.38400000000001,144.394,144.40400000000002,144.41400000000002,144.424,144.43400000000003,144.44400000000002,144.454,144.464,144.47400000000002,144.484,144.494,144.50400000000002,144.514,144.524,144.53400000000002,144.544,144.554,144.56400000000002,144.574,144.584,144.59400000000002,144.604,144.614,144.62400000000002,144.63400000000001,144.644,144.65400000000002,144.66400000000002,144.674,144.68400000000003,144.69400000000002,144.704,144.714,144.72400000000002,144.734,144.744,144.75400000000002,144.764,144.774,144.78400000000002,144.794,144.804,144.81400000000002,144.824,144.834,144.84400000000002,144.854,144.864,144.87400000000002,144.88400000000001,144.894,144.90400000000002,144.91400000000002,144.924,144.93400000000003,144.94400000000002,144.954,144.964,144.97400000000002,144.984,144.994,145.00400000000002,145.014,145.024,145.03400000000002,145.044,145.054,145.06400000000002,145.06400000000002,145.754,145.76399999999998,145.774,145.784,145.79399999999998,145.804,145.814,145.82399999999998,145.834,145.844,145.85399999999998,145.864,145.874,145.884,145.89399999999998,145.904,145.914,145.92399999999998,145.934,145.944,145.95399999999998,145.964,145.974,145.98399999999998,145.994,146.004,146.01399999999998,146.024,146.034,146.04399999999998,146.054,146.064,146.07399999999998,146.084,146.094,146.10399999999998,146.114,146.124,146.134,146.14399999999998,146.154,146.164,146.17399999999998,146.184,146.194,146.20399999999998,146.214,146.224,146.23399999999998,146.244,146.254,146.26399999999998,146.274,146.284,146.29399999999998,146.304,146.314,146.32399999999998,146.334,146.344,146.35399999999998,146.364,146.374,146.384,146.39399999999998,146.404,146.414,146.42399999999998,146.434,146.444,146.45399999999998,146.464,146.474,146.48399999999998,146.494,146.504,146.51399999999998,146.524,146.534,146.54399999999998,146.554,146.564,146.57399999999998,146.584,146.594,146.60399999999998,146.614,146.624,146.634,146.64399999999998,146.654,146.664,146.67399999999998,146.684,146.694,146.70399999999998,146.714,146.724,146.73399999999998,146.744,146.744,147.434,147.444,147.454,147.464,147.474,147.484,147.494,147.504,147.514,147.524,147.534,147.544,147.554,147.564,147.57399999999998,147.584,147.594,147.60399999999998,147.614,147.624,147.634,147.644,147.654,147.664,147.674,147.684,147.694,147.704,147.714,147.724,147.734,147.744,147.754,147.764,147.774,147.784,147.794,147.804,147.814,147.82399999999998,147.834,147.844,147.85399999999998,147.864,147.874,147.884,147.894,147.904,147.914,147.924,147.934,147.944,147.954,147.964,147.974,147.984,147.994,148.004,148.014,148.024,148.034,148.044,148.054,148.064,148.07399999999998,148.084,148.094,148.10399999999998,148.114,148.124,148.134,148.144,148.154,148.164,148.174,148.184,148.194,148.204,148.214,148.224,148.234,148.244,148.254,148.264,148.274,148.284,148.294,148.304,148.314,148.32399999999998,148.334,148.344,148.35399999999998,148.364,148.374,148.384,148.394,148.404,148.414,148.424,148.424,149.114,149.124,149.13400000000001,149.144,149.154,149.16400000000002,149.174,149.184,149.19400000000002,149.204,149.214,149.22400000000002,149.234,149.244,149.254,149.264,149.274,149.284,149.294,149.304,149.314,149.324,149.334,149.344,149.354,149.364,149.374,149.38400000000001,149.394,149.404,149.41400000000002,149.424,149.434,149.44400000000002,149.454,149.464,149.47400000000002,149.484,149.494,149.504,149.514,149.524,149.534,149.544,149.554,149.564,149.574,149.584,149.594,149.604,149.614,149.624,149.63400000000001,149.644,149.654,149.66400000000002,149.674,149.684,149.69400000000002,149.704,149.714,149.72400000000002,149.734,149.744,149.754,149.764,149.774,149.784,149.794,149.804,149.814,149.824,149.834,149.844,149.854,149.864,149.874,149.88400000000001,149.894,149.904,149.91400000000002,149.924,149.934,149.94400000000002,149.954,149.964,149.97400000000002,149.984,149.994,150.004,150.014,150.024,150.034,150.044,150.054,150.064,150.074,150.084,150.094,150.104,150.104,150.794,150.804,150.81400000000002,150.824,150.834,150.84400000000002,150.854,150.864,150.87400000000002,150.88400000000001,150.894,150.90400000000002,150.91400000000002,150.924,150.934,150.94400000000002,150.954,150.964,150.97400000000002,150.984,150.994,151.00400000000002,151.014,151.024,151.03400000000002,151.044,151.054,151.06400000000002,151.074,151.084,151.09400000000002,151.104,151.114,151.12400000000002,151.13400000000001,151.144,151.15400000000002,151.16400000000002,151.174,151.184,151.19400000000002,151.204,151.214,151.22400000000002,151.234,151.244,151.25400000000002,151.264,151.274,151.28400000000002,151.294,151.304,151.31400000000002,151.324,151.334,151.34400000000002,151.354,151.364,151.37400000000002,151.38400000000001,151.394,151.40400000000002,151.41400000000002,151.424,151.434,151.44400000000002,151.454,151.464,151.47400000000002,151.484,151.494,151.50400000000002,151.514,151.524,151.53400000000002,151.544,151.554,151.56400000000002,151.574,151.584,151.59400000000002,151.604,151.614,151.62400000000002,151.63400000000001,151.644,151.65400000000002,151.66400000000002,151.674,151.684,151.69400000000002,151.704,151.714,151.72400000000002,151.734,151.744,151.75400000000002,151.764,151.774,151.78400000000002,151.78400000000002,152.474,152.48399999999998,152.494,152.504,152.51399999999998,152.524,152.534,152.54399999999998,152.554,152.564,152.57399999999998,152.584,152.594,152.60399999999998,152.61399999999998,152.624,152.634,152.64399999999998,152.654,152.664,152.67399999999998,152.684,152.694,152.70399999999998,152.714,152.724,152.73399999999998,152.744,152.754,152.76399999999998,152.774,152.784,152.79399999999998,152.804,152.814,152.82399999999998,152.834,152.844,152.85399999999998,152.86399999999998,152.874,152.884,152.89399999999998,152.904,152.914,152.92399999999998,152.934,152.944,152.95399999999998,152.964,152.974,152.98399999999998,152.994,153.004,153.01399999999998,153.024,153.034,153.04399999999998,153.054,153.064,153.07399999999998,153.084,153.094,153.10399999999998,153.11399999999998,153.124,153.134,153.14399999999998,153.154,153.164,153.17399999999998,153.184,153.194,153.20399999999998,153.214,153.224,153.23399999999998,153.244,153.254,153.26399999999998,153.274,153.284,153.29399999999998,153.304,153.314,153.32399999999998,153.334,153.344,153.35399999999998,153.36399999999998,153.374,153.384,153.39399999999998,153.404,153.414,153.42399999999998,153.434,153.444,153.45399999999998,153.464,153.464,154.154,154.164,154.174,154.184,154.194,154.204,154.214,154.224,154.234,154.244,154.254,154.264,154.274,154.284,154.29399999999998,154.304,154.314,154.32399999999998,154.334,154.344,154.35399999999998,154.364,154.374,154.384,154.394,154.404,154.414,154.424,154.434,154.444,154.454,154.464,154.474,154.484,154.494,154.504,154.514,154.524,154.534,154.54399999999998,154.554,154.564,154.57399999999998,154.584,154.594,154.60399999999998,154.614,154.624,154.634,154.644,154.654,154.664,154.674,154.684,154.694,154.704,154.714,154.724,154.734,154.744,154.754,154.764,154.774,154.784,154.79399999999998,154.804,154.814,154.82399999999998,154.834,154.844,154.85399999999998,154.864,154.874,154.884,154.894,154.904,154.914,154.924,154.934,154.944,154.954,154.964,154.974,154.984,154.994,155.004,155.014,155.024,155.034,155.04399999999998,155.054,155.064,155.07399999999998,155.084,155.094,155.10399999999998,155.114,155.124,155.134,155.144,155.144,155.834,155.844,155.854,155.864,155.874,155.88400000000001,155.894,155.904,155.91400000000002,155.924,155.934,155.94400000000002,155.954,155.964,155.974,155.984,155.994,156.004,156.014,156.024,156.034,156.044,156.054,156.064,156.074,156.084,156.094,156.104,156.114,156.124,156.13400000000001,156.144,156.154,156.16400000000002,156.174,156.184,156.19400000000002,156.204,156.214,156.224,156.234,156.244,156.254,156.264,156.274,156.284,156.294,156.304,156.314,156.324,156.334,156.344,156.354,156.364,156.374,156.38400000000001,156.394,156.404,156.41400000000002,156.424,156.434,156.44400000000002,156.454,156.464,156.474,156.484,156.494,156.504,156.514,156.524,156.534,156.544,156.554,156.564,156.574,156.584,156.594,156.604,156.614,156.624,156.63400000000001,156.644,156.654,156.66400000000002,156.674,156.684,156.69400000000002,156.704,156.714,156.724,156.734,156.744,156.754,156.764,156.774,156.784,156.794,156.804,156.814,156.824,156.824,157.514,157.524,157.53400000000002,157.544,157.554,157.56400000000002,157.574,157.584,157.59400000000002,157.604,157.614,157.62400000000002,157.63400000000001,157.644,157.654,157.66400000000002,157.674,157.684,157.69400000000002,157.704,157.714,157.72400000000002,157.734,157.744,157.75400000000002,157.764,157.774,157.78400000000002,157.794,157.804,157.81400000000002,157.824,157.834,157.84400000000002,157.854,157.864,157.87400000000002,157.88400000000001,157.894,157.904,157.91400000000002,157.924,157.934,157.94400000000002,157.954,157.964,157.97400000000002,157.984,157.994,158.00400000000002,158.014,158.024,158.03400000000002,158.044,158.054,158.06400000000002,158.074,158.084,158.09400000000002,158.104,158.114,158.12400000000002,158.13400000000001,158.144,158.154,158.16400000000002,158.174,158.184,158.19400000000002,158.204,158.214,158.22400000000002,158.234,158.244,158.25400000000002,158.264,158.274,158.28400000000002,158.294,158.304,158.31400000000002,158.324,158.334,158.34400000000002,158.354,158.364,158.37400000000002,158.38400000000001,158.394,158.404,158.41400000000002,158.424,158.434,158.44400000000002,158.454,158.464,158.47400000000002,158.484,158.494,158.50400000000002,158.50400000000002,159.19400000000002,159.204,159.21400000000003,159.22400000000002,159.234,159.24400000000003,159.25400000000002,159.264,159.27400000000003,159.28400000000002,159.294,159.30400000000003,159.31400000000002,159.324,159.334,159.34400000000002,159.354,159.364,159.37400000000002,159.38400000000001,159.394,159.40400000000002,159.41400000000002,159.424,159.43400000000003,159.44400000000002,159.454,159.46400000000003,159.47400000000002,159.484,159.49400000000003,159.50400000000002,159.514,159.52400000000003,159.53400000000002,159.544,159.55400000000003,159.56400000000002,159.574,159.584,159.59400000000002,159.604,159.614,159.62400000000002,159.63400000000001,159.644,159.65400000000002,159.66400000000002,159.674,159.68400000000003,159.69400000000002,159.704,159.71400000000003,159.72400000000002,159.734,159.74400000000003,159.75400000000002,159.764,159.77400000000003,159.78400000000002,159.794,159.80400000000003,159.81400000000002,159.824,159.834,159.84400000000002,159.854,159.864,159.87400000000002,159.88400000000001,159.894,159.90400000000002,159.91400000000002,159.924,159.93400000000003,159.94400000000002,159.954,159.96400000000003,159.97400000000002,159.984,159.99400000000003,160.00400000000002,160.014,160.02400000000003,160.03400000000002,160.044,160.05400000000003,160.06400000000002,160.074,160.084,160.09400000000002,160.104,160.114,160.12400000000002,160.13400000000001,160.144,160.15400000000002,160.16400000000002,160.174,160.18400000000003,160.18400000000003,160.874,160.884,160.894,160.904,160.914,160.924,160.934,160.944,160.954,160.964,160.974,160.984,160.994,161.004,161.01399999999998,161.024,161.034,161.04399999999998,161.054,161.064,161.07399999999998,161.084,161.094,161.10399999999998,161.114,161.124,161.134,161.144,161.154,161.164,161.174,161.184,161.194,161.204,161.214,161.224,161.234,161.244,161.254,161.26399999999998,161.274,161.284,161.29399999999998,161.304,161.314,161.32399999999998,161.334,161.344,161.35399999999998,161.364,161.374,161.384,161.394,161.404,161.414,161.424,161.434,161.444,161.454,161.464,161.474,161.484,161.494,161.504,161.51399999999998,161.524,161.534,161.54399999999998,161.554,161.564,161.57399999999998,161.584,161.594,161.60399999999998,161.614,161.624,161.634,161.644,161.654,161.664,161.674,161.684,161.694,161.704,161.714,161.724,161.734,161.744,161.754,161.76399999999998,161.774,161.784,161.79399999999998,161.804,161.814,161.82399999999998,161.834,161.844,161.85399999999998,161.864,161.864,162.554,162.564,162.574,162.584,162.594,162.604,162.614,162.624,162.63400000000001,162.644,162.654,162.66400000000002,162.674,162.684,162.694,162.704,162.714,162.724,162.734,162.744,162.754,162.764,162.774,162.784,162.794,162.804,162.814,162.824,162.834,162.844,162.854,162.864,162.874,162.88400000000001,162.894,162.904,162.91400000000002,162.924,162.934,162.944,162.954,162.964,162.974,162.984,162.994,163.004,163.014,163.024,163.034,163.044,163.054,163.064,163.074,163.084,163.094,163.104,163.114,163.124,163.13400000000001,163.144,163.154,163.16400000000002,163.174,163.184,163.194,163.204,163.214,163.224,163.234,163.244,163.254,163.264,163.274,163.284,163.294,163.304,163.314,163.324,163.334,163.344,163.354,163.364,163.374,163.38400000000001,163.394,163.404,163.41400000000002,163.424,163.434,163.444,163.454,163.464,163.474,163.484,163.494,163.504,163.514,163.524,163.534,163.544,163.544,164.234,164.244,164.25400000000002,164.264,164.274,164.28400000000002,164.294,164.304,164.31400000000002,164.324,164.334,164.34400000000002,164.354,164.364,164.374,164.38400000000001,164.394,164.404,164.41400000000002,164.424,164.434,164.44400000000002,164.454,164.464,164.47400000000002,164.484,164.494,164.50400000000002,164.514,164.524,164.53400000000002,164.544,164.554,164.56400000000002,164.574,164.584,164.59400000000002,164.604,164.614,164.624,164.63400000000001,164.644,164.654,164.66400000000002,164.674,164.684,164.69400000000002,164.704,164.714,164.72400000000002,164.734,164.744,164.75400000000002,164.764,164.774,164.78400000000002,164.794,164.804,164.81400000000002,164.824,164.834,164.84400000000002,164.854,164.864,164.874,164.88400000000001,164.894,164.904,164.91400000000002,164.924,164.934,164.94400000000002,164.954,164.964,164.97400000000002,164.984,164.994,165.00400000000002,165.014,165.024,165.03400000000002,165.044,165.054,165.06400000000002,165.074,165.084,165.09400000000002,165.104,165.114,165.124,165.13400000000001,165.144,165.154,165.16400000000002,165.174,165.184,165.19400000000002,165.204,165.214,165.22400000000002,165.22400000000002,165.91400000000002,165.924,165.93400000000003,165.94400000000002,165.954,165.96400000000003,165.97400000000002,165.984,165.99400000000003,166.00400000000002,166.014,166.02400000000003,166.03400000000002,166.044,166.054,166.06400000000002,166.074,166.084,166.09400000000002,166.104,166.114,166.12400000000002,166.13400000000001,166.144,166.15400000000002,166.16400000000002,166.174,166.18400000000003,166.19400000000002,166.204,166.21400000000003,166.22400000000002,166.234,166.24400000000003,166.25400000000002,166.264,166.27400000000003,166.28400000000002,166.294,166.304,166.31400000000002,166.324,166.334,166.34400000000002,166.354,166.364,166.37400000000002,166.38400000000001,166.394,166.40400000000002,166.41400000000002,166.424,166.43400000000003,166.44400000000002,166.454,166.46400000000003,166.47400000000002,166.484,166.49400000000003,166.50400000000002,166.514,166.52400000000003,166.53400000000002,166.544,166.554,166.56400000000002,166.574,166.584,166.59400000000002,166.604,166.614,166.62400000000002,166.63400000000001,166.644,166.65400000000002,166.66400000000002,166.674,166.68400000000003,166.69400000000002,166.704,166.71400000000003,166.72400000000002,166.734,166.74400000000003,166.75400000000002,166.764,166.77400000000003,166.78400000000002,166.794,166.804,166.81400000000002,166.824,166.834,166.84400000000002,166.854,166.864,166.87400000000002,166.88400000000001,166.894,166.90400000000002,166.90400000000002,167.594,167.60399999999998,167.614,167.624,167.634,167.644,167.654,167.664,167.674,167.684,167.694,167.704,167.714,167.724,167.73399999999998,167.744,167.754,167.76399999999998,167.774,167.784,167.79399999999998,167.804,167.814,167.82399999999998,167.834,167.844,167.85399999999998,167.864,167.874,167.884,167.894,167.904,167.914,167.924,167.934,167.944,167.954,167.964,167.974,167.98399999999998,167.994,168.004,168.01399999999998,168.024,168.034,168.04399999999998,168.054,168.064,168.07399999999998,168.084,168.094,168.10399999999998,168.114,168.124,168.134,168.144,168.154,168.164,168.174,168.184,168.194,168.204,168.214,168.224,168.23399999999998,168.244,168.254,168.26399999999998,168.274,168.284,168.29399999999998,168.304,168.314,168.32399999999998,168.334,168.344,168.35399999999998,168.364,168.374,168.384,168.394,168.404,168.414,168.424,168.434,168.444,168.454,168.464,168.474,168.48399999999998,168.494,168.504,168.51399999999998,168.524,168.534,168.54399999999998,168.554,168.564,168.57399999999998,168.584,168.584,169.274,169.284,169.294,169.304,169.314,169.324,169.334,169.344,169.354,169.364,169.374,169.38400000000001,169.394,169.404,169.414,169.424,169.434,169.444,169.454,169.464,169.474,169.484,169.494,169.504,169.514,169.524,169.534,169.544,169.554,169.564,169.574,169.584,169.594,169.604,169.614,169.624,169.63400000000001,169.644,169.654,169.664,169.674,169.684,169.694,169.704,169.714,169.724,169.734,169.744,169.754,169.764,169.774,169.784,169.794,169.804,169.814,169.824,169.834,169.844,169.854,169.864,169.874,169.88400000000001,169.894,169.904,169.914,169.924,169.934,169.944,169.954,169.964,169.974,169.984,169.994,170.004,170.014,170.024,170.034,170.044,170.054,170.064,170.074,170.084,170.094,170.104,170.114,170.124,170.13400000000001,170.144,170.154,170.164,170.174,170.184,170.194,170.204,170.214,170.224,170.234,170.244,170.254,170.264,170.264,170.954,170.964,170.97400000000002,170.984,170.994,171.00400000000002,171.014,171.024,171.03400000000002,171.044,171.054,171.06400000000002,171.074,171.084,171.094,171.104,171.114,171.124,171.13400000000001,171.144,171.154,171.16400000000002,171.174,171.184,171.19400000000002,171.204,171.214,171.22400000000002,171.234,171.244,171.25400000000002,171.264,171.274,171.28400000000002,171.294,171.304,171.31400000000002,171.324,171.334,171.344,171.354,171.364,171.374,171.38400000000001,171.394,171.404,171.41400000000002,171.424,171.434,171.44400000000002,171.454,171.464,171.47400000000002,171.484,171.494,171.50400000000002,171.514,171.524,171.53400000000002,171.544,171.554,171.56400000000002,171.574,171.584,171.594,171.604,171.614,171.624,171.63400000000001,171.644,171.654,171.66400000000002,171.674,171.684,171.69400000000002,171.704,171.714,171.72400000000002,171.734,171.744,171.75400000000002,171.764,171.774,171.78400000000002,171.794,171.804,171.81400000000002,171.824,171.834,171.844,171.854,171.864,171.874,171.88400000000001,171.894,171.904,171.91400000000002,171.924,171.934,171.94400000000002,171.94400000000002,172.63400000000001,172.644,172.65400000000002,172.66400000000002,172.674,172.68400000000003,172.69400000000002,172.704,172.71400000000003,172.72400000000002,172.734,172.74400000000003,172.75400000000002,172.764,172.774,172.78400000000002,172.794,172.804,172.81400000000002,172.824,172.834,172.84400000000002,172.854,172.864,172.87400000000002,172.88400000000001,172.894,172.90400000000002,172.91400000000002,172.924,172.93400000000003,172.94400000000002,172.954,172.96400000000003,172.97400000000002,172.984,172.99400000000003,173.00400000000002,173.014,173.024,173.03400000000002,173.044,173.054,173.06400000000002,173.074,173.084,173.09400000000002,173.104,173.114,173.12400000000002,173.13400000000001,173.144,173.15400000000002,173.16400000000002,173.174,173.18400000000003,173.19400000000002,173.204,173.21400000000003,173.22400000000002,173.234,173.24400000000003,173.25400000000002,173.264,173.274,173.28400000000002,173.294,173.304,173.31400000000002,173.324,173.334,173.34400000000002,173.354,173.364,173.37400000000002,173.38400000000001,173.394,173.40400000000002,173.41400000000002,173.424,173.43400000000003,173.44400000000002,173.454,173.46400000000003,173.47400000000002,173.484,173.49400000000003,173.50400000000002,173.514,173.524,173.53400000000002,173.544,173.554,173.56400000000002,173.574,173.584,173.59400000000002,173.604,173.614,173.62400000000002,173.62400000000002,174.314,174.32399999999998,174.334,174.344,174.35399999999998,174.364,174.374,174.384,174.394,174.404,174.414,174.424,174.434,174.444,174.45399999999998,174.464,174.474,174.48399999999998,174.494,174.504,174.51399999999998,174.524,174.534,174.54399999999998,174.554,174.564,174.57399999999998,174.584,174.594,174.60399999999998,174.614,174.624,174.634,174.644,174.654,174.664,174.674,174.684,174.694,174.70399999999998,174.714,174.724,174.73399999999998,174.744,174.754,174.76399999999998,174.774,174.784,174.79399999999998,174.804,174.814,174.82399999999998,174.834,174.844,174.85399999999998,174.864,174.874,174.884,174.894,174.904,174.914,174.924,174.934,174.944,174.95399999999998,174.964,174.974,174.98399999999998,174.994,175.004,175.01399999999998,175.024,175.034,175.04399999999998,175.054,175.064,175.07399999999998,175.084,175.094,175.10399999999998,175.114,175.124,175.134,175.144,175.154,175.164,175.174,175.184,175.194,175.20399999999998,175.214,175.224,175.23399999999998,175.244,175.254,175.26399999999998,175.274,175.284,175.29399999999998,175.304,175.304,175.994,176.004,176.014,176.024,176.034,176.044,176.054,176.064,176.074,176.084,176.094,176.104,176.114,176.124,176.134,176.144,176.154,176.164,176.174,176.184,176.194,176.204,176.214,176.224,176.234,176.244,176.254,176.264,176.274,176.284,176.294,176.304,176.314,176.324,176.334,176.344,176.354,176.364,176.374,176.384,176.394,176.404,176.414,176.424,176.434,176.444,176.454,176.464,176.474,176.484,176.494,176.504,176.514,176.524,176.534,176.544,176.554,176.564,176.574,176.584,176.594,176.604,176.614,176.624,176.634,176.644,176.654,176.664,176.674,176.684,176.694,176.704,176.714,176.724,176.734,176.744,176.754,176.764,176.774,176.784,176.794,176.804,176.814,176.824,176.834,176.844,176.854,176.864,176.874,176.884,176.894,176.904,176.914,176.924,176.934,176.944,176.954,176.964,176.974,176.984,176.984,177.674,177.684,177.69400000000002,177.704,177.714,177.72400000000002,177.734,177.744,177.75400000000002,177.764,177.774,177.78400000000002,177.794,177.804,177.814,177.824,177.834,177.844,177.854,177.864,177.874,177.88400000000001,177.894,177.904,177.91400000000002,177.924,177.934,177.94400000000002,177.954,177.964,177.97400000000002,177.984,177.994,178.00400000000002,178.014,178.024,178.03400000000002,178.044,178.054,178.064,178.074,178.084,178.094,178.104,178.114,178.124,178.13400000000001,178.144,178.154,178.16400000000002,178.174,178.184,178.19400000000002,178.204,178.214,178.22400000000002,178.234,178.244,178.25400000000002,178.264,178.274,178.28400000000002,178.294,178.304,178.314,178.324,178.334,178.344,178.354,178.364,178.374,178.38400000000001,178.394,178.404,178.41400000000002,178.424,178.434,178.44400000000002,178.454,178.464,178.47400000000002,178.484,178.494,178.50400000000002,178.514,178.524,178.53400000000002,178.544,178.554,178.564,178.574,178.584,178.594,178.604,178.614,178.624,178.63400000000001,178.644,178.654,178.66400000000002,178.66400000000002,179.354,179.364,179.37400000000002,179.38400000000001,179.394,179.40400000000002,179.41400000000002,179.424,179.43400000000003,179.44400000000002,179.454,179.46400000000003,179.47400000000002,179.484,179.494,179.50400000000002,179.514,179.524,179.53400000000002,179.544,179.554,179.56400000000002,179.574,179.584,179.59400000000002,179.604,179.614,179.62400000000002,179.63400000000001,179.644,179.65400000000002,179.66400000000002,179.674,179.68400000000003,179.69400000000002,179.704,179.71400000000003,179.72400000000002,179.734,179.744,179.75400000000002,179.764,179.774,179.78400000000002,179.794,179.804,179.81400000000002,179.824,179.834,179.84400000000002,179.854,179.864,179.87400000000002,179.88400000000001,179.894,179.90400000000002,179.91400000000002,179.924,179.93400000000003,179.94400000000002,179.954,179.96400000000003,179.97400000000002,179.984,179.994,180.00400000000002,180.014,180.024,180.03400000000002,180.044,180.054,180.06400000000002,180.074,180.084,180.09400000000002,180.104,180.114,180.12400000000002,180.13400000000001,180.144,180.15400000000002,180.16400000000002,180.174,180.18400000000003,180.19400000000002,180.204,180.21400000000003,180.22400000000002,180.234,180.244,180.25400000000002,180.264,180.274,180.28400000000002,180.294,180.304,180.31400000000002,180.324,180.334,180.34400000000002,180.34400000000002,181.034,181.04399999999998,181.054,181.064,181.07399999999998,181.084,181.094,181.10399999999998,181.114,181.124,181.134,181.144,181.154,181.164,181.17399999999998,181.184,181.194,181.20399999999998,181.214,181.224,181.23399999999998,181.244,181.254,181.26399999999998,181.274,181.284,181.29399999999998,181.304,181.314,181.32399999999998,181.334,181.344,181.35399999999998,181.364,181.374,181.384,181.394,181.404,181.414,181.42399999999998,181.434,181.444,181.45399999999998,181.464,181.474,181.48399999999998,181.494,181.504,181.51399999999998,181.524,181.534,181.54399999999998,181.554,181.564,181.57399999999998,181.584,181.594,181.60399999999998,181.614,181.624,181.634,181.644,181.654,181.664,181.67399999999998,181.684,181.694,181.70399999999998,181.714,181.724,181.73399999999998,181.744,181.754,181.76399999999998,181.774,181.784,181.79399999999998,181.804,181.814,181.82399999999998,181.834,181.844,181.85399999999998,181.864,181.874,181.884,181.894,181.904,181.914,181.92399999999998,181.934,181.944,181.95399999999998,181.964,181.974,181.98399999999998,181.994,182.004,182.01399999999998,182.024,182.024,182.714,182.724,182.734,182.744,182.754,182.764,182.774,182.784,182.794,182.804,182.814,182.824,182.834,182.844,182.85399999999998,182.864,182.874,182.884,182.894,182.904,182.914,182.924,182.934,182.944,182.954,182.964,182.974,182.984,182.994,183.004,183.014,183.024,183.034,183.044,183.054,183.064,183.074,183.084,183.094,183.10399999999998,183.114,183.124,183.134,183.144,183.154,183.164,183.174,183.184,183.194,183.204,183.214,183.224,183.234,183.244,183.254,183.264,183.274,183.284,183.294,183.304,183.314,183.324,183.334,183.344,183.35399999999998,183.364,183.374,183.384,183.394,183.404,183.414,183.424,183.434,183.444,183.454,183.464,183.474,183.484,183.494,183.504,183.514,183.524,183.534,183.544,183.554,183.564,183.574,183.584,183.594,183.60399999999998,183.614,183.624,183.634,183.644,183.654,183.664,183.674,183.684,183.694,183.704,183.704]},{"y":[-3.8983488,-12.644585,2.5210338,-4.3756504,-17.766373,1.8359823,14.627451,-10.463415,-19.154423,6.0856166,14.392164,-2.000387,-14.547751,-16.118488,-6.898318,5.003468,1.3423786,-10.718207,-6.9024773,3.8826761,-0.43386567,-9.994714,-8.617827,6.9303417,16.271442,-10.689759,-31.8511,-7.335086,3.8188396,-1.3907261,21.843002,21.872608,-5.583065,-0.47670448,2.4078016,-11.645042,3.4021833,16.587906,1.8485134,2.201282,15.939826,11.599359,3.14914,1.7935743,-3.987009,-8.573801,-8.1932335,-4.7354736,5.1572194,-1.1040902,-21.610044,-13.153829,4.3607206,-4.513401,-7.551482,4.803012,4.3425527,-6.9070134,-8.2143955,7.8930693,18.909363,10.015022,2.6484437,0.25161648,-7.7282104,-11.986234,-9.878999,-4.9828587,3.321846,9.241848,2.8203716,-11.186592,-10.36117,-3.3414388,-9.03721,-3.0494595,11.157545,7.89258,6.4267697,8.462196,4.630993,0.73051906,-18.197495,-19.105246,23.683647,32.83918,-1.5744388,-7.7752414,0.84239626,-0.21868849,4.684417,2.42515,-2.1391068,2.9791899,-5.3926764,-9.070389,13.955732,13.697436,-15.197917,-14.283192,null,9.166357,3.0485883,-4.2876673,-3.52238,0.52906466,3.0258255,8.96789,10.001915,1.631455,-2.4438372,0.65392685,2.829764,-3.7856693,-10.677332,-2.6595335,2.369735,-1.4005713,7.3405905,14.458437,9.249422,6.1192055,-0.39015234,-6.4798665,0.5091674,9.177729,7.005699,-3.062489,-5.576456,1.24618,2.7737408,1.91698,3.0347755,8.895975,21.270359,19.968357,7.31884,-4.8844247,-24.26718,-27.591454,-14.945367,-17.203255,-13.420184,-1.4300523,-0.15023994,9.869232,14.168752,3.6166563,10.835289,20.918844,14.325645,6.1084757,4.3153515,15.960395,20.753551,2.2410035,-3.5586002,6.5381193,2.5895956,-4.7448273,-3.6926064,-5.159897,-11.295098,-10.527142,2.3143783,11.614803,13.639593,18.03456,9.89982,-11.714668,-17.497023,-8.270529,-4.5281568,-2.9901664,2.401338,5.937963,5.2943015,2.2002084,-1.6897767,-5.815552,-7.6472683,-3.3491642,-0.7907376,-0.8234887,7.4675884,5.2012434,-11.557914,-4.7488117,11.188311,4.9909344,-1.6411088,-8.95638,-13.836552,4.7444267,4.604723,-16.620422,-3.628519,8.916715,-4.9746685,2.881379,15.712782,null,0.8297775,-3.2424462,-15.02438,4.341266,15.987996,5.5576935,-7.740083,-13.517841,10.246313,18.41397,-18.492355,-13.964024,15.672472,-11.576072,-26.371305,0.7153523,2.9458394,1.8115067,8.317118,-4.0898848,-1.1299009,11.408472,5.769835,5.116954,-2.9749541,-18.251057,-6.1373444,3.1596625,4.142517,22.75864,16.503496,-0.67461157,16.832186,9.343475,-24.05965,-13.11061,4.9389715,-5.3399353,-0.83783627,15.940895,8.175165,-10.864782,-4.974633,3.7843702,-14.827001,-15.242023,-0.19074678,-21.567696,-28.676353,-2.3996487,-7.2578154,-19.429869,-9.35359,-9.60409,-11.305676,-8.3797865,-9.088999,9.537345,29.795422,15.093917,-4.671272,4.080329,14.764997,4.3257647,-11.135771,-19.087004,-12.725943,-1.1234126,-6.321424,1.509541,29.97741,24.905762,9.599545,17.845318,8.042684,-7.1700764,-1.2757999,1.8447132,6.1859665,6.916976,-5.3207417,-2.96719,6.916644,3.7143927,-2.0030227,0.47693825,14.166094,18.939339,5.1404924,-3.2138634,-2.2968502,5.09859,6.28271,-17.71658,-22.28711,6.774229,11.66511,3.4844656,5.2759714,-10.631889,null,-13.127876,3.6276598,4.168187,9.9049835,15.552092,2.124352,-9.490156,-13.109148,-1.4163127,13.364964,-4.8249683,-18.502989,-1.6422496,1.224374,-1.8969675,8.599524,7.472452,-6.9028397,-17.872944,-12.259417,-1.5467072,-3.6815314,4.8059816,12.750952,-3.7034955,-7.7287135,-6.6576185,-21.408699,-19.08488,-10.682054,-9.772273,-2.5486107,-6.492304,-8.479202,3.0756693,1.7987018,4.280399,13.73749,4.9329176,-5.665168,-15.025069,-21.590279,-1.3879213,14.658705,4.223525,10.274421,27.226746,12.687859,-4.2096987,8.026693,16.506031,12.465255,11.874214,2.1860676,-5.665296,0.19553852,-4.0116725,-9.176071,-2.0499005,-2.9833398,-8.515642,-2.9065018,15.092446,26.669397,8.489076,-6.195182,4.1140404,-3.4304948,-20.733078,-16.577,-14.328417,-14.195263,-3.9424968,-1.6329899,-2.6924858,0.5277033,-5.466976,-12.620201,-5.5620637,5.532777,3.028746,-9.741081,-13.228622,-6.511922,-2.6572707,1.0887742,4.2501225,-2.124295,-8.733267,-7.9245443,-4.2185984,4.33011,6.845125,-5.696537,-10.91416,-2.6082034,1.3745685,-0.58318746,-3.7004638,0.70687795,null,6.231578,6.028405,11.764479,10.760564,-0.2284987,2.8689907,14.718227,7.3801355,-7.758275,-4.573636,13.755559,20.438229,2.8334768,-10.80227,-4.0114098,2.594749,2.5435224,0.23436856,-3.1839356,-0.97275543,0.3571787,-3.1738,-0.71570563,5.1558123,6.291539,5.310245,9.17981,15.766242,13.200646,5.3473396,-0.5635052,-8.487692,-6.9307966,5.1825404,3.2152185,-8.591381,-3.6241689,10.640335,8.206468,-0.2622671,5.9851327,9.93332,5.05235,3.995512,-1.4021239,-2.7710476,7.6824484,7.126768,0.08325291,-2.4769845,-6.581747,-1.3730075,3.3292513,-8.123206,-13.049054,-1.4931756,9.433476,4.7807236,-7.205637,-1.3654089,5.85306,-10.703915,-25.506428,-21.57734,-8.857155,-0.062245846,-10.291203,-18.576153,-1.6332636,8.1164665,0.39263916,9.090071,16.517088,-1.7466965,2.5097816,27.567242,7.352132,-22.584583,-9.584443,2.8868334,3.872821,8.313012,2.8473935,2.277277,0.23653269,-5.8773594,13.354359,12.568245,-16.624369,-0.36991882,22.303055,-2.070393,-16.19113,0.47566915,14.33805,5.3580446,-17.471594,-10.282675,18.8843,21.062618,null,-16.529022,-6.5088778,10.040351,19.107689,6.48983,-19.225996,-13.227373,8.869108,8.297934,-2.9127429,-8.709512,4.2960978,15.111736,-3.7065847,-1.6704159,15.3042,-6.0141664,-9.294102,2.896192,-27.348286,-23.156206,18.83381,7.7008715,-4.390601,10.194013,-9.802718,-21.689981,-0.50322723,-0.11153984,-2.3249984,10.055256,9.592957,7.3135624,-0.122234106,-12.928914,4.6000996,19.396336,2.318058,3.1047153,13.266351,3.822006,1.8283682,-6.0829954,-23.888683,-13.397606,-3.8763807,-22.067173,-25.78495,-9.62042,-10.683201,-22.265923,-14.146996,-9.235874,-23.155912,-13.020858,-1.2024884,-17.933014,-1.191997,17.191113,-13.883208,1.0871115,40.57006,3.8812315,-20.843994,8.926251,9.932163,4.08112,13.90937,6.374728,13.686742,27.697338,2.8500357,-17.154057,-12.162744,-11.863792,1.2109911,12.649631,-1.4785817,-0.6354394,2.5978632,-10.639168,9.487192,29.534674,3.5850916,-11.509222,-7.384841,-9.034473,-2.0221505,-0.20644236,2.3953207,13.856365,-2.2700624,-18.552397,1.0679102,18.737928,15.8510475,-1.2224393,-13.212315,2.9384036,11.842882,null,12.639731,-1.539177,-5.9029765,9.897541,-2.7380362,-16.12536,-2.264627,4.6675243,7.1277294,3.8193939,-13.541481,-10.449278,5.5673556,6.832013,8.040708,5.9256754,-7.317298,-15.444417,-12.937252,-3.387157,2.6330562,-2.177379,-8.442901,-7.9494305,2.6751633,11.639648,4.9135823,-1.3336964,-0.18863869,-7.1170335,-14.124592,-8.007754,-0.96206,0.7762928,8.760141,11.487953,-3.9672441,-7.363568,2.087147,-6.5779266,-7.877362,6.654987,4.126869,6.4823666,23.794735,21.266886,10.928431,16.59834,26.229559,27.35408,21.565952,19.94339,22.506351,24.77264,30.532625,26.645824,12.190117,6.4362173,-1.3874278,-17.45837,-21.144463,-12.120665,-5.170347,-7.3285484,-10.521029,-2.5760684,5.3832407,7.044962,9.1529665,-0.7712045,-13.875348,-4.302166,3.4607697,-8.90291,-10.632765,-4.395239,-12.263569,-9.833004,10.333208,13.609832,0.073271036,-2.9886358,1.4618407,-1.8197763,-6.8329625,-6.380887,-8.27648,-9.431893,-5.9023204,-8.952319,-4.639412,12.210642,2.8618464,-18.252562,-3.33995,14.911519,-1.1537155,-17.51112,-10.622992,-3.3018289,null,13.323373,8.148114,-6.7669797,-6.6981316,9.224041,8.037615,-10.976698,-7.787759,6.829476,9.582368,6.257392,-6.227504,-4.341936,17.366919,8.829027,-11.156631,2.6818142,9.068352,-5.5912657,1.2858372,9.619949,-12.608562,-24.33417,1.4835563,17.244978,-1.3715258,-9.902976,6.302555,16.033651,17.331291,15.074271,1.8441846,-4.7385597,2.6326742,5.1854115,0.43942547,-5.1244593,-2.963871,8.535972,9.705336,3.1092455,3.9058998,3.3925703,-2.510623,-21.569103,-42.231575,-23.74952,-2.5931835,-23.34859,-30.916117,-15.640451,-19.544067,-21.671328,-16.836483,-19.791256,-14.216013,-10.61992,-12.8953,-2.5802312,2.277151,-1.8478956,2.4842305,1.5120068,-1.378303,9.351962,12.32563,7.2655554,18.413078,24.139547,9.240123,5.251552,12.095188,7.1198025,-4.6679544,-13.883617,-4.958189,11.327451,-3.933904,-17.213333,4.202861,8.46919,-4.7422075,1.5034633,1.8690491,-11.035216,-18.02155,-18.023394,-3.639031,9.748742,0.8249173,-7.1365905,1.558471,8.30258,0.8290105,-7.1252604,0.4249897,6.1151333,-4.2709084,-8.738607,-5.4334493,null,11.067524,-0.914356,-23.7089,-8.748527,19.948666,11.873159,-3.1747077,-1.1758413,-6.2545657,-8.137943,1.7646093,-0.04474163,-4.3865967,-1.8303072,-8.213061,-4.8929763,12.026674,4.013305,-13.017887,-6.905733,-0.73836493,-3.2054305,-4.7046137,-6.9012175,-6.0449533,-14.909878,-20.723036,4.4897485,9.81399,-16.524456,-9.733829,-2.2652025,-20.480001,-2.4795156,12.062183,-17.648335,-8.504109,24.75078,10.183274,-1.2552023,4.3974895,-6.818573,5.9715176,20.911064,-1.1984386,6.756119,27.730707,8.397277,17.703705,39.994137,12.576554,10.139165,35.34603,16.909557,7.550803,29.990318,23.802671,0.3987894,-5.1977224,2.3390698,9.13548,6.287363,7.360584,12.168734,2.75674,-7.223586,-10.886662,-13.436412,-4.3985457,-0.8331288,-12.053177,-11.647619,-8.879252,-14.448767,-3.8659427,15.228281,19.614395,9.948917,-6.0347085,-16.302792,-19.824345,-10.315464,15.416582,12.527903,-8.664437,9.276681,13.205387,-16.715849,-1.5690408,16.32486,-11.493148,-11.606092,6.6188807,-4.5061526,-6.809246,4.0984964,6.8556075,10.905611,6.4442606,-9.460754,null,8.090595,-1.1013849,-13.28517,-3.9506726,8.1448345,-3.8759809,-6.0325446,12.312022,7.035911,-4.5314636,4.1137266,1.8257008,-5.604201,-1.7731481,-7.4336815,-11.434586,1.3752446,7.8578105,2.348957,4.533766,14.231539,10.008213,-2.8182206,0.76851404,5.154744,-2.5425684,4.3283234,12.16965,-6.4309196,-15.3450775,4.4459033,14.61212,5.1287456,-2.6145873,-3.33092,1.4828792,4.883746,-1.1258421,-4.696888,-1.677069,-6.299583,-13.1836,-8.072385,2.5678859,5.848723,-0.9500861,-11.507885,-18.36672,-14.526913,-0.75259256,4.156665,-3.5765123,-3.8092604,2.241118,3.337563,2.0146189,-1.6815281,-3.3105025,-2.1145692,-4.2411,1.2141564,10.619671,5.447908,0.38190365,7.688324,11.254002,4.233952,-7.0537124,-8.509661,4.541172,7.235836,-6.184165,-6.592413,8.669119,15.698316,10.050257,2.261572,-1.7376509,-0.48451996,1.2526941,-4.2239137,-11.472585,-7.886503,0.17511153,-0.36987746,-1.279069,4.789993,6.59009,2.3053632,2.5202317,8.012216,7.848619,-4.0049953,-7.9331284,6.2697883,6.1994596,-8.831015,-0.8857218,14.226179,6.900867,null,1.2617478,-4.86836,-7.019031,1.4391199,6.786739,3.1597261,1.6069489,-5.7370176,-10.323314,1.3995156,1.0418763,-5.512822,7.007553,4.1644583,-13.322817,-5.4547668,6.0195,8.603451,16.689064,5.610866,-15.143556,-8.901307,1.0920606,-4.1175017,-6.2754164,-3.7586565,-1.8136692,-2.075016,0.27557456,14.234791,19.715563,5.7903605,-1.2903336,2.738472,5.706615,4.55068,-6.850523,-12.0090885,0.15790892,3.7686563,0.20196533,3.551756,-1.1105838,-5.2422886,-1.6126592,-9.742596,-10.598839,1.246254,-10.933188,-20.66594,-1.3105826,-0.4478588,-14.193495,-8.357761,-10.69697,-17.04203,-1.7925391,7.2064714,7.529982,13.109867,5.652496,-2.4730453,2.918271,2.5797627,2.9097953,12.258417,15.185325,11.260936,5.7515,1.7555299,5.459593,5.3722916,-7.674253,-8.326523,16.464025,26.174576,5.519351,-6.255647,-8.947086,-10.917403,8.015428,7.98441,-22.801056,-12.540438,16.991583,9.400817,2.7958827,-0.7117734,-17.560005,-3.6626148,24.226929,15.753514,-3.8895867,-3.7510166,8.139225,11.692936,-2.0327396,-4.3643517,13.064276,9.737323,null,-13.147025,0.76780415,11.547168,6.7423635,1.46626,3.814149,-1.8124712,-15.156532,-7.7665753,5.1101575,-8.629393,-10.4457,8.948439,-4.219222,-20.614449,3.1119022,16.349056,5.656496,5.6191654,1.4066732,-10.096223,-4.4354534,5.337512,0.299613,-9.158016,-11.096376,-9.023213,-8.492706,-3.2389793,8.796458,9.5007,-9.062806,-18.27328,-5.861437,-4.3817916,-7.0712004,15.917357,22.616335,-5.522855,-16.387325,-9.531992,-4.5525236,6.6407633,8.998018,11.608773,22.612347,11.119255,7.824794,28.994968,16.857643,0.00840807,21.231567,24.889767,8.626442,11.863384,13.860945,8.508167,3.239914,-9.525339,-10.459623,0.82073927,0.1727817,-4.420661,-6.7465806,-10.44463,-4.636033,2.2404652,-5.541114,-14.37665,-11.552471,-7.0091305,-8.837094,-10.718157,-11.139757,-15.827792,-14.716192,-1.2719326,5.203783,-2.7309146,-9.8260765,-9.423553,-6.4654083,-7.1175237,-5.9497876,5.727558,9.975483,-3.4053442,-9.346218,-4.1191225,-2.8434513,1.5779438,6.7993298,5.7041726,9.194606,8.28918,-4.4062004,-6.854931,0.013751507,2.2817888,3.9662595,null,0.89455533,1.1680822,-12.724823,-4.6398096,3.1508234,-3.0770824,-0.6731734,1.9841505,1.627327,6.886361,6.249049,4.993801,4.4984193,-4.4740915,1.0421498,13.82093,-0.6927023,-14.406708,-1.1545241,10.108585,6.08302,-4.869043,-11.3173485,0.57534075,12.575538,4.0389075,-1.8014789,6.7976437,6.9736886,1.599682,7.264165,7.581504,-1.5484056,3.716187,13.15988,6.5580997,1.0584936,4.8821115,5.756974,4.335288,1.2832718,-5.6873956,-9.415791,-6.6148386,-3.5341544,-6.04768,-11.304344,-10.726091,-3.5425172,-0.49770927,-7.461914,-13.070238,-15.5867195,-23.616514,-18.13686,-1.7155342,-8.768275,-12.419549,3.8508406,-9.435944,-24.75283,1.5766115,12.30742,-1.4624264,4.2394037,6.3687825,-2.7293363,1.8243589,9.681475,11.790272,4.956655,-5.6289167,1.4564335,8.110062,-3.1441574,-7.040651,-4.734591,-6.491323,0.059521675,3.2852538,-4.9519777,-5.803667,-0.7953098,-4.2483974,-11.5681,-12.951295,-11.877117,-8.355337,7.54811,13.255995,-10.492013,-15.375719,13.431486,17.91872,-3.991929,-12.779594,-4.9075003,12.056572,11.723191,-10.674941,null,-1.0305843,0.55306673,-1.2771845,9.529652,13.486109,-10.142027,-22.110767,-8.39373,-2.7654586,-0.43494225,2.8975673,-21.065271,-31.331781,14.355936,34.320347,-6.1839037,-16.18457,10.970669,10.090118,-3.1124573,-9.910048,-22.172825,-12.682166,14.959474,18.344202,6.9953103,-4.28244,-19.120779,-13.981539,1.8375368,-1.9772449,-5.422131,-4.246284,-8.999617,-1.3933239,0.54717064,-9.67991,2.5908809,10.8148575,-1.2483053,1.9289856,0.8878436,-8.025823,6.1252,8.536824,-6.5460286,3.431773,15.192127,6.468342,5.6403236,13.648293,6.5861244,-6.8624372,1.7182503,13.062891,-2.3240185,-7.775884,5.9719067,-1.3883791,-8.547974,1.2471666,-4.2816076,-10.047138,2.8734188,9.427801,-0.6919961,-21.96035,-28.741291,-0.4494152,15.671116,-0.1378026,4.3623695,14.660284,-8.681631,-18.029242,-0.13515234,-1.8737097,-7.9722385,-1.2451944,-1.7419119,5.2445836,15.973448,6.1930666,-3.997983,-9.06864,-11.844685,2.604632,9.832333,2.8856528,1.7704089,-10.000356,-14.0615635,4.045578,2.3569076,5.32263,23.996117,-4.051681,-30.387157,-1.2127798,6.341213,null,9.770435,6.6573477,-9.766649,-10.00039,-1.7048905,-3.6347451,-6.5851183,-5.669547,3.4221523,12.136656,-0.3917458,-10.181518,0.34973574,3.3160534,1.8750324,8.616805,6.440119,-2.1629694,-6.150872,-9.017214,-7.865284,2.3860192,15.91613,14.644976,0.19189048,0.1922741,4.6251497,-11.601599,-21.902306,-8.191124,-1.4903526,-9.387553,-4.9792347,5.2123637,-0.2538116,-4.4188623,-2.433271,-9.452007,-8.637413,-2.8360505,-8.073662,-0.42975748,7.199309,-8.991437,-10.270306,5.0392013,1.1305273,-9.342367,-11.033689,-8.693058,-5.3724236,-3.0992737,1.0133772,-0.90907025,-4.765915,5.6121016,8.151508,-5.5964127,-12.22764,-13.95278,-4.5383997,15.26278,11.358401,0.7127514,9.03345,2.0968113,-15.842804,-7.856531,3.0961282,-3.857047,-5.4550357,-2.2323856,-8.443273,-12.528815,-9.231035,-2.433883,7.366969,10.36242,9.717606,10.509233,2.9120429,3.089961,10.891137,-3.6008327,-13.131189,0.47383833,-1.1650229,-6.7427998,3.8985658,6.8715925,5.7865458,6.637308,1.785331,1.8224287,1.2553394,-1.1939751,2.868527,-4.181534,-12.693888,-3.2262366,null,8.413929,6.873196,2.4995277,3.125146,-12.423832,-3.3541512,23.183315,10.360809,-9.131208,0.27597904,10.895472,10.714614,-1.4489481,-17.101053,-9.136713,9.374758,7.3335724,-3.0443606,-4.2995896,-2.2125697,3.1755807,5.1140585,-8.06015,-10.469551,8.367354,9.680592,-2.0152154,1.5827246,0.16574216,-6.7753572,3.0749564,13.582506,9.935997,-1.1213317,-6.289344,3.178761,5.409052,-4.2405043,3.6889446,13.759009,3.1340988,3.6277058,16.005032,4.3572097,-10.505821,-5.288907,-4.734926,-4.363586,4.314769,1.4902873,4.0449553,9.110421,-8.766358,-7.4575815,11.128455,-0.47429752,-1.7818208,12.521572,1.7181063,3.3419242,12.886526,-2.718505,-0.9968567,7.769641,-9.620639,-10.7265625,2.4533415,-4.9601564,-5.4204216,15.4427595,22.678696,5.467533,-4.112818,5.3671775,11.462754,15.903786,15.579279,-12.7441845,-29.509808,1.9420046,23.808949,7.0385942,-4.165599,-2.0040903,2.5571933,15.893785,14.997887,-2.076703,2.6212673,12.1970005,1.3715839,-0.7562257,3.8982298,-2.9199142,-6.4032655,-6.90851,1.9037466,20.11625,7.568551,-14.276323,null,6.0312777,-10.386538,-4.3003407,10.824469,5.887454,3.7954452,15.455025,10.883936,-9.451786,-3.728762,14.774258,0.9344368,-9.876482,11.53137,10.549629,-13.741053,-7.612071,7.5494637,1.8078318,-0.9932537,0.35705853,2.588495,12.453751,-1.2813644,-29.184961,-19.296953,1.2193298,-2.6304846,-2.8959198,-2.5916536,-16.159529,-18.250889,-5.8003664,1.6850364,7.844046,15.666555,4.784602,-19.780102,-20.474209,-9.971151,-17.289688,-15.671692,-3.488584,1.0399613,12.545376,6.865946,-19.016647,-7.721388,12.481868,-6.243391,-13.027351,7.3806434,8.731091,-5.0514793,-7.173832,1.0595541,3.6688733,-6.645405,-10.730225,-2.2841594,-6.0424747,-13.363176,-0.092342615,9.814867,2.4000297,-3.135507,-10.110571,-14.831158,-6.882038,-3.0687628,3.0652494,10.573592,-11.448646,-27.183762,-3.2201343,8.444799,-0.81052697,3.3244886,0.7316303,-8.269984,10.615342,27.774075,5.0649295,-17.084343,-3.712385,13.567501,9.158167,-6.662794,-11.109451,5.6129537,10.471317,-6.2842145,-5.6773705,0.641788,-5.070976,9.495087,23.249294,2.8457875,-12.3165,-6.0683136,null,-0.5769286,-8.728005,-8.6155205,1.0356469,0.5720539,-3.29211,2.8823771,-2.0209842,-2.0890434,14.264968,8.803034,-6.18164,0.46095395,8.92112,2.111642,-12.752552,-10.271746,12.503589,10.456541,-11.707325,-2.3514593,19.54055,12.323561,-0.3759091,4.944683,8.861507,4.616946,0.08771324,-4.64563,0.9333527,10.280577,5.0019035,3.4159446,6.518381,-4.806464,-7.1027403,2.8564873,0.63317394,-0.50342417,2.6850045,-3.5112844,-5.9389715,4.5470495,18.311014,16.469173,-4.0096607,-8.829994,6.8362837,6.0714083,-6.326644,-3.4747458,3.4912014,-1.0559268,-7.139859,-5.7395864,-4.6287208,-7.512398,-5.316119,-0.1067152,-1.406054,-2.185655,-0.56091833,-7.6530952,-12.924293,-7.688592,-8.302906,-8.628738,3.4667652,9.275072,5.13106,-1.084732,-10.742365,-3.903625,19.088844,21.19638,5.5454655,1.5133266,5.560464,3.3644524,-4.4034295,-9.55959,-6.003226,1.7191896,2.2390995,-3.6465125,-6.312833,-9.36608,-11.229496,-1.9255042,1.2133793,-9.511372,-7.817908,1.4914422,-7.4755826,-18.708485,-7.8352084,1.4945722,-13.266926,-15.138425,7.7762504,null,0.33835626,-5.3278227,6.8400126,4.602592,-0.85292554,8.666533,1.9996625,-7.3059826,-0.04366207,-3.0484574,-12.3914,-4.4134026,5.253194,-3.3613176,-6.3887444,5.8951025,-4.3048086,-16.825245,13.023185,29.64167,-1.2309245,-16.033283,2.2456532,17.642063,18.639069,-0.281883,-20.168781,-3.9863114,24.416563,20.144325,1.7303095,-5.6685038,-15.004641,-18.31272,-1.3064942,10.071842,7.411065,11.370285,7.449278,-15.061296,-20.43555,-2.6283488,2.1660967,-6.417712,-2.1154118,10.418178,6.8572574,-7.1987066,0.89621305,21.222675,12.859275,-4.971185,3.1262612,9.6953945,-1.9012175,-0.09587097,12.390501,3.0229023,-11.964708,-7.2873125,-4.5573797,-2.8127136,12.384793,8.079034,-9.346355,-1.174772,12.03408,16.218079,15.177411,2.3036382,-1.1912289,-2.9609995,-13.198227,3.6776023,22.23935,14.4051695,7.148872,-11.764441,-20.452015,8.456084,8.112998,-17.117723,-4.9315486,18.651493,25.172867,6.7595844,-22.799158,-8.267949,16.030075,-3.809064,-10.369721,1.4558921,-12.096352,-5.971468,13.791019,-9.853306,-17.437054,16.121754,15.252354,0.82930446,null,-14.824132,-19.240385,2.3604097,0.29183388,4.413484,7.7858267,-4.670699,5.781636,9.334556,-11.278264,6.0685854,23.854948,-6.363907,-8.79496,14.741659,2.1988554,-13.537173,-12.966093,3.5623913,29.120995,7.62741,-13.866535,21.464556,22.67786,-11.699987,-7.9769373,1.7146673,9.738632,18.885496,-5.209617,-24.68802,-17.444048,-9.82655,4.428189,10.071733,1.3984276,6.3865447,6.0812325,-9.177555,-6.572317,10.075153,12.894826,2.1969886,-5.7360344,-6.952631,-1.8235129,5.5604243,-3.0651073,-15.544083,-5.756729,2.7632937,-5.273446,-9.460322,-5.802262,2.0684538,3.285,-4.9246645,4.0226417,18.59464,8.924911,-2.6997037,-5.091507,-12.847551,-13.630378,-3.5479956,0.2560501,-4.549121,-9.6242895,-11.396896,-16.58126,-22.040096,-10.949713,3.2652194,-1.9415262,-12.616623,-11.227835,0.3629055,3.4277418,-10.735816,-8.473493,7.937135,-4.396689,-16.448566,-0.37340868,7.1534724,4.0747194,1.462183,-3.556426,4.4216137,10.966385,2.1906774,-5.409829,-8.901847,2.4733543,14.31514,0.44552517,-1.0841001,11.845762,5.46946,2.7698426,null,3.4985778,-13.576608,0.5714526,7.65366,-8.691753,-9.083978,9.275397,9.283978,-10.305078,-2.3021529,15.8758335,-4.0364094,-16.688549,1.7644246,5.4866667,-1.8094124,-4.791871,-10.388332,-9.147391,-4.0462976,-0.91359746,-1.1812799,-10.25061,-8.174529,6.711008,10.309574,8.491086,-0.27266598,-14.067363,-0.026790619,23.420212,19.050766,3.3597171,-11.004318,-15.698011,-5.06271,-6.118715,-8.553778,5.048832,2.5141616,-2.8280528,6.2258124,-4.7981014,-13.622446,2.3661387,4.8784003,-1.296741,3.1050403,6.0988226,5.936348,3.173748,5.852133,6.599201,-9.908822,-5.5217767,18.411545,10.412956,-0.94272566,11.142761,9.956121,1.5791576,11.061644,16.45062,1.3012033,-6.2556224,3.2380648,-0.32680416,-1.1236413,17.955563,14.012725,-6.292896,-9.549845,-4.5271215,12.411255,16.322496,-9.213733,-7.823818,10.199905,-1.0101861,-12.740261,-15.1478615,-11.006236,5.7929044,0.0060560703,-15.940281,-2.1525636,7.2094145,0.68289405,6.092375,0.6842598,-13.891837,2.665111,15.118456,-10.295403,-14.901424,12.681383,12.232691,-9.645903,-8.888545,9.936174,null,-11.883501,23.506948,2.3767395,-20.074383,8.739269,10.922668,-11.10768,-1.1760137,7.7875166,7.503959,12.400278,-1.0183525,-6.898602,7.5336504,-2.8057451,-8.56267,12.423639,1.4897406,-12.828548,10.456148,7.493446,-19.9697,-19.202026,-0.44847298,20.092175,11.430733,-22.482782,-16.36648,5.6978245,1.0945396,-1.118746,-12.674762,-26.44188,-5.8289113,5.2046022,-7.399315,-2.0561733,2.4254594,-11.778851,-16.906986,-11.190244,-13.348134,-10.632702,5.22785,-0.50524807,-24.186481,-21.772423,-6.4336414,-2.288811,-1.6107731,-5.9487715,-11.282633,-15.110729,-13.767115,2.2019143,6.567409,-1.5090911,2.798169,-9.217941,-29.441898,-18.978962,-9.656839,-7.592561,10.760176,15.262075,7.737056,10.682156,-5.134161,-28.152847,-10.309372,24.172739,30.233194,9.184372,-20.542171,-22.285791,14.067441,26.112411,4.4995155,10.211414,19.079926,-3.1850114,-1.6335402,16.180666,-3.62016,-15.89685,6.72612,11.2763195,3.3152297,8.163874,-4.3722596,-19.827274,1.9904306,27.184895,14.618445,-6.3961535,9.419849,25.637287,-9.039648,-19.2674,25.396097,null,10.10818,4.2098756,-4.0013237,3.212556,4.4292955,-1.6729677,-0.73054063,2.853981,-1.8800756,-2.1445987,10.381247,9.831769,-6.3308573,-3.5484366,10.082056,3.386175,-4.5008497,0.29001248,-3.012023,-6.487695,0.02908945,0.58156586,-4.116365,-8.083671,-8.045738,4.172208,14.005406,7.8330483,-2.1013193,-8.006801,-11.268749,-6.048479,9.605783,9.9410515,-15.063234,-24.155842,-11.842884,-7.8069043,-1.4615824,3.2506762,-4.1002703,-1.7322159,-1.161705,-9.878385,-8.623874,-9.997467,-12.882532,-6.421382,-3.644508,-2.2597775,-5.499669,-9.421957,4.7681093,12.417955,3.674489,0.2209878,-5.975065,-8.2709675,2.3001137,4.510914,1.2385279,0.58736706,-5.7457156,-14.685975,-18.726465,-10.486107,1.7701633,0.6193447,-7.1484823,-10.2808695,-0.18649292,21.452465,21.636997,-3.2885346,-11.213318,1.6460099,-0.39092684,-13.968367,-6.0440726,10.149334,5.2388496,-3.299255,-0.60005593,4.5154686,8.8491955,7.0921035,6.7901554,11.50591,1.8814784,-8.273047,1.5653785,3.9089127,-11.082688,-6.3799744,17.732052,8.930935,-19.331427,-6.8479605,8.397829,-9.766142,null,-5.9051323,-5.9847555,-0.61062944,10.142851,6.5347333,-17.93143,-10.574302,14.431435,3.5348773,-17.498882,-10.997251,4.293863,-0.34373426,-10.296685,-3.2007618,1.7468157,0.15661311,5.166704,-5.0210385,-23.257444,-11.24975,5.137762,-10.624316,-19.547018,3.059002,12.064014,-1.659303,-9.007153,-15.607467,-9.057653,18.94583,22.413506,4.2117567,-0.53727245,-4.2183228,-2.821165,10.493864,10.428446,-0.35107136,-5.279297,-3.3756328,2.9367723,4.689458,3.792954,9.098815,15.117794,13.584545,4.2220526,-1.1170788,6.082196,14.4882145,9.542184,-3.6389277,-1.7063355,8.977368,3.8255649,3.174574,12.2043495,4.016294,-6.209633,-10.061991,-12.509575,3.4609597,14.617567,4.1304646,-1.8045497,-9.059528,-13.14044,7.061415,20.38259,3.2743633,-20.189238,-21.959248,-0.20971501,15.786563,8.829105,-8.130873,-14.305451,-1.9412098,4.197428,-3.193562,-3.3370829,-5.88357,-6.7732377,8.114052,7.1675625,-5.8867517,-0.7967911,0.037580013,-5.0130286,2.7291532,0.73971176,-5.064472,9.958401,17.185417,1.868825,-5.1746173,2.3504484,3.4808915,-6.450282,null,8.697393,0.5154953,4.5074906,6.7695484,-1.045656,-4.087248,-6.697758,-4.956992,1.0203338,-8.082732,-12.385741,7.3627377,16.248222,4.3840356,-0.022501469,7.5517817,15.1963,7.023836,-9.159079,-2.7610393,7.5766697,2.7775362,10.465654,17.733387,0.27184248,-20.297016,-18.701817,16.410995,38.839027,4.7488556,-23.879793,-19.468523,-15.051644,10.252077,27.626255,0.630847,-2.0280223,17.561852,2.9381866,-2.7633052,12.812763,5.5606775,-6.4054465,-5.0360746,-4.3279834,-7.2474155,-20.819479,-27.304108,-8.358426,-3.8837924,-14.589631,-4.5390115,-7.7007427,-23.857328,-15.362669,-24.090029,-38.313026,-6.929993,8.975904,-4.4753704,2.2648678,-3.2965503,-17.50432,-3.3157768,7.4142,2.6388268,-11.046997,-29.093037,-22.94239,-8.386024,-2.0890245,10.318643,2.2230806,-14.05794,3.3916917,9.8709,-8.639709,-0.5519583,6.058523,-13.556403,-4.6838703,18.336344,8.842981,1.5991626,0.44024003,-10.798686,4.191065,14.669525,-5.4301558,1.9705186,8.536555,-11.200761,5.858525,16.948864,-14.907791,-10.496454,14.1204605,0.9542978,-11.869734,-4.0694375,null,16.31689,5.155453,-11.082111,5.7094774,7.8377733,5.289604,13.323116,-0.6743572,-2.8631713,12.417445,0.36802268,-3.3119073,7.998045,-1.7469356,0.66841364,12.782376,-0.7378888,-8.591425,7.2062635,16.855072,7.060064,0.42843246,10.414892,9.0090885,-5.6464844,-4.60501,7.4601974,19.573181,19.868042,4.1182,7.7954874,27.321938,18.78693,-3.085403,-2.3554704,5.318933,-6.519232,-13.133728,7.258027,13.202614,-3.4341822,-0.6444156,12.815182,16.524204,14.928627,9.796995,13.463295,12.332131,-8.258263,-10.661769,3.9340782,1.4166219,-1.4005942,2.282446,-1.2038226,1.6788673,9.769411,8.12886,2.1017594,-4.4437103,-6.7949257,1.2814417,0.0337286,-16.895016,-18.21526,-3.853108,0.22600818,0.11195648,0.8161025,-2.833805,-2.912842,-0.9873066,6.493581,18.248634,6.2469616,-13.783765,-7.8031588,-2.1422372,-8.382746,-4.1778874,-1.8162968,-6.6139116,-3.279535,-2.673168,-5.279908,2.7444744,2.873613,-12.15611,-16.159557,-7.023129,-0.96835184,-2.3650565,-7.8547907,-7.4282684,-7.4766016,-13.79195,-8.1014,-2.33167,-6.6664324,3.9144106,null,-3.0349374,-2.1485963,9.633137,2.7717094,-1.0413666,8.170798,3.0702028,-7.500633,-9.2571745,-3.4697475,2.359292,-10.213325,-17.49176,2.927013,6.12796,-8.684103,0.5651169,4.1106157,-9.434589,-0.2654171,10.799347,5.8315687,4.6741204,-7.3066525,-10.719199,15.612844,8.096835,-28.14547,-19.166956,8.649387,11.12044,-0.34049654,-16.449272,-11.568932,13.339443,16.947702,14.260647,18.663792,0.87718153,-11.201487,6.262712,14.992485,16.122978,18.812634,2.924265,-3.2325258,9.512846,6.584373,9.142459,18.182934,-0.36958694,-11.545818,-6.345949,-20.283913,-23.398764,1.818198,19.35989,13.54521,-3.5688567,-0.39217174,17.03477,5.7755566,-6.296241,14.688021,21.503845,-2.5551348,-8.639668,11.22305,18.316889,14.004408,11.196301,-11.748324,-22.978943,7.799463,12.792264,-13.733151,-11.270908,-1.7961922,-4.603073,-6.144058,-10.492213,-3.0119739,3.0856504,-7.0953574,-2.175823,-1.0611193,-18.337334,-11.491245,4.1518397,0.87979317,2.342307,9.27955,4.038386,-12.155607,-17.719055,3.9535027,15.7294445,-8.404145,-17.577942,4.001359,null,-3.3666975,-6.4327517,3.9194226,6.506704,-1.3800721,-7.1356235,3.655556,5.819221,-12.884493,-14.516569,0.96863794,-3.034072,-8.5776,10.394247,6.5451937,-22.323503,0.35906315,26.375141,-18.01936,-31.22881,10.815111,-0.25446606,-29.193432,-16.14386,-8.334551,-5.79315,4.657154,3.4997377,10.632743,19.065613,-4.0894637,-24.842422,-11.516452,2.7764983,-2.5380356,-9.067194,-12.474722,-20.209272,-21.403568,-6.1494813,6.0908155,-10.354044,-25.564285,3.648608,30.232937,13.339256,4.0020285,9.004372,-0.7785051,3.1448922,15.072357,5.353361,-0.23578072,7.1153193,15.283402,24.930635,14.734782,-6.537822,-0.59560513,8.39249,-2.6519194,1.9111433,20.032616,17.740505,8.106831,8.82527,8.19319,-0.2642932,-8.087563,-1.1990715,12.85252,13.423942,7.6831636,-4.2998857,-23.34607,-15.333181,4.8466434,-0.055205822,4.218345,16.793304,-0.66414547,-2.633338,30.571333,32.381477,1.6545172,-4.4199452,9.639826,10.321763,2.603695,1.4669247,5.9288197,11.117783,6.0987124,-8.163338,-8.691967,0.64173603,-1.8792458,-4.8164506,-0.8062115,-3.5078256,null,7.3018208,1.2839682,-6.8297415,12.198393,11.155376,-5.1951284,5.0702534,16.144537,10.651176,1.5887995,-8.922647,-8.508246,-1.1375573,1.5670049,5.3515673,-0.26119614,-7.9416437,-2.30657,-1.2706037,0.6825745,2.425127,-12.018015,-4.8175807,12.744219,-12.6682825,-29.224525,1.6365466,17.543295,-2.5691838,-18.765045,-12.582781,-0.25584388,1.2152755,-1.6558639,-6.798896,-16.41403,-17.895514,-10.046528,3.7288969,20.528137,25.474651,21.241903,15.923691,4.1265936,-7.0361104,-16.786629,-29.847343,-28.241276,-11.401161,-2.2335331,-2.4631925,-6.7141705,-14.52549,-11.375914,5.50073,11.135649,1.137763,0.9395621,13.493306,18.041601,11.303009,6.534933,5.835353,0.9836981,-0.013157368,11.455616,13.480908,0.72191536,-0.9507917,-1.4936161,-12.050268,-0.50656605,17.913471,1.2960477,-11.094861,8.506048,11.942476,-1.4614384,5.4325542,13.899838,2.2178884,-9.60518,-0.1889267,14.546902,3.992702,-8.686525,-1.8037338,-7.118484,-10.410892,6.469352,2.2094226,-8.868406,-0.11286998,1.081562,1.0627904,0.849247,-4.285795,13.950177,15.866237,-13.762728,null,-12.99265,5.0584273,7.691332,-6.6870623,-5.2942247,-5.3893776,-12.006745,-9.302852,-1.7831278,6.2283115,6.919883,3.3428364,-0.25760245,-11.400736,-3.0836067,9.425383,-24.429903,-35.56588,11.663879,15.359483,-15.858388,-1.3094378,17.00463,0.8025987,-12.321047,-5.4660034,6.1604357,5.8998737,-0.18136406,2.2304935,5.1611214,2.8987882,-2.8226955,-6.231797,-0.4566741,-1.8607473,-4.287873,14.256502,18.85358,-4.17953,-11.2920685,-1.6593983,-0.45786572,-7.9851837,-10.557202,5.521327,18.335217,13.336366,19.937218,31.005445,23.23828,14.558452,14.387725,15.959464,8.869498,-7.484322,-5.21535,6.4513016,-4.149372,-13.546304,-1.3201408,16.11361,23.617561,17.071362,12.710427,13.062082,4.460227,1.0027995,7.955467,11.836388,4.9928036,-12.680889,-12.250667,3.147491,-6.547503,-14.739733,3.1005661,17.705774,17.254036,-5.6825624,-17.109425,15.13183,11.283733,-26.448204,3.528521,32.772987,-13.218331,-29.630634,9.400959,14.709524,-5.841238,-3.1624236,2.242056,-6.065057,-6.2883863,3.0075226,7.713954,8.999434,11.197941,12.069482,null,-9.846575,2.080409,-0.41024113,-14.956409,-8.501221,-7.2422996,-7.5176954,4.12148,3.2910547,4.973232,12.986031,-0.168571,-8.58668,3.5853689,-2.502783,-17.94136,5.78601,33.24581,3.4064465,-21.200514,19.482807,40.669247,-1.1749125,-20.038254,8.997092,16.826216,-8.538836,-10.847755,17.633467,26.690613,1.608629,-17.527483,0.25943708,23.53481,11.910139,0.6795893,14.43705,12.068067,-6.0909576,-13.589879,-4.2795887,27.927658,43.10373,22.937748,16.701733,14.61686,-6.5729456,-18.414238,-18.01558,-6.288622,-3.0611954,-31.020922,-28.233652,7.1130047,7.6706924,10.172771,31.114685,25.7138,13.984135,1.8583043,-16.371601,-15.79656,-10.756771,2.0067554,23.440033,5.7409315,-19.249714,-6.873684,0.64995,1.1790881,11.658861,2.3678946,-11.669801,3.6725378,13.110073,-17.637228,-29.041035,18.21047,30.637804,-15.482562,-9.947008,23.853577,-2.4653254,-22.400417,4.9777346,6.834112,-15.466256,-10.103455,1.4032135,-2.803029,3.0979886,8.416424,-4.0192966,-2.5485158,4.481414,-3.441495,0.11619902,-3.572707,-16.674248,4.4054923,null,-2.985353,-14.125065,7.3318458,8.324066,5.3780704,3.0391748,-12.258451,-0.5182097,8.862763,-7.890872,-2.9865437,8.175538,4.5379586,0.070776224,-9.4324875,-2.1774256,13.892962,-2.4118078,-22.47973,-13.67544,6.8179092,12.352559,-4.891779,-6.447891,12.482893,5.480936,-7.124769,6.365984,10.797731,-8.979205,-20.70142,-8.848684,-1.2139373,-4.363922,11.7344055,15.890253,-15.051121,-11.870412,30.426096,44.0767,24.243578,-4.0867257,-19.22734,-17.086027,-23.412092,-18.996784,9.166111,12.154733,4.295287,30.788914,45.19362,16.878242,-1.3966827,4.5182056,-1.6887136,-13.875692,-12.664372,-7.2881107,3.6793723,13.399169,8.1411,9.559439,9.592247,-17.785324,-31.329168,-9.360435,9.459351,9.910524,-7.290468,-28.9645,-24.185066,-0.2893541,8.125271,-10.812955,-24.384605,0.14957714,15.251265,-9.602619,-7.3938484,22.115448,7.1402903,-21.94526,-7.3734107,7.715992,-11.35918,-14.210262,15.756773,20.541641,-9.052399,-17.91648,4.4326496,14.487033,-0.23495102,-0.18160248,15.640468,6.6961613,-1.0778327,10.167652,-6.939896,-21.0467,null,-11.733925,0.7024329,7.392787,3.0532994,2.1209583,-7.7984753,-16.53848,-7.7891808,4.091201,8.943709,4.903955,1.5983831,-2.272027,-21.567604,-11.722254,28.945591,8.648495,-28.812828,8.467323,25.431831,-19.675228,-13.395092,33.264214,23.713606,-18.221642,-17.898342,18.992344,21.319973,-16.524195,-15.121243,21.112545,18.200191,-5.066987,-8.590536,-10.940872,-1.8291497,22.330942,13.010195,-22.250528,-39.221313,-43.320175,-32.45095,-0.7026572,18.57259,22.236012,28.037863,18.38464,-2.9902472,-7.16224,-6.31567,-21.242493,-25.080248,3.3050938,24.944551,18.262905,19.437119,26.082506,0.5481844,-38.259872,-46.39412,-22.811073,-1.9750323,-7.75241,-24.952024,-30.564892,-20.724775,-2.527865,11.216612,13.765078,3.46033,-8.5227585,6.2621756,31.687626,15.281161,-24.88022,-17.009045,23.323984,4.6730433,-37.360832,-0.545846,22.997862,-39.2263,-39.841015,22.002811,7.2497587,-20.056755,6.357164,11.275567,-6.6817274,-6.378679,0.5091448,-0.4926082,-4.086184,3.988587,1.8006244,-15.137146,-2.1252303,8.873699,-7.3461027,3.9966583,null,-0.11504829,1.7169247,1.7132173,-11.143728,-4.6710396,17.24955,8.554385,-7.4866753,3.4146314,6.981018,-4.5389705,-4.3061833,-3.8098116,-6.0574102,12.642469,23.953226,-6.8613176,-15.179106,28.36164,22.62447,-23.729885,5.8686085,44.963684,-4.753389,-37.618332,6.549664,20.347996,-20.91854,-25.814156,10.021485,12.896605,-12.173248,-13.8248005,4.955142,22.553913,23.431849,-2.6914647,-27.296814,-25.110441,-7.6253176,16.800587,33.611313,20.373125,-12.23872,-36.902534,-43.19326,-35.760754,-22.472557,-4.8025126,11.099859,10.37057,-4.0338016,-15.116957,-23.31918,-34.652863,-35.284584,-12.674957,19.795088,41.37484,44.988617,29.160225,0.46716452,-17.876917,-13.523577,7.0261717,28.188543,13.385223,-27.773413,-21.792524,18.68852,22.373634,5.1471386,-2.4656076,3.4641829,21.771389,8.427133,-10.796566,24.168686,28.394682,-20.486809,-7.9229984,25.713276,-4.262504,-25.014824,-4.1975317,4.3155046,-0.8222985,-1.6325064,0.3973179,2.6455674,-2.3236885,-9.938829,-6.700842,2.7345934,4.7622347,-1.9824762,-6.288159,0.14981031,6.5580077,-0.71874857,null,15.733901,0.49387074,1.6157341,18.327446,-0.7113801,-4.6553993,4.662897,-11.443988,-3.5918818,15.486226,-4.56855,-17.616938,8.236228,30.013721,10.702679,-22.723106,-7.3358264,25.586292,-7.0701027,-42.127556,-0.42918634,20.274944,-19.434656,-13.492706,16.172209,-4.7810736,-12.971888,10.415855,4.0633574,-15.5559435,-13.780111,1.0367551,17.116997,20.761547,1.549159,-32.58412,-34.781883,16.15063,41.38851,7.9491243,-16.22582,-20.606102,-23.17776,-7.513858,10.741467,26.246895,48.77558,44.946564,16.794186,11.521118,31.618334,46.28054,34.65842,14.507354,18.684376,17.837364,-16.233757,-37.94719,-25.943409,-0.7849364,25.029982,20.4582,-10.995163,-19.323149,-2.6324434,22.658686,39.495655,14.263493,-12.160397,9.292843,27.777376,13.453505,-4.1637673,-5.5735607,12.826703,9.907329,-17.696644,4.692896,33.463787,-13.555894,-33.08149,20.513939,15.644404,-30.490946,-9.780001,13.296462,-2.251097,10.409092,21.141903,-1.4536227,-1.5345149,8.834284,-4.9254656,-8.577087,6.5393066,9.529979,2.9667387,7.4692774,3.482429,-16.411066,null,0.398026,22.614975,-5.783022,-11.619636,0.011030197,-9.101879,-3.5769346,17.497728,12.710145,-11.833758,-11.260406,-0.69729805,-10.194499,1.9609463,15.568974,-12.28552,-4.649334,23.377327,-16.846743,-26.885044,30.57648,10.88427,-40.196743,3.2938333,28.320297,-25.715477,-24.34056,23.452286,11.726841,-11.020784,11.794711,33.838608,29.663742,14.579512,4.245559,10.901428,25.735624,22.507765,-7.5505753,-30.215902,-15.374915,11.374813,28.360909,41.77714,27.762009,-26.020168,-65.78815,-56.339188,-40.84249,-52.718246,-58.89141,-37.77012,-21.685421,-31.251041,-36.634506,-10.3152075,23.991653,33.629017,13.331586,-31.607445,-60.382004,-28.125874,26.277826,43.661182,24.43447,-11.5128975,-28.387615,6.761236,43.823215,13.703145,-31.79679,-6.7069845,31.40532,-2.2707171,-33.52854,6.523698,26.040821,-13.707504,-11.320639,25.053385,-0.56165266,-26.390694,11.236155,20.632538,-10.371591,-9.081445,4.0191,1.0568562,-6.2569876,-5.4743485,10.548692,5.591401,-15.587629,-8.301867,-1.4619906,0.48700094,11.123892,-7.4820337,-16.311018,11.37369,null,15.765646,-8.408691,-6.948162,3.216053,-2.219011,5.837353,8.270371,4.4002504,9.217102,-3.3142831,-6.7559953,14.661264,13.422946,-5.149681,-6.0774784,9.457153,10.158917,-15.31522,-10.070578,18.280495,-8.580389,-35.48298,0.80003357,13.999622,-15.071267,-10.754847,6.516323,0.53364563,5.4229226,17.198093,10.702252,4.022232,2.9157047,4.8231277,17.66333,19.409897,-5.651663,-29.133675,-15.205265,30.320202,45.65814,8.721561,-21.823154,-24.668873,-22.086372,-4.86355,27.512108,49.041092,54.21131,57.29207,59.273804,52.59384,45.935726,36.756393,7.451729,-26.990923,-39.368366,-20.646988,19.959652,41.020573,15.883825,-19.830324,-17.349176,21.442486,46.882378,29.873116,-6.9150515,-22.892733,-2.8861227,3.9182444,-28.816017,-28.260725,12.095411,4.918413,-25.220776,-1.891993,23.63494,-4.349864,-14.422799,22.53242,20.905859,-9.620207,5.68052,19.745213,3.053522,8.668957,15.191511,-1.5301898,3.007835,18.605698,4.9794407,-8.532761,2.1458087,5.106126,5.0468493,12.747903,-6.548231,-13.3502655,19.366152,10.5308895,null,4.4174123,5.1400933,-10.846981,1.2797778,-0.19021606,-10.302541,1.150329,-4.7789483,-13.671068,2.6849422,0.36513233,-8.552786,15.694622,14.509094,-16.698452,2.0276442,18.587849,-9.718791,6.175392,22.024101,-21.775526,-13.880227,29.854685,7.1518373,-22.034788,-7.070363,15.793049,20.276836,0.20844889,-10.051743,-2.4586148,-7.6840124,-3.6012921,17.696978,16.734442,-4.499871,-9.753091,11.06321,21.698875,-6.0655823,-38.653492,-37.492783,-14.844042,-1.3926992,10.831891,38.0315,36.609688,-12.601892,-47.423325,-44.094006,-39.431015,-40.6685,-21.766348,12.542969,25.694836,26.18745,27.422379,-6.046316,-44.303474,-30.47828,-7.2609386,-6.1365633,-3.563284,-9.958472,-24.996975,-14.455828,19.730093,32.12314,0.77058816,-19.570198,11.426016,23.551718,-12.094391,-6.8906803,24.50821,-4.9442015,-20.80182,17.224205,-4.3381467,-44.017933,-0.36218166,25.383446,-13.688949,-14.113278,18.811495,9.558103,-13.986419,1.2767258,15.352385,-1.64223,3.9117923,18.366573,-2.4336414,-3.4043334,13.82802,-2.5492063,-2.5475955,18.697567,0.09449148,-14.256977,null,-26.690056,-3.410222,15.039774,-15.41757,-6.7032638,20.18356,-3.1496744,-8.848555,16.486729,13.01005,4.9468746,2.312422,-8.931818,1.5257101,18.47485,2.4569163,-14.619146,7.497513,20.97186,-13.069485,-15.781616,21.79923,1.2595482,-27.731106,7.8359566,16.242191,-19.687017,-14.035367,6.054166,-9.588999,-12.882316,13.674431,11.5946665,-17.082094,-8.162356,34.817936,49.262512,9.967622,-38.34017,-38.887157,-3.7298145,23.932812,25.33231,-8.157282,-46.174168,-40.98317,-6.1683865,13.105235,12.872044,22.67052,32.592346,14.715178,3.2992544,6.3830194,-22.782534,-48.013992,-7.8209286,52.85036,51.86039,-10.279778,-46.032913,-8.869701,39.131264,34.255535,-0.7650509,-6.7182164,8.941471,6.09352,-0.65041924,-2.650926,-0.11536431,11.344271,-6.2745275,-18.089792,13.3552475,-3.3446102,-34.83477,7.5599074,18.033798,-18.017492,0.47820187,16.491972,-7.947026,-5.5815997,9.93198,-2.0588799,-12.461409,-4.699523,-9.594134,-20.409084,-9.079184,1.1959348,2.1140678,0.02087307,-15.818335,-12.513384,5.8381968,-4.174156,-9.517704,1.1866894,null,17.221476,-1.7276068,3.5664158,18.278633,-5.087076,-6.607038,6.118527,1.4759192,6.8373747,0.5404701,6.455735,30.047821,2.1146808,-9.865764,25.50285,4.405565,-21.06262,16.126818,21.335257,-5.633074,15.523758,26.942587,-18.032131,-21.33529,24.242619,15.862063,-15.530045,-12.151661,-2.5198421,12.139001,1.3951836,-39.312172,-21.668287,17.649796,1.4307594,-2.7814293,22.255602,12.524961,-14.025752,-7.723681,13.176411,-3.9958038,-43.994102,-43.577938,-5.4207397,23.114653,19.980154,4.6688037,8.657528,6.9097767,-21.65781,-23.083925,12.273909,22.372536,5.6406603,-2.8947525,-23.242771,-51.87015,-35.244556,5.1303644,7.040657,-14.157782,-15.900055,1.1000061,6.6053896,0.47353745,10.508259,3.8197393,-30.737938,-21.297913,10.042756,-6.0004992,-25.620283,-12.00193,4.265875,1.8454766,-18.929337,-26.81776,-8.569223,-4.562351,-17.66059,-5.740513,14.303648,0.8012047,-9.985104,8.2724495,12.824229,7.884268,10.477106,7.623251,20.8166,22.028843,-9.655976,0.36927414,20.753204,-10.851572,-14.070463,14.660972,1.9658604,-10.096441,null,-3.2014794,-6.150374,7.3972006,4.562872,1.7566156,14.056035,-0.05092573,-3.2560992,14.702848,4.972648,-2.1858232,2.4751434,6.580103,9.1479435,-18.465218,-14.755177,25.465614,-6.345128,-28.171585,20.40607,3.6868138,-30.335432,12.684266,17.09628,-16.5448,2.7852492,3.594491,-17.288296,16.639149,17.95022,-35.94301,-17.584623,23.781116,-9.528126,-29.376759,-1.8207402,3.1900654,-4.9315233,-4.3978257,-18.044857,-42.37955,-49.081726,-27.81702,-6.3713274,-14.446907,-35.89776,-40.164368,-36.724,-46.54796,-43.456757,-15.857039,-17.481297,-50.13761,-46.34448,-7.4492073,8.4349,-7.7767677,-31.032589,-44.947845,-32.859596,-6.3946676,4.811305,16.71915,21.438429,-11.574539,-17.814512,19.933382,11.078293,-21.254843,-11.417654,-0.9807267,0.2197609,16.550064,8.953547,-13.334843,14.973136,37.530025,-0.18599701,8.64951,43.420013,1.1642027,0.6092577,37.864235,-11.209918,-12.593796,32.706284,-9.888466,-14.237974,22.755936,-1.673121,1.3915911,14.320202,-1.0766559,10.335068,-0.40816545,-8.717512,15.865704,-2.2099228,-3.5150137,27.903269,null,16.340237,-6.4705763,-10.766962,7.905981,-5.7001944,6.4410625,11.789869,-11.857684,3.5630324,3.5906513,-13.691651,-12.240474,-19.540348,14.197966,26.052635,-19.32099,12.004323,19.085653,-35.91254,13.567431,31.065918,-30.690828,11.441481,39.8269,-18.100782,-14.480354,15.434042,5.761408,-11.178988,-25.638302,-9.664435,22.237743,11.986179,-21.26212,-19.385487,14.232443,18.02209,-6.2827682,-3.6164856,5.7390347,5.7768707,17.013077,-2.8715858,-54.556595,-62.13224,-28.732433,-3.883294,15.839526,29.09034,17.603899,4.9285583,15.323116,25.977974,10.785901,-29.092152,-65.28084,-58.99672,-18.80045,2.057044,-9.76806,-16.733393,-8.968033,-3.0535293,15.588303,31.952576,-5.943282,-44.035015,-5.7500978,27.701233,0.2044506,-1.7838879,18.260155,2.0766184,3.0008044,8.495828,-19.732746,1.8473921,19.873781,-36.913803,-16.55625,42.299995,-9.132378,-24.157574,31.702896,8.854596,-24.36381,0.0012946129,9.720747,-5.6194158,-11.904012,4.517277,8.844814,-7.1433144,4.2051687,7.75751,-9.186084,1.5871396,4.7038183,-3.1810513,-0.6317477,null,4.0293684,-5.6645145,4.660588,4.1194386,-2.8316536,10.466254,-2.1771178,-10.577788,9.160419,11.952391,8.264961,8.269484,14.958843,8.673183,-20.341919,3.4986033,18.397427,-29.41705,-0.18661308,24.092926,-42.66631,-14.66168,30.25935,-30.78711,-20.876335,25.005363,-10.318971,-20.562323,-11.934808,-22.53814,-0.2136252,-4.424467,-35.69079,-11.371847,3.823217,-32.648705,-39.243145,-4.850293,16.50233,13.962717,4.806252,-7.8577356,-31.144024,-47.580997,-41.319927,-28.94814,-14.965557,-0.68063354,-7.9413624,-27.96053,-27.100916,-12.97154,-23.209112,-47.154705,-48.788383,-48.047104,-43.77642,-1.0676556,26.936155,6.4522443,3.236477,22.96128,8.780038,-28.895702,-19.617931,15.659072,-16.156563,-41.31232,10.458566,19.320166,-6.8856344,1.1301308,-1.1067371,17.869728,23.227222,-19.521,6.818207,19.955883,-24.725838,17.450958,26.9817,-28.019447,9.200944,16.498543,-24.276234,13.34409,24.871683,-7.147983,-3.4219651,5.888863,7.3948073,-8.245062,-8.5698395,18.588808,6.071086,3.6532078,22.852776,0.6416559,1.1935935,10.706202,null,-0.44729877,-6.352706,-4.5281086,10.197893,-8.292182,-12.85104,13.660442,12.92951,-9.846124,-14.574535,1.7554555,-4.1848707,-13.824318,10.155841,0.8307333,-8.724769,20.63969,-3.3907957,-6.38334,27.73816,-13.8665695,-1.9766083,41.38888,-19.820747,-11.758118,38.19673,-8.772974,-5.4023266,24.678791,6.7488055,21.185009,2.2432928,-22.673218,23.066454,3.4592638,-52.388237,-14.694994,26.699045,5.320818,-15.3869095,5.1038184,29.491798,14.905666,0.89961004,-5.0198936,-34.22399,-37.78879,-6.346031,2.660553,-16.83442,-36.70472,-25.090244,-2.4264488,-25.361767,-53.935707,-30.375923,-1.6108999,-11.92289,-19.641521,9.031889,23.170645,6.5894146,11.593387,-3.3058186,-50.3892,-26.669468,9.458349,-22.831026,-21.101261,3.819819,0.38025045,16.598698,-9.006418,-35.853535,22.180403,2.9740913,-45.157345,28.528152,24.05867,-46.64626,-0.14802408,13.947823,-27.89252,-1.9091148,10.148102,-3.250204,6.1692038,7.0886173,4.0933447,-4.3723917,-3.290942,7.001346,-7.6204987,2.0639637,19.028389,-0.47926044,4.2312593,2.2916062,-17.280853,4.46538,null,6.5859585,-11.159712,2.3955572,-5.3026834,-3.0519657,11.059483,-3.4439287,0.030653954,3.9378476,-3.2315497,4.7612343,-8.551103,-12.434895,-1.8677695,-8.617561,8.088946,-3.102109,-22.369238,24.210089,5.9162326,-30.825619,27.251472,9.651632,-34.71793,23.412642,15.338678,-34.056664,2.364973,23.627106,4.819561,-3.686164,6.9964504,25.02343,-19.680658,-48.47721,24.568611,29.703665,-36.0266,-0.13425064,44.569984,7.275097,-7.1505833,16.765602,19.150253,-10.547983,-29.462772,-5.029625,-13.953102,-62.71339,-48.987938,-12.111681,-9.112852,-12.191219,-26.117605,-5.6697197,39.04125,20.603619,8.111013,36.08843,33.107437,19.61291,-1.6190777,-14.596687,3.5385542,-23.814741,-43.997677,0.91390514,10.921326,-0.66314054,-6.99903,-24.8726,-6.970559,-9.235054,-23.99178,13.02798,-4.179567,-26.615082,24.128582,5.674829,-26.703272,10.819244,-5.7888737,-28.16373,7.5511804,5.936881,-11.400892,0.3590927,-0.97441053,-11.400081,-7.820221,-4.2712626,-12.828915,-13.958685,-5.1218696,-10.264519,-13.578235,-8.805617,-13.409552,-9.601912,-0.26098347,null,-9.003261,-3.671808,-0.28221536,-4.8977914,3.793529,14.163846,4.396285,-9.427177,1.593777,12.753331,-7.8170547,-10.386598,19.57022,9.539494,-11.924767,8.970975,0.22794366,-13.787783,28.842688,22.36803,-10.77625,23.713142,17.793999,-16.338974,11.999625,9.767355,-11.773269,9.783074,7.6505327,-11.44091,-12.7255745,4.0365343,15.469234,-23.461384,-19.993988,25.427382,-18.969894,-32.697468,23.927446,4.609745,2.5193906,44.44422,29.867027,39.79708,60.183517,34.837795,41.62036,50.389305,38.72126,41.15107,13.499324,5.714698,50.37122,47.337593,14.329521,14.502911,29.806623,46.28621,26.357098,4.4240847,39.976723,9.195856,-79.13244,-35.46576,25.164282,-33.060207,-38.633896,27.652275,33.496914,-3.9930315,-25.161861,6.807352,20.63736,-24.483715,12.046378,47.286057,-23.706982,-5.646605,32.685112,-28.805408,-7.196548,26.200249,-14.004299,9.671039,14.101093,-16.007837,12.916572,5.486315,-6.7589364,22.544792,8.560079,1.1209497,11.99724,6.415509,21.32928,13.268704,-0.91133404,22.010891,16.259163,7.1524763,null,-0.44789028,7.776699,18.852001,0.6169481,16.625198,15.451391,-0.25010157,11.1607065,-1.5919664,1.2946343,8.876986,-11.593824,15.676873,18.51049,-9.713354,22.825397,13.091378,-3.7831283,29.520294,-4.5591426,-4.07539,39.9066,-11.737683,-14.996592,24.812143,-19.485546,-17.004961,22.749563,3.3326383,-13.281989,-12.885807,4.4737935,8.315933,-30.783546,-18.20482,10.814091,-25.247417,-27.673874,9.279439,4.367199,-3.4596238,13.878501,29.108944,39.78232,42.279312,30.096529,16.091484,0.8527565,-19.410297,-29.803808,-36.74833,-22.059086,36.65864,59.774513,38.749695,44.590294,38.37675,33.950066,43.7148,-6.905743,-17.750706,30.156733,-5.7922306,-18.03553,37.67949,19.175198,-0.44201803,20.391378,0.7892518,-5.7983656,19.772053,30.380798,18.183994,-0.89627457,18.032011,22.764965,-12.970291,11.606724,28.109518,-16.063953,12.302309,44.66573,-0.50103426,8.45874,34.616783,1.678649,7.7019315,25.875015,-1.6239481,-1.0779657,14.546593,1.0171537,-2.4801607,14.418076,24.633915,7.215028,-4.8423433,18.046917,8.606733,-14.502874,null,-11.301914,16.182762,17.652739,-12.714939,-6.363392,9.699898,-1.2671678,-15.937216,-1.6428938,12.794514,-0.17462969,10.608643,16.733356,-19.29974,-4.230378,24.750057,-12.386277,-5.212193,31.273464,-5.2339287,-14.69751,23.169846,7.219042,-11.231096,12.902988,18.341513,-3.851914,-9.415353,7.5500965,-4.459647,-27.745785,-4.1869564,-2.0224533,-21.360218,7.699047,-1.9219685,-29.050499,12.297853,12.024288,-8.998883,22.606556,14.228159,17.27818,58.738464,28.956778,7.641884,45.690353,51.670265,36.44103,33.78475,39.271843,35.16765,21.927528,36.171993,39.154877,33.46653,53.895966,21.676994,-19.414051,-8.306717,-35.015404,-46.185547,-3.1391125,-6.8385105,-25.067938,-21.140182,-24.50614,-25.308002,-30.26933,-30.845276,-29.020332,-21.312092,-1.2789035,-24.219595,-24.096369,20.024181,-15.11743,-23.140554,28.17865,-5.693286,-10.913181,20.00859,-20.608353,-9.587586,16.412338,-16.551025,-4.797929,5.7077756,-8.135492,0.38944054,-5.561308,5.692936,12.037811,-13.309141,-2.9828777,-5.2226124,-13.088035,14.58463,-4.7853622,-9.404127,null,-12.580879,3.053063,15.926453,-17.768614,-9.353089,4.04807,-2.041109,3.847206,-6.349786,-0.30507088,4.355198,-11.869875,2.4278953,-9.320616,-12.872155,30.868061,1.7501984,-18.727123,11.671567,-21.432018,-13.770669,12.962963,-37.010017,-19.644207,13.79823,-18.993961,-2.9365036,1.7398233,-35.47434,-26.825212,-17.709497,-17.730953,-3.035243,-9.9262495,-30.709602,-30.985826,-10.738404,-25.161877,-47.877033,-18.019562,-19.937223,-14.889492,51.09326,20.116571,-18.512331,63.731064,75.16252,3.63896,-42.149876,-80.6263,-70.997536,-39.390068,-9.516443,46.565052,35.33697,9.062466,43.73439,15.58926,-25.297718,-9.843255,-30.186398,-39.02483,-21.876015,-30.062859,-4.9790034,6.18266,-24.679192,-7.918223,-0.3944292,-25.19388,-1.4592991,12.936486,-12.92851,-11.719507,3.7634764,-1.6721916,-17.041641,-12.839886,-4.0265903,-29.75513,-18.645796,30.654438,-1.6554766,-28.047207,17.956772,-1.4866791,-25.699656,18.970587,3.2428627,-27.665722,2.5089302,3.7804308,-10.322149,2.3029208,6.0655622,-0.15765381,-11.04964,-12.107347,-5.5311594,-13.254322,null,-2.8132782,-6.0719833,-11.476215,-1.2755156,-1.5456314,-1.4436474,2.5928154,-7.963545,6.5677547,7.998329,-15.499887,12.108261,11.978725,-31.21484,-10.280306,-6.847842,-40.12569,-7.597541,13.624622,-18.20185,-21.448349,-4.5060177,1.009058,0.22831917,0.5938492,1.4755001,-7.366308,4.457714,26.828184,4.933939,-10.108454,8.907804,3.8205776,2.6907692,14.3920555,-5.928797,-15.576995,-15.881275,-38.782837,-30.737843,-12.019691,-6.276043,28.455732,35.465347,28.663021,65.22048,30.989895,-44.878975,-18.449974,34.28305,34.138626,-0.2489624,-20.158737,36.106117,66.2001,30.00362,52.373222,59.61606,-6.074341,-21.208643,-5.7726555,-16.85207,-14.424326,2.0794768,1.636178,-21.427624,-18.364433,4.871625,-10.03455,-20.22238,-19.492794,-23.134315,6.03962,-0.49291897,-23.496746,7.8363695,-1.9743538,-9.385944,36.820858,23.300415,9.575214,20.118973,-11.946878,-0.5097734,14.951788,-17.579464,-3.530717,4.9924154,-12.959734,5.9872065,5.9032764,-9.320143,-6.464184,-8.131817,-1.9467211,-4.3103943,-6.1931286,10.164993,1.234045,-3.831748,null,-2.3049736,-3.4606118,2.4361458,-1.8465128,5.2964535,3.7883167,-1.5326996,9.404772,-0.035346985,-2.7971,-1.6841183,-23.97844,0.61895466,26.091677,-1.5476003,7.3039846,19.766674,-3.6196327,3.1387253,17.306633,17.609612,9.493832,-8.283157,4.6301136,9.908419,-11.763836,-0.86888885,0.98342705,-18.195267,-9.466534,-11.074493,-21.29002,-14.529354,-22.615475,-19.344173,10.7749405,8.542633,-17.155746,-10.5621605,-0.057460785,-17.189785,-13.8929405,12.823151,24.44307,27.696896,5.6154175,-17.941467,15.142761,23.783203,-22.604492,-18.578186,7.138794,-4.0457,0.7174225,3.759552,-25.787739,-30.980476,-6.7178497,11.147736,19.378674,9.366463,4.8330956,18.14634,-3.6604233,-18.445892,23.447983,27.848686,5.787651,23.356668,14.400852,3.9281502,20.712387,-2.1370068,-3.562109,18.194397,-9.116802,-7.484577,12.409761,-10.03293,-15.179232,-10.242054,-6.0739193,1.5324926,-18.798601,-10.150999,5.2157707,-26.396282,-9.937708,26.34814,5.716324,-2.4612045,1.9835391,-5.6323867,-1.1581211,-3.5379944,-4.430031,0.97709846,-4.201565,-1.3033834,2.9206896,null,7.5623035,-2.4014683,-10.230785,9.213865,3.8435974,0.30150986,10.525142,11.009207,10.886546,-8.410917,-6.70467,14.614241,-7.222418,1.433814,20.551699,-13.78209,-0.7281581,12.834878,-21.472904,-13.256201,-24.41826,-37.041245,9.314668,1.785223,-8.386686,27.355848,4.0123444,-9.726817,21.81372,23.24884,20.241213,7.889873,-5.9875402,19.824732,25.544937,-3.4894304,-4.747054,19.154184,14.838018,2.1115284,30.784798,7.9398155,-67.53616,-48.017094,-29.487122,-75.88013,-32.927788,26.389076,-3.796173,-41.66188,-46.417984,16.852654,58.37817,-32.554073,-71.33335,-18.173018,-36.522583,-38.44513,12.628046,15.539768,27.481876,43.44863,16.20535,12.672104,6.9863834,-16.944233,-1.3215466,-1.6510448,-15.169411,12.357607,0.407856,-33.353146,-4.8658085,11.81357,-3.848281,2.9663315,2.8991356,-5.673132,6.550688,24.6206,17.568363,-10.468233,6.278532,37.149414,8.725155,6.3649426,28.77111,-8.976257,-17.018808,13.412937,-2.3056946,-5.797407,11.021038,0.54133034,-4.2783737,0.50024605,2.8602972,8.492774,9.134027,5.133421,null,14.97562,6.2750473,4.6964006,13.2700405,4.0868435,-9.362138,-0.6439595,10.660061,-7.5642624,-2.9171624,25.368525,-3.0547285,-16.326515,22.388416,5.0821114,-10.366482,24.84505,0.9187269,-29.65746,12.816006,31.49937,7.6005716,9.559519,18.465818,1.92453,-4.369588,18.311844,12.008965,-16.27049,6.7783303,23.692642,-1.6604748,12.399446,22.219425,-4.1449594,11.066055,23.582327,21.897484,46.76046,26.009756,9.721947,30.019693,-22.875282,-47.634575,-4.6197624,-36.36934,-50.46344,7.731928,41.826424,72.30766,73.71789,42.139122,2.6833029,-82.78804,-70.714874,23.41634,-22.84398,-57.856125,15.759972,21.576824,20.559341,49.06922,22.188103,12.936951,32.722878,27.689789,14.782713,6.844579,12.106644,18.760277,31.318558,33.310165,-0.84789085,6.026272,19.595972,-11.074258,19.97453,34.584114,-12.018337,13.908189,18.738747,-15.148144,16.012096,0.38579082,-27.639544,13.889836,10.826461,-4.7114487,8.454784,-2.5230494,-0.46692133,3.2009525,-1.7202673,4.7873306,-2.4307299,11.386814,17.575417,-16.915285,-5.2632074,10.277278,null,11.936524,4.9020176,-11.023134,13.191483,2.445328,-0.11119032,10.847029,-8.004125,-2.329484,4.2277555,3.5792246,10.704172,-10.443546,4.4495044,18.708015,-18.077892,8.479441,19.262785,-19.998405,13.485443,3.3404322,-31.208412,23.411907,12.132619,-18.61316,30.753868,22.596247,0.22238207,25.850637,28.007465,33.16974,35.075832,20.183502,24.563442,25.695757,19.90889,6.9156857,4.6737175,39.56403,41.68904,14.217274,4.3608627,-23.60459,-41.351677,-42.055725,-52.380264,-27.446573,-8.472633,-33.460304,-41.86889,-34.555973,-34.75472,-43.019855,-41.935,-22.88071,-36.680275,-48.022907,-21.272335,-23.618515,-13.893184,10.273255,-18.591087,-7.582595,28.376677,-0.0120687485,0.8266001,19.546947,-2.8302279,10.960162,26.840414,-0.268075,-3.7091112,9.515354,4.13013,-14.172537,-14.372574,12.6103525,-4.6915865,-28.283377,15.458307,7.2391405,-38.687073,5.3229103,17.661842,-27.18752,5.553614,23.273624,-18.149534,-11.044652,-1.892415,-14.725397,5.745046,15.46591,-0.21846485,-4.6176443,3.580864,7.263593,-12.080161,-13.662758,7.459375,null,10.2361145,-9.092943,-19.749298,-0.60147333,-3.7697577,-20.707352,-17.552069,2.7504663,0.16771793,-16.508757,-0.9731996,-2.0062232,-26.72678,-6.2523704,-3.0580444,-32.280262,-6.776447,-4.3360147,-43.857986,-8.727884,15.884453,-23.944735,-10.779031,8.498569,-19.364208,-15.891818,-3.1598299,-18.308609,-31.538822,-21.00545,7.940164,-4.0629387,-21.449076,4.7080054,-20.57456,-34.69637,23.357222,-0.67601585,-28.32076,27.957144,-0.5071168,-46.51503,-18.738766,-42.167175,-63.048172,-36.875847,-48.25445,-36.15405,15.639507,29.492836,22.210264,12.427116,4.837826,4.178776,-26.56554,-60.142014,-41.22724,-16.458885,-17.888254,-4.981675,2.9220905,-3.26643,20.704906,22.719992,-6.139741,15.452675,28.640242,-4.1214495,-6.5476294,12.532272,19.276215,-5.5075717,-24.543213,21.658731,18.952833,-23.456606,18.114521,6.1298323,-42.327297,8.150677,4.6792974,-31.452042,1.5433431,-13.538423,-20.48592,9.001667,-18.765787,-16.49246,6.1168447,-5.923101,6.3817253,-0.826951,-12.535899,3.076387,-16.826826,-16.172531,-1.4036574,-21.734783,-3.453224,0.66522694,null,-7.75997,-10.665649,-24.181204,0.25606823,-11.189024,-24.65868,-3.485845,-6.9836445,-3.5253649,-6.354369,-20.514004,3.4127526,-2.794331,-13.947071,10.341045,-9.567312,-7.8186684,10.398972,-23.706322,5.7254596,28.529247,-26.90031,-0.37948167,20.630005,-36.202477,-13.991618,16.983957,-14.570795,-5.884231,20.268005,6.7880487,-32.326237,-29.77385,37.998676,32.03492,-22.87651,34.407204,71.02403,-7.311912,-33.312077,-7.9437656,-24.483639,-38.95367,-36.60344,-21.199371,-3.7022433,-35.188293,-51.134666,-13.138102,-17.335798,-45.553688,-49.850418,-53.46936,-29.76564,-27.626263,-66.154434,-45.777893,-25.874914,-38.90836,-6.0625315,-3.9728737,-14.8743,29.843987,12.75071,-18.946205,22.064678,19.80038,-12.08837,-2.5146623,10.9080715,11.057323,-10.374554,-10.275179,11.971774,-12.739627,-8.955285,19.062256,-21.333076,-19.064253,17.03102,-25.081055,-26.511227,17.842842,-4.2571135,-9.773712,13.520285,-10.436726,-17.662235,7.289842,1.103734,-10.121295,2.1437697,9.75401,-1.2437272,-13.711306,-4.9188848,4.767065,-3.5425863,3.8620179,11.407775,null,0.6690726,8.199308,13.5644245,10.061826,10.531493,12.645824,6.785799,5.8478527,12.248817,8.234633,3.6591282,12.504355,4.8506155,-3.0135689,12.99524,-4.14859,-10.159484,29.957338,4.5176144,-13.628884,33.40484,-3.5601802,-28.14096,29.702759,3.379551,-17.080256,27.676378,7.6884956,3.0749092,27.382114,0.90869665,-3.503652,-3.8331227,-7.594029,36.949894,35.780045,-4.73454,1.9345675,7.692916,-12.856377,-39.56572,-39.462982,-6.5250435,-18.323105,-38.076656,4.263611,28.754936,14.039764,3.8652315,10.004156,50.402565,59.32448,11.12425,8.0721855,32.50992,7.425686,-21.395056,-8.822087,10.105418,-16.469004,-39.871483,11.585143,24.280977,-38.2181,-11.837356,47.149254,9.899028,-18.297913,-6.4887004,-4.322464,-1.693883,-22.788456,-4.920539,38.621628,-16.50611,-25.333986,41.20955,-11.099598,-31.55639,35.853912,-6.4184046,-29.239452,24.149261,3.0777686,-8.819656,11.714843,-0.55760384,8.9268875,9.452827,-5.9152164,5.2339735,-0.06505442,-2.835967,4.6115785,-5.856414,1.3235512,4.529975,-1.7953215,8.249864,-4.7252913,null,-1.5495262,19.649765,3.2573967,-4.191949,-5.3467093,-15.282778,-1.9398394,0.8444017,-1.6785417,7.601626,0.1537261,-1.778133,-7.594387,-10.887776,8.851634,-6.810646,-2.3288345,29.9414,-12.845532,-4.4540606,47.082687,-25.2554,-37.350536,43.144993,3.7444928,-21.657837,31.162542,9.947049,-16.132557,-4.8655863,-1.5865632,24.250141,15.250145,-10.026197,34.865326,43.10698,-6.3803396,-2.2405362,0.7149544,-31.131882,-14.1420765,25.6632,18.044483,-2.6315851,21.445303,52.490875,28.56171,3.8997707,27.570278,40.41927,19.651358,-0.9465008,7.456028,40.57543,35.60162,0.8688755,-2.7711468,-8.984484,-25.108011,-9.747915,10.035724,0.066503525,-19.831717,9.942262,50.95218,3.783867,-27.44657,17.108797,4.144512,-25.467999,-13.754738,-16.713505,4.05149,2.8841152,-30.282143,9.901425,13.1599245,-34.046368,2.461419,9.762697,-23.454975,4.9871597,2.1106071,-17.525026,5.530798,1.5862954,-5.3295765,7.7411757,3.5669188,0.81221485,7.287087,9.883959,-6.4969373,-17.057032,9.258997,7.669754,-13.829609,5.433257,8.721646,-2.954239,null,-12.502302,-3.628203,-2.308052,-22.910706,-1.2676558,-1.7042065,-17.045269,5.478228,5.0748444,-8.236831,-6.054344,2.0897655,8.055963,-18.567472,-9.268554,23.956621,-14.692474,-10.115848,23.527088,-26.048252,-15.50064,22.872986,-20.452639,-6.8012786,18.058699,-24.582985,-18.306894,2.078267,-1.9011383,5.8895054,-15.311445,-9.041024,38.217045,21.643448,-8.173342,14.362141,25.80408,-0.806654,-26.126413,-16.041965,-2.3319569,-14.624578,-2.0196843,33.07867,43.423943,49.152454,49.541973,24.433994,9.976585,21.444174,25.292816,10.160885,2.7239418,20.432049,40.790657,39.656536,28.060991,24.603485,19.450815,-4.1442223,-26.204449,-19.06298,10.99547,36.389183,23.044102,-5.012385,16.176413,35.58914,2.629094,1.9397988,24.75671,12.068411,18.605799,10.5669775,-21.23621,20.55177,28.200506,-30.765263,9.440336,39.645428,-18.96007,-2.593958,22.63168,-14.793185,-1.0059366,19.621239,-5.584709,-17.097485,-10.7290535,-2.756219,-9.706812,-8.998265,13.608807,-0.17047787,-12.146265,5.9791794,-7.3120184,-6.8955364,11.845394,-2.2219493,null,0.49534512,8.284469,-6.176321,-4.0656724,9.837418,-8.346562,-5.137683,5.710633,-8.781659,-1.3523583,12.563154,5.773126,-8.450046,-4.138386,22.185179,-5.501587,-35.32844,21.448437,16.018124,-41.445137,13.570923,39.593376,-22.082916,-4.7909966,21.937849,-12.81229,-5.279324,3.7168465,-21.728697,-1.2558823,10.457397,-26.72345,-4.5594277,47.453384,13.1435585,-37.647236,-19.441917,5.4187136,4.3781595,11.813953,16.18546,4.866284,14.183224,51.286133,66.343124,36.99526,-0.80201626,-16.091373,-11.974158,-7.5580235,-17.24939,-26.366186,-12.885497,11.401435,34.718662,57.21208,45.12095,-0.073803425,-11.078314,2.8364868,-6.054964,-4.910881,5.4387035,-11.18055,-12.810383,19.386112,24.559708,-12.181063,-22.925915,11.114189,23.590185,8.710879,-5.6490946,-15.4184,14.115726,16.62022,-39.035557,-8.515076,27.21163,-34.948387,-9.891958,37.743443,-20.626297,-10.8953705,20.7779,-23.421173,-9.948399,20.795464,10.695486,9.756713,-8.117653,-2.5796084,15.715768,-11.121628,-7.4335394,4.0092125,-8.108232,13.476987,3.208891,-22.86682,null,-30.00798,1.377182,5.251006,-17.201347,6.422716,3.31075,-12.14959,-1.2127628,-11.393435,-3.448812,0.8231077,-18.934486,10.779139,8.231495,-29.568209,7.744211,10.0778265,-32.379692,-3.5165286,-0.34322,-33.608936,-7.3440056,-0.9415364,-34.22592,-20.894718,5.463469,-4.4926524,-14.426246,-7.943228,0.27810287,16.47051,17.155266,-14.701466,-12.605372,20.95882,5.3810883,-21.358948,-9.128372,-0.11680794,7.503443,32.735413,45.772324,33.667877,10.16003,-0.7457981,17.794067,43.691765,42.404438,17.53419,12.616808,40.079094,52.0767,36.78423,35.911747,41.933376,22.802273,8.899712,29.642353,52.23652,44.36924,17.455227,5.7626886,8.425029,-6.1961145,-5.024139,28.484112,14.477515,-21.3981,10.706326,32.51741,-9.761177,-19.12279,8.306198,6.3542852,2.0659084,4.0119257,-13.124451,-2.9558177,23.133259,-3.3484116,-13.587734,25.02394,8.9766655,-21.836548,9.986442,21.132074,-8.820133,-15.998511,-1.8340254,6.692051,-5.101121,-9.995977,3.9054942,-5.160242,-12.911146,1.1297681,-4.287796,-9.85777,2.1644926,6.937755,null,11.447666,1.2304142,-10.021456,10.848303,7.317168,-19.09177,-2.7896,8.827463,-19.41919,-25.22025,-8.286248,-3.737815,-9.98262,-14.06098,1.5540805,12.79545,-5.099408,-13.294894,5.802823,18.658678,10.271444,6.6801205,22.374722,23.09209,0.76523304,-4.8279705,12.21727,21.602497,6.8170905,-4.0139503,15.601986,24.724165,4.223368,-7.557416,-10.506462,-10.137295,8.328059,19.554844,2.886177,-11.0960655,6.998893,38.47299,43.342094,24.127632,9.429316,-3.987358,-20.543737,-10.77817,22.611567,23.172737,-8.05435,-12.340744,-1.4764242,-14.799274,-22.00751,8.130748,43.819336,39.72946,6.0913477,-8.979416,2.9216995,7.26556,-11.010493,-17.5498,-2.620492,-10.66115,-11.685558,29.58989,30.721489,-6.247124,-4.7095156,1.7920012,6.5303917,17.803478,-16.096409,-30.174623,22.263712,23.421177,-26.436813,-14.827303,8.26297,-23.65184,-19.04287,21.231548,-7.534958,-27.97032,13.726709,-0.09688187,-32.06265,-6.003518,0.10344505,-9.308192,-3.3979201,-6.2956944,6.0029287,3.1485162,-19.80434,-2.1652536,1.9723525,-20.906328,null,-3.3033838,7.787547,5.93997,-3.5324054,15.238196,15.205425,-2.9133658,-0.6414108,-1.7495964,3.5212672,20.37245,11.7442255,1.7757573,12.392997,6.0880103,-9.304352,2.4323354,4.6748757,-16.735756,-1.5280323,11.569162,-21.791811,-6.9337277,30.664425,-0.43410587,-10.994516,17.189178,3.199076,-8.49329,-0.044445038,-4.2091837,0.26645613,-2.8783226,-15.10774,-0.47050476,5.0310707,-24.443207,-38.09548,-3.5438285,36.210037,17.41149,-39.172596,-48.645844,3.7023067,39.945038,17.095608,-6.1841865,2.2455692,-4.686201,-23.038528,-15.058762,-4.3449388,-8.463364,3.4087858,34.66207,37.58361,-0.72348595,-26.038013,-11.92792,16.43566,37.07558,28.256212,-11.415003,-39.71627,-27.794018,0.7121258,7.6733193,-4.5030265,-5.876042,4.41014,4.38007,-0.21019173,11.5086565,12.904125,-12.711104,-5.979639,22.105976,-2.584906,-21.593857,13.555614,14.20532,-20.086435,-7.771717,16.873999,-1.5729876,-15.904659,0.9976063,1.9378834,-6.2175407,0.49374235,-13.413788,-17.346014,13.129259,0.3294549,-22.033249,13.138685,16.136402,-17.675648,6.0614204,28.710503,null,10.619148,1.4903183,-18.025139,-2.4462817,4.8889804,-14.204,-5.375624,0.45263982,-16.659447,-3.8554878,4.705759,-14.186478,-2.714273,13.640915,-9.729355,-18.438553,11.24245,13.258411,-17.134336,-2.3484912,33.656105,11.256733,-14.713736,6.5321064,7.662975,-13.124745,-1.2161946,5.953182,-16.777344,-11.248684,15.414646,-1.8867602,-32.666977,-16.21162,15.389982,17.564306,6.0178223,2.7758121,2.9716544,8.170224,28.913198,35.62121,1.3887825,-30.67479,-28.723175,-17.415247,-4.6117306,19.2085,38.7782,39.655502,39.27697,40.037476,7.830268,-36.75794,-35.174088,-8.564076,-0.59622383,8.967168,36.972218,45.052895,6.2291946,-29.515148,-16.27337,8.417525,5.5895457,-12.531178,-16.90841,1.2334571,12.0424,6.8903,5.484745,-1.6868289,-15.792875,-15.426404,6.5051355,19.768383,-13.132866,-28.605183,15.773017,15.1782465,-23.14559,-4.851528,3.1392393,-19.237534,2.6708488,16.608967,-8.588914,-7.249516,5.7022915,-5.76238,-5.6588345,11.102976,7.8770933,-0.13334656,6.5217714,4.1515102,2.3591943,6.535672,-6.3395624,-5.914012,null,-11.347441,-15.860343,12.903274,6.5167904,-7.385501,-4.9312277,-8.924494,-1.0790496,8.615141,-7.444074,-15.182863,2.364088,-0.22567892,-19.07048,-7.669689,-2.8632603,-23.638382,-5.363221,13.126389,-22.828918,-22.915966,19.084738,2.1346693,-27.958773,5.245309,23.913897,-12.50077,-10.125828,35.423935,27.386148,-9.026684,4.2617183,27.719854,6.191327,-34.01937,-45.556656,-20.265352,8.181887,10.869741,-13.044967,-37.54351,-24.162905,14.890601,32.24418,21.029884,-3.3610096,-28.52795,-42.175682,-49.10432,-54.389397,-52.11619,-46.581905,-40.63669,-20.619057,10.365494,23.058495,18.09319,13.216778,-10.337769,-40.761795,-25.958574,13.684626,20.907642,1.1702061,-14.970026,-18.505434,-11.363173,-1.0616894,-2.0455265,-17.607473,-19.89593,0.09009552,1.7076313,-11.185816,5.3901424,13.211185,-15.322757,-3.1913376,36.632927,13.089489,-15.995406,10.147799,16.055882,-9.901938,-10.918779,4.4852786,4.799879,-12.776653,-14.073416,7.1885805,4.0669065,-9.063522,-4.8916078,-9.759876,-9.290004,1.4390751,-0.3760376,6.602903,7.9585733,-12.213016,null,-15.801029,15.807558,9.583281,-17.178394,0.4457183,8.752728,3.2137566,11.864628,-0.5235739,-11.778469,4.37708,7.755002,-6.6953964,-6.558249,12.968411,11.590221,-19.145424,-10.80344,25.44186,7.0461054,-19.774485,5.781885,11.114975,-19.702486,-5.442522,25.639286,-0.1935507,-24.911716,4.8746223,19.96069,-12.387951,-29.813923,-6.482598,14.518072,6.1347785,-15.31419,-32.795113,-26.758354,17.993935,54.938007,37.502296,-0.11030769,-20.731058,-19.524467,8.4725065,33.929314,26.452116,17.773546,35.89229,54.388657,48.52652,38.091896,52.148354,63.318146,24.915693,-26.184628,-32.238167,-18.522938,-8.355908,14.254335,24.881596,4.230391,-16.204206,-17.259657,-8.713455,-9.956001,-23.237354,-28.244797,-26.019398,-17.410767,-0.41079044,-4.546617,-10.243844,15.598307,12.323427,-20.120726,1.5377603,25.729055,-11.176357,-16.472847,23.760803,12.021364,-14.90443,2.0839143,3.4936237,-11.674053,-0.06590104,6.4168224,1.8623095,9.170004,8.124727,-6.8020926,-11.666843,1.7383134,8.179962,0.7519469,9.673548,7.2444525,-16.163408,-0.2265706,null,10.930875,-3.7926998,-5.17407,-0.21539032,-0.92442703,-4.080589,0.4485507,2.9809597,-6.941087,-1.3721156,3.9375906,-15.259902,-9.964653,5.203993,-11.82536,-0.8173771,25.078434,-8.59262,-24.672935,22.244898,20.390102,-25.516169,-11.678183,16.312553,-5.704291,-16.44063,7.0394983,9.719059,-16.813452,-28.162523,-3.2004638,14.617018,-12.556416,-40.59343,-25.31533,10.166209,25.338495,4.109748,-23.650826,-20.481464,2.244053,26.706615,39.757393,15.743631,-18.164972,-16.447704,-10.805141,-32.692284,-43.80804,-23.236536,-7.40275,-23.014532,-45.233734,-40.706787,-22.475967,-12.441066,0.20151758,16.385363,23.237495,17.78143,-9.291264,-38.551327,-19.136742,32.499985,41.762096,0.7342529,-25.546436,-13.868077,2.63386,14.625918,12.865353,-13.250939,-10.896374,18.755287,2.0564518,-14.501817,17.843513,12.390197,-20.497509,9.669875,38.557224,0.07732487,-21.231358,10.337547,18.760555,-9.806377,-21.145004,-5.502122,9.704525,4.4470835,-6.988924,2.842837,8.864208,-2.304678,1.1138396,-0.4510454,-14.579754,-5.717553,-0.7339847,-9.359701,null,-0.62951744,-4.477562,2.2323942,4.4629736,2.5571194,-1.3788328,-3.760803,4.4389043,9.5396,1.2541761,-3.7106323,-0.9169302,3.0893407,3.4909096,-6.1797266,1.2381516,26.501072,5.132126,-25.443417,12.214952,23.76656,-30.791286,-27.267057,11.8385935,-7.9381533,-27.20657,-8.109989,4.5863304,-2.4489207,-22.841831,-19.989367,19.116943,24.177094,-14.026627,-23.288036,0.38024235,14.014671,10.121208,-2.6123247,-19.94244,-34.928474,-36.89409,-22.056837,2.7612157,24.718687,27.826294,16.434433,10.389158,3.8406553,-8.630081,-6.2438383,9.997486,22.495956,32.75701,38.13996,29.291302,5.8505774,-21.868584,-27.026133,-7.088196,8.676914,18.070406,20.465958,2.690308,-12.989666,-15.046591,-12.490101,5.4318933,12.397107,-12.58551,-11.677073,22.562778,17.407772,-16.844585,-3.2737484,30.948256,1.0252333,-40.294987,-6.278906,19.06609,-22.383444,-26.05928,16.113478,5.6223288,-27.520174,-12.784775,10.215407,5.1987996,1.3131096,-0.5129181,-11.487182,-3.4131246,8.301662,-12.600575,-19.100767,8.06776,9.489976,-4.7838783,2.883315,-0.48685348,null,-2.5922246,8.240209,-7.5267315,5.6184926,13.94804,-3.236592,-1.1268988,3.685509,-1.88644,1.9638691,6.73543,4.291314,-4.5185685,-0.40614724,13.946833,-6.4964666,-16.838333,27.254202,31.833275,-9.313888,-1.5829377,16.90469,-5.1976132,-11.930494,10.159664,11.823256,-9.924597,-17.056662,-5.4033694,1.6607203,0.08808124,-9.49101,-14.998837,2.6085937,20.171515,23.126108,24.516058,10.473122,-3.1110644,19.09352,44.075645,33.93896,0.32091737,-24.618458,-18.250603,-11.7219095,-21.502716,-0.6114559,31.590805,18.478716,1.258626,13.152084,10.155498,-11.71262,-21.553543,-22.870907,-17.483555,2.4934068,25.047714,39.77174,41.86616,18.597305,-15.276278,-18.691357,4.1313214,12.823415,8.458522,4.9242826,-10.498381,-16.19766,7.8507714,11.307451,-14.505275,-10.846907,11.656795,4.586074,-18.562973,-20.123383,1.446351,4.3830323,-15.645252,-3.4386897,18.517027,-4.9322386,-18.932434,8.127919,17.319122,2.954508,-1.9033732,-0.30913496,-3.101433,-6.719185,3.5043283,13.508551,-0.0057587028,-5.69302,2.668414,-6.5676622,-4.900149,11.561279,null,21.743156,1.2047575,-8.186797,2.1349864,-10.071243,-10.977109,1.8063383,-5.9286118,-11.754977,-3.6564527,6.4614763,5.959994,-14.410605,-14.64545,13.315662,8.736349,-12.986301,3.5839727,20.165447,-1.3407445,-14.212065,5.3371596,8.878799,-14.317419,-8.869092,22.102127,15.718721,-13.048079,-4.447005,22.890545,27.95686,15.162054,-9.726015,-20.87553,13.611285,41.709244,17.478994,-8.97112,-11.291818,-11.573513,-8.85275,-3.8562183,2.3846016,11.38236,7.1637435,-1.2945046,3.1763866,1.8332548,-20.38475,-42.931057,-30.498108,-3.02135,-11.467524,-16.139826,16.50553,23.589113,8.272047,15.029753,6.74905,-27.61229,-45.129776,-27.495943,7.84903,11.560204,-12.859964,-8.290585,7.4887986,5.2258835,15.659349,26.89108,6.318524,-13.95465,-3.221717,6.8045187,-8.505449,-15.091564,1.8744398,5.6573105,-10.827322,-13.127335,13.250008,28.207691,-0.40969324,-17.238869,5.333272,8.593497,-4.274044,-2.381085,-4.53756,-1.2727294,5.96953,-1.0199289,1.1291087,5.4155726,0.2396903,-0.35453343,-8.807383,-2.656384,17.708872,-0.40123606,null,-2.1882534,10.549027,4.854706,3.9929183,0.46348858,-4.993887,2.726942,3.4201903,-0.3319409,1.5722282,-2.640749,0.8687551,16.53849,13.173731,-11.160591,-9.888533,20.462736,10.668245,-22.228233,1.2123404,18.144703,-22.320915,-20.842642,22.638021,15.243392,-9.752322,1.5548224,9.245504,-6.5428667,-8.305382,4.487985,0.24764061,-0.6186769,11.907823,-1.7700249,-16.627596,2.9181612,14.416209,9.050131,10.821384,5.8480425,-9.163664,-23.714241,-24.002804,-7.110867,-5.1127996,-4.996772,22.26041,28.46306,1.5114183,-3.6455657,12.324852,13.146588,-4.2123327,-15.792003,-13.768932,-21.393335,-30.925585,-15.603864,7.4665756,13.131066,-3.4948504,-20.865282,-8.765713,4.2683043,-12.520588,-23.615683,-7.6057653,11.210611,5.358258,-19.196535,-19.647205,2.811452,5.5455647,-7.256519,-7.6615863,4.484662,-0.7258501,-27.937359,-19.01735,16.029688,-1.2581434,-29.267864,-3.6449242,16.175991,1.1416605,-1.6891437,7.338297,1.0246125,-11.483685,-11.128675,-0.78308344,4.0526056,0.31164932,2.5435748,13.65456,11.6430855,-1.869082,-0.85488665,4.6517086,null,-14.33021,-8.527361,-5.907606,-9.954557,1.9962814,9.734253,0.54968214,-1.5376766,2.047292,-2.4327161,-9.567589,-3.4689112,17.82147,12.954989,-16.524286,-8.106638,10.735642,-5.084749,-6.331151,6.1284113,-4.80707,-12.038057,-7.903724,0.042861223,13.720708,10.271669,2.7461977,10.78694,8.541545,-1.5088738,-4.800208,-8.230336,-5.155551,0.83650243,-0.8395561,-5.818961,-14.822185,-21.920174,-14.873106,4.738015,18.591845,8.073078,-5.7988987,-0.74051523,-0.12430644,-11.266766,-17.098148,-16.15183,-14.078434,-22.708557,-30.341774,-15.542791,-8.397602,-20.144354,-13.776542,3.931429,6.525736,3.1481934,8.3225565,15.429101,1.7212317,-20.917542,-16.429926,0.79686356,8.340313,10.982088,2.0808432,-7.336789,-1.8898053,1.6843429,0.38290977,-2.4615037,-9.556279,-5.271518,7.562052,9.3657,-3.2452564,-14.42964,2.890185,16.187134,-10.880555,-6.8387012,32.727226,14.65131,-16.250124,4.33489,13.686193,2.6976748,3.7847328,-5.5470743,-12.188946,3.6894722,11.257839,3.547809,2.8620596,10.913179,9.759097,-2.0418735,-2.8441772,2.9340005,null,11.288242,-9.09034,-15.157781,-2.303258,1.8226857,-1.623261,-5.375995,3.789037,9.8818245,-3.8046408,-2.7662745,7.2629647,-0.34279728,3.5659769,11.715332,-5.1966944,-14.252417,3.6700335,15.312971,-3.2691722,-23.876331,-7.4524693,8.786245,-9.718267,-10.044345,12.47078,3.8727198,-13.938813,-6.038202,5.5703607,7.8599896,3.5940237,-5.9471693,-10.433913,-7.3103194,-3.296956,-4.1079493,-8.707338,-7.4244986,-8.062717,-17.958591,-13.705568,2.7474842,0.7812934,-11.436674,-10.022018,3.29289,12.9972725,7.251502,-1.194016,1.9297624,9.729265,22.51661,30.090378,14.221249,-2.999055,-5.7948246,-12.926426,-21.148033,-18.161472,-11.946686,-3.5886343,10.705106,19.392866,15.556049,11.25098,6.923979,-4.113622,-3.1954842,13.862979,19.044891,2.614942,-13.279252,2.7891142,28.953568,8.675823,-15.764649,9.065065,18.252392,-5.1706977,-3.5401187,6.7981834,4.3170543,3.3993855,-2.7848363,-4.2773466,3.043533,-0.48971152,0.56353474,10.972119,2.3927412,-16.027498,-16.892618,-5.595156,-1.8771329,-7.141227,-5.7135887,0.97005796,-0.4224379,-1.3721805,null,4.965912,-4.39526,-0.06392455,8.390589,1.6559029,1.689869,10.751987,0.73456097,-13.380555,-7.055731,1.9788296,0.14608765,-7.053969,-10.20621,1.1088595,0.3489678,-30.241783,-33.610565,-1.5675588,-1.8039289,-15.562619,-2.664486,-2.2552147,-5.324189,18.494814,24.914389,3.1503983,-11.707841,-15.629982,-7.0039473,6.6653585,5.848855,-1.7898381,-7.4865093,-8.855412,-4.521496,-11.013901,-19.963787,-8.179357,-0.46779633,-10.151435,-5.6245,3.8954105,-11.653549,-26.917152,-15.85729,1.0593667,2.587391,-7.1544414,-8.873911,0.3860979,2.0131278,0.29112148,0.7901182,-13.919199,-25.56837,-7.4461746,11.707478,5.7483764,-4.0706444,6.41107,23.509594,20.346115,7.971678,4.3457055,-0.87214446,-2.0979352,10.991852,16.040361,1.7472329,-11.105082,-9.521414,-0.15395355,8.40588,7.329769,1.6889205,13.953223,23.762997,1.5105152,-5.183112,17.038902,6.856971,-15.10609,-1.6334095,8.151737,-0.7443234,4.0055933,11.332252,1.7980318,-1.6094444,11.347565,10.780816,-1.210012,2.6208982,5.47336,-1.2233038,-2.8256402,-4.460161,4.420546,10.82663,null,-2.3919368,6.4699965,9.389079,1.1253924,-2.6471272,4.8471403,8.190505,0.99608827,-6.864803,-1.7803466,5.9918585,1.9914727,6.438432,12.842009,-0.6226001,-3.843989,7.4735107,7.282849,8.042175,11.473118,8.51879,6.216056,4.1294556,8.273799,9.217093,-6.0109196,-7.2824025,7.058863,5.9537883,-2.8749776,-10.345702,-16.031925,-7.2472515,4.9844575,-0.6441965,-13.2996435,-9.019271,-0.15743732,-11.711794,-19.873524,-5.7853665,1.8100667,-8.137432,-18.977448,-10.820057,13.465273,14.564219,-0.6583462,3.9404202,0.6777396,-19.840496,-21.93596,-13.340061,-6.403072,-0.32304716,-11.106267,-22.380497,-14.924252,-10.134001,-6.555207,2.2558465,-8.348621,-24.005144,-15.382989,-5.769219,-5.1817803,5.4692097,11.894359,0.5982537,-8.797283,0.89961386,20.621292,17.064201,-7.2432556,-6.391771,8.668236,0.4599285,-8.9099865,-5.6340885,-4.3998117,1.0493517,2.8168821,-6.3707733,-3.1582546,2.4743948,-6.9493637,-1.0099013,17.2813,11.943821,1.1579247,3.160132,2.0709925,3.986772,6.5857105,-3.4606695,-5.6258116,2.5876036,0.42319894,-3.392355,-1.7224803,null,-7.683675,3.9881492,3.2365553,3.3489356,13.0487995,14.366082,5.4903116,1.8275523,9.181576,8.81517,-0.33100218,7.916629,17.417616,2.745583,-7.1843195,-0.022336245,3.188923,6.795726,7.561556,-2.2812543,2.2574062,13.567716,7.2760916,7.5735073,10.669558,-7.6731577,-16.327507,-5.9915204,0.5638943,7.4110556,4.475215,-7.240038,-3.371478,-1.286293,-1.1497068,18.63565,20.483904,-4.279521,-8.116185,2.5427368,5.4469976,6.8076963,-2.11658,-9.274659,1.4638252,1.2162971,-6.091021,0.050481796,-6.632761,-10.73285,10.4260845,8.536167,-12.298809,-9.622086,-6.1652756,-9.0651045,-7.224909,-9.483785,-1.0726826,1.8964999,-18.662294,-10.671955,19.216333,9.722257,-8.668284,4.2011375,5.165841,-23.27069,-28.300379,-2.5202646,0.5976653,-17.851376,-21.452818,-11.744263,3.8237336,9.16567,-7.373807,-12.925898,-0.82295656,-2.2177699,-10.605322,-3.7695463,5.5231905,-5.023581,-12.609406,3.0253127,1.5936518,-12.221727,2.574002,8.048039,-6.1469526,0.17255688,2.2400432,-8.780009,-7.8323536,-9.761264,-5.1700106,10.135886,-2.6643353,-14.581918,null,-3.0564606,5.4220934,1.5227895,-13.726532,3.2553387,14.466442,-10.768089,-10.735185,6.389773,-3.1074216,-7.0179505,-1.3216196,-3.7427206,-0.09635186,1.6110623,-0.36165285,1.3570874,-7.780431,-13.159138,2.064931,12.7560425,8.706441,4.911388,1.6200335,-3.2164464,2.3539205,11.035568,1.7260306,-8.303181,-0.23622608,6.912303,10.355007,19.285658,17.404955,-1.4512293,-11.823303,2.2591896,14.453379,8.136184,7.258828,8.148945,-0.18134022,8.05547,23.77599,21.655336,15.894091,12.214178,11.186313,15.947679,8.232549,-2.159809,11.101796,24.96524,13.752893,-0.74208426,2.9682868,10.858151,7.0197954,0.21960211,1.4758282,3.405377,-3.9190564,-8.513857,-1.5312848,-4.1694555,-15.158301,-6.730159,12.455263,21.923943,14.402548,-12.76174,-28.50915,-11.485452,9.46667,14.702168,6.0128183,-6.6298447,-5.9738064,-0.40099955,-1.6841006,-1.2561293,-2.6377873,-6.9863253,-5.4626937,-6.1068263,-12.015063,-12.294471,-8.130169,-5.860167,-2.7197971,4.735385,9.65025,2.3470993,-5.139372,3.411554,7.5698824,-5.0513444,-6.6422157,-1.5454688,-9.493433,null,-0.83880544,-2.0174932,0.20352888,2.9972148,-2.2707381,-9.435232,-5.3920927,0.23363632,-2.5846577,-1.6006687,4.3031316,4.289054,4.137363,2.6558328,-6.9711843,-7.4080462,2.73195,3.1957164,0.8859396,3.6834583,2.3233008,0.41532326,1.8062897,0.28639317,-5.289196,-6.3396807,5.361146,17.71576,14.758343,1.8443258,-7.6309247,-5.6482353,1.3741333,4.19489,5.625393,1.1406014,-7.3340673,-3.9665747,7.2541833,14.079641,8.460464,-5.703443,-6.0143957,-2.032931,-9.780455,-4.432561,8.589891,1.3259559,-12.604366,-15.418526,-7.010563,0.33184004,-8.154303,-18.67111,-15.20443,-4.325515,3.0225892,2.1518772,3.0977879,7.1842294,4.1658134,-0.42127967,-7.315016,-11.922508,0.7447194,9.632671,2.2611036,-5.496698,-16.624134,-16.969465,5.631482,14.963168,3.663649,-1.9826031,-2.299793,5.6298237,18.473385,9.6748905,-2.6775987,10.492112,15.392719,1.3041296,2.8631804,5.148053,-5.119002,-0.059757233,9.120081,3.738861,-1.1400232,2.6771104,12.254292,7.6001816,-8.963205,0.49736142,13.268296,-1.775826,-9.411487,-1.964922,4.5634675,4.160588,null,10.748299,-7.8264675,5.2171288,15.521004,-13.494022,-15.970209,3.6519368,1.5732334,0.10325819,6.778833,5.3270664,-3.7571352,-13.307181,-10.801832,-2.9800353,-7.5396934,-9.962391,1.3821635,5.2504697,-4.6356964,-8.745628,0.2235806,9.194322,4.757996,0.79484415,11.352643,4.923399,-20.451044,-16.135979,4.3093996,7.2058005,7.785055,0.40074635,-9.752435,5.833357,19.119846,13.864954,15.717427,12.562319,-4.5107346,-10.219085,-2.099534,1.1386127,-0.96973324,2.2088094,-0.1245594,-9.910857,-2.2041821,13.163893,12.478525,6.063415,3.726202,9.427034,14.871247,7.919098,6.031439,4.436636,-6.9148397,-1.3254156,3.7934961,-8.431244,-0.1557408,16.880207,19.564987,25.694098,16.266453,-10.890853,-12.270024,5.2109046,14.327398,16.681557,6.2806334,-11.620619,-12.490191,-0.9471166,5.5342407,9.824915,9.244425,1.2080281,1.2237868,5.627884,1.2719488,-1.0168343,-0.9516158,-4.9158792,-0.5486164,4.7381134,-3.5411634,-6.5628095,2.4666617,2.9715776,-2.0185723,0.6426656,1.4683638,-1.9071813,0.07861495,2.7863379,0.040265083,-4.5199594,-3.9276214,null,-15.942037,4.2492723,1.4213185,-14.418303,-6.9925823,1.4293745,-12.328321,-18.907427,1.2387118,10.572891,-2.0686793,-3.256587,-1.2973723,-8.781575,-3.1806328,7.992652,4.4807615,-2.0656037,-1.1913058,-2.4300148,-11.38794,-12.845512,-6.0842433,-12.241299,-10.968406,14.558502,17.022366,-8.783873,-17.518484,-12.833292,-0.5179353,18.795801,11.40857,-6.119299,-3.9554324,-8.681169,-11.725924,-0.31649327,-0.6661806,7.932317,26.7798,18.198902,9.032215,11.10327,-0.64173794,-2.7087317,10.561368,14.4795265,10.393112,3.0948234,-0.11162615,0.6690304,2.9568164,18.158276,19.938107,-3.955865,-5.4920077,12.306471,12.612639,9.293476,10.424423,3.1007895,-3.7693012,0.28614998,2.866682,-2.3195736,3.7021723,16.887482,12.98385,1.0962286,-5.3784466,-1.5996634,14.862617,14.5338955,-7.6776886,-12.909253,2.407013,14.361412,10.080397,-0.86984396,5.562161,9.989077,-7.1729603,-5.8914204,12.227535,1.050724,-15.230957,-2.5003614,5.631897,-5.875023,-10.439587,-5.980112,0.60405827,3.1592455,-8.210293,-6.719247,10.37962,0.94081664,-9.628311,6.453737,null,-7.9321604,5.302069,9.075533,-7.70658,-10.332283,11.088992,11.956007,-4.3309126,1.2868447,7.894725,-4.7898364,-3.710111,6.347003,-5.734507,-7.8415737,12.566976,11.6455555,2.3864737,10.676638,15.032131,14.161466,6.5189743,-4.090811,8.6919155,11.080726,-15.41254,-17.408367,-0.08611488,4.27578,4.664014,-4.114794,-13.1043625,-4.9911933,0.21094465,1.6670499,9.274677,1.8743539,-16.247803,-14.106613,-5.3367653,-13.825757,-11.310598,4.240507,-4.908419,-10.607213,6.9449835,1.6146512,-12.463451,-4.3653407,-5.5434256,-15.285404,-9.025875,2.17733,3.4140983,-2.840111,4.160259,18.53648,10.88858,1.6585145,3.8748941,-5.106828,-8.066986,2.4174385,5.4608135,9.267586,11.750544,5.702505,-1.5191171,-18.707436,-23.93475,2.375412,13.096815,-0.11553097,-3.3119507,-8.0307865,-11.320635,1.5613914,7.1271706,4.024855,4.8685403,2.6332235,2.2465634,6.844391,11.460633,7.9115114,-8.335343,-5.198944,16.492546,7.273796,-11.635624,-2.6336155,4.468093,-2.9137664,-4.7488184,3.3314521,4.3499656,-5.9607267,2.479492,9.96086,-11.124016,null,-1.8620837,-3.3893049,-12.307192,-0.14229608,4.422297,-13.482578,-6.325283,12.380319,7.6967697,-4.833548,-6.9819474,-0.5569021,0.33142495,-2.6697352,-1.7529929,-3.1176906,5.3650618,14.260279,-2.5361438,-8.414375,10.723503,11.099067,1.4031639,6.8682275,14.074709,13.0552435,0.4838395,-7.8890915,6.957205,20.678303,15.954935,7.860687,1.389359,-4.2247915,-6.3016744,1.9790308,17.373768,14.551409,2.3184624,3.275442,-5.852554,-16.822979,-1.6042855,4.348951,-9.104603,-6.954523,4.942996,9.85808,3.6370888,-3.9008026,10.279615,20.51258,3.156838,-5.3721366,0.8849523,1.964158,2.1968956,-7.0454726,-19.645555,-6.478695,16.28708,12.293337,-6.514476,-9.0411415,-5.5156484,-10.65679,-6.3855486,4.8913746,9.844986,13.1285,4.846511,-9.224785,-10.661196,-5.6730814,7.4230413,9.179571,-15.760598,-14.96209,8.537484,-1.1257275,-14.869233,-1.3760017,13.222607,10.77112,-7.8156705,-11.128131,6.8555202,-1.233191,-19.581923,-3.4259946,11.387084,-2.3126435,-8.546,1.5621498,0.42476487,-9.338663,-5.921506,6.7455473,10.287351,1.359246,null,-0.49953306,-7.4650946,-8.001046,8.824348,9.105738,-8.452635,-6.5319595,9.298506,6.979499,-0.593137,-2.4335527,-8.035955,1.148535,13.080602,-2.0800452,-13.681234,-6.141406,-0.4326539,2.392137,-2.7106626,-9.061885,-0.87071943,3.1271276,-3.9357586,-6.367873,-6.292659,-6.039009,-0.15416145,5.603623,-1.5964501,-11.669384,-7.8723383,-10.335078,-17.524364,-0.7988272,7.343792,-12.4337225,-13.732287,5.00099,11.848572,9.672339,6.47546,2.9537191,-0.43596935,-2.5440817,-3.009316,-5.9127455,-4.977928,-4.091595,-14.846741,-15.407472,-0.14351296,3.4034948,-3.4181159,-8.6405945,-5.897439,8.03578,10.935934,6.1917295,13.901759,6.804696,-13.416621,-10.8118105,-6.2074504,-10.468642,2.6934862,15.027254,8.144775,-0.035212517,-8.414827,-17.192814,-11.6079235,4.477926,11.702088,2.684112,-9.52822,-11.764164,-3.6078575,4.7361426,-5.6310143,-19.460384,-4.0105367,10.553797,-1.1334467,-2.831213,5.785304,0.9255233,-1.3464817,5.879893,8.772219,4.2014565,0.69388103,2.3509755,-0.38145018,-0.5764358,6.0030007,-0.21446466,-5.5703015,1.0248652,-3.8345995,null,-5.9042816,12.54534,8.158951,-6.2605715,2.5083723,16.277569,10.674257,1.146589,5.436442,6.2677503,0.15018106,8.4940195,15.482784,5.615476,3.0066013,7.0230293,0.5543852,-3.4777336,2.5769744,6.4544783,3.537057,-2.0333357,-5.316696,-5.3129015,-10.271576,-20.289253,-16.208118,2.498065,10.809414,6.275233,-1.0236185,-10.154037,-5.8030562,9.894228,9.535305,6.432898,18.367764,16.336313,-1.9972444,-5.753256,-0.9626248,-2.2272837,-1.4054351,1.1547871,2.4932966,6.003414,6.7264295,3.7949076,3.8321164,5.8431206,4.159861,-1.9017248,-3.4404635,3.3664076,2.8736882,-13.02913,-22.227476,-7.9598317,3.0592647,-7.7133837,-5.4537535,11.489507,5.3593254,1.2002935,13.234199,-1.1179075,-19.646313,-8.66331,-1.8675961,-1.4981089,8.983935,9.067179,-1.1310337,-6.2009335,-5.6981964,2.0059729,4.4333806,-13.323835,-23.642902,1.1289515,18.672237,-3.6820927,-11.841359,11.5344715,12.822862,-4.8069506,-7.7613516,0.24753648,5.3789377,-7.538673,-20.17167,-3.6614177,8.396719,-3.922861,-7.4037247,0.10437143,1.5682814,3.758143,8.602299,1.019671,null,4.2819343,8.763693,-0.5590105,-20.412186,-12.256942,4.9124007,4.326755,3.2041073,-2.8937316,-9.846497,0.7749903,6.3629,-4.0629163,-13.575418,-13.25901,3.5865414,14.233006,-4.426274,-17.503597,-5.3874264,-0.39056587,-6.700385,-1.6720243,3.9963028,-1.9431951,1.2558798,12.993724,9.984007,0.42715144,-3.1365726,-2.510984,5.2830076,10.317094,8.314403,6.860445,-4.1226544,-11.82753,3.9317274,10.654257,-3.1214442,-1.2063257,9.434092,0.30218697,-10.058073,0.26994848,12.30995,5.531206,-6.041074,-1.1586452,10.548185,8.144534,1.4994926,8.28972,13.875697,5.4924555,-2.373155,0.9188876,13.236448,20.51398,11.201633,5.487639,12.500425,7.4711986,-6.080339,-7.185603,-4.5764112,-3.4062672,5.824068,14.07793,10.058874,6.0562854,8.626455,4.3331957,-0.8975599,8.571368,15.64812,6.8934903,-0.33904076,-0.027666569,0.14855266,-1.5597849,-7.6540604,-6.468324,12.44046,17.56913,-4.024845,-7.8753986,7.0296173,0.14722204,-7.8453164,3.8300061,2.2955809,-8.411251,-2.3066087,1.5452285,-7.342922,-8.598846,-0.46072352,1.4481637,-3.1529102,null,6.413024,-8.6596155,-15.444378,-4.1309357,4.337646,7.5532947,5.857934,-2.0252595,-4.445607,-4.042298,-5.1619406,-2.8077612,-6.840008,-14.072132,-8.105285,-0.8512776,-0.22785926,2.9732928,-1.520605,-10.994409,-2.4970531,8.67611,0.89262056,-7.766138,-9.833225,-13.655573,-8.902899,0.7993779,-4.3510847,-15.874586,-11.122677,4.352809,5.9868813,-0.69169617,4.94041,5.9269414,-4.8571353,-4.069962,-3.8956482,-13.47629,-7.901427,3.8784795,3.5789456,0.98066854,-1.4046259,-0.29756057,6.422058,5.5796375,-1.390486,-4.572318,-5.548151,-7.12212,-6.3131704,4.301867,14.810607,7.3229556,-4.090763,-2.9961395,-1.1642783,-5.903019,-8.975965,-3.9533997,1.9607215,-1.0611095,-0.5016527,12.520258,14.891932,-2.0988636,-11.149338,-4.3899536,-1.5330735,-1.9165808,-1.5859382,-11.00046,-14.174128,0.8002722,7.894281,2.121898,-1.69837,-3.7321901,0.80743027,6.604853,-1.0716081,-9.635235,-3.0859914,9.768545,9.423716,-2.975806,-3.4253254,3.4338994,-1.7849593,-6.901717,-5.822217,-3.4539173,2.5747437,1.961502,-0.6439066,4.1332836,-0.919467,-6.6592746,null,-0.15600109,7.280012,6.0117292,0.017885447,-2.629817,-5.3586917,-3.0693634,-2.1907368,-8.035298,-8.9666815,-7.595707,-3.4895759,3.755711,-0.050780296,0.28346038,9.497849,0.019004107,-9.818249,-2.0190783,-2.3064785,-7.1895976,-8.720149,-15.637646,-9.006252,9.411804,12.26319,7.202523,4.9269123,2.4357624,5.593791,6.0014744,-0.16869092,5.860368,11.050206,-4.520186,-10.451415,1.7582129,-1.3244896,-8.104305,3.9184039,13.04799,9.780926,3.0283155,-4.4207664,-3.2313578,3.5510545,4.5341687,3.22529,3.6338434,7.3202925,11.725888,12.782023,10.36888,-3.2236013,-12.974813,0.2869935,3.9164326,-8.566181,-3.2627678,3.4275312,1.9519553,13.545005,18.995865,6.8291035,-5.75053,-12.553356,-3.859654,7.874565,0.8788452,-1.5311937,10.842857,14.94174,9.304474,1.2309115,-1.9486752,1.4692705,-6.1371126,-12.799623,1.9476871,8.950862,1.2808996,5.614476,3.5683885,-12.201735,-8.402075,2.4821205,-2.585024,-1.4562206,7.2619886,3.9391725,-4.0599775,-5.1186385,1.1743189,5.522042,1.3503523,2.9568868,8.23403,2.7486677,1.3447531,4.1956654,null,-6.24463,-0.5191467,17.11406,10.195884,-11.398964,-11.2381315,1.4215145,6.4721003,2.8730273,-3.0389302,-0.17485428,2.8637238,-4.132351,-1.5791526,7.8910003,4.2289066,4.0512505,6.943159,-8.512181,-15.435575,-0.39026165,4.46316,4.1055694,10.705302,6.436056,2.3732235,5.837055,-1.103437,-3.6488717,0.5411302,-8.909693,-5.8573756,18.153341,21.663786,3.6933599,-4.675028,3.0889058,9.272505,1.2470124,-0.06725645,6.894156,-3.1484678,-3.1588416,16.271193,6.864932,-11.906108,2.321975,14.738796,3.8505087,-5.9295535,-8.254252,-9.529984,-7.56854,0.31136775,3.795021,-1.2728109,1.5537081,5.9403615,-0.15457857,1.0999098,2.1642299,-7.8191285,-0.6257248,12.326003,1.9571795,-2.2146454,10.17316,8.182841,-1.4251184,-0.25426292,3.9686842,7.9027805,10.054942,6.317433,1.4646282,-3.2559185,-2.2767746,8.208712,7.100958,-5.1596937,-4.3136673,-2.2166936,-2.1614704,10.910788,6.7879014,-14.523565,-5.231005,11.840352,2.2033026,-1.9065446,5.54456,3.9028602,4.732943,10.379367,8.394056,0.5171907,-7.3255706,-6.822909,1.3122936,2.7485065,null,5.8653154,-0.63126636,-1.5149908,4.899628,3.6958172,1.0666912,-1.5256808,-6.6735253,-2.6845632,4.8458834,3.7224963,4.6391478,9.0733,8.621252,11.891056,14.422627,2.8190174,-2.1279511,10.385584,9.425251,-6.653182,-6.573786,5.8250027,10.570152,6.1926093,-4.6780515,-8.681038,3.3298864,11.475563,5.880834,-0.5412624,-2.8713317,-1.444253,-0.27938843,-2.7201157,-3.2422104,-7.1923494,-10.672999,4.369391,15.392697,1.8389032,-5.0971417,2.4382412,3.1700706,3.3481417,8.576498,10.745271,9.702623,7.3021693,3.8927503,-2.2401114,-2.1324759,11.523128,12.109477,-2.2739782,2.238854,7.7014403,-3.8961155,-1.5376673,3.6673403,-9.61063,-10.716435,3.626689,6.4561596,-0.20380974,-4.568711,-2.3251266,-0.17523831,-3.7963376,-0.02661848,4.7475595,-3.7570715,-4.6870236,1.5597291,-8.516551,-14.447477,-0.7433195,6.481136,-0.06348956,-6.697687,-6.5043097,3.4068296,8.946608,-1.4818077,-8.12114,-1.4130702,0.7524847,-4.3812847,-7.04354,-7.977239,-8.082225,-7.2449207,-3.5699975,5.853241,6.22812,-4.8610797,-1.2596133,6.186908,-3.8155794,1.4709554,null,-5.439351,6.3464622,9.723581,-2.6523762,-0.97762585,2.9030395,-10.024689,-14.006229,-0.14029598,7.1995077,3.1158094,1.6432242,6.2324944,7.1460924,-1.2324136,-6.531803,0.3050804,6.0624084,5.852289,9.993908,10.918502,1.2129836,-3.556459,2.7031255,11.4355,16.835152,12.840948,6.068182,6.095806,4.1553993,3.6995952,13.708036,14.762518,0.5880393,-5.8182344,1.6588764,8.527138,2.3533115,-10.060253,-7.8862057,4.5360084,8.450169,5.3509736,-2.0941074,-9.366835,-5.540275,-3.8001537,-12.473008,-11.16767,-2.7032428,-5.249415,-8.430996,-4.0833836,-4.113497,-8.930544,-5.8899574,2.4799986,-1.1778126,-8.975512,2.2232077,11.84466,-6.115283,-23.046112,-14.956501,0.85871994,9.5831175,10.366462,7.579856,3.491175,-3.5210912,-4.9642277,0.33371496,3.3088942,8.579018,10.219609,-1.2657168,-6.8443775,-0.6264839,1.6030462,-0.5495105,-3.9066706,-8.014932,-11.123142,-10.225662,0.97224426,5.257533,-7.4071817,-3.990899,12.452574,7.014772,-2.9133797,1.6580393,4.9128733,2.4424996,-3.1210966,-5.8366537,-3.465331,-8.347161,-8.544919,5.1011667,null,-5.0001316,-6.4701567,-0.74143696,-3.1389956,-2.7142553,6.3697267,2.213207,-8.812352,-10.043862,-8.913756,-1.2287576,7.3081374,0.9696636,-1.9780192,0.27567232,-6.4513016,-1.8498929,9.562969,2.0387383,-6.695526,-0.64284253,8.642433,8.187725,-8.700924,-19.536991,-8.106367,-3.1276302,-10.242762,-5.2027464,2.2563334,-1.5379789,-4.476224,-3.6632247,-4.087944,-2.86813,-0.039567947,0.9416275,-0.30413723,-0.21341944,1.0552292,-5.520608,-13.380707,-3.967556,8.683021,5.492611,5.411753,13.966846,7.9716105,-5.611805,-1.5177202,12.715525,13.238104,3.0783105,0.85537195,3.5362515,3.913986,7.5087066,5.3978786,-6.2182817,-9.512541,-6.2529736,-4.3919845,4.4619393,9.677202,-1.6683757,-10.122199,-0.9084573,8.56592,-0.6461172,-15.050422,-9.1030035,6.1529446,4.14277,-5.01685,-0.61205626,8.481442,8.998505,5.6762114,3.830975,1.532228,-2.6445985,-5.089759,1.7046762,11.456417,7.89594,0.7252464,5.015412,4.4689236,-5.7871313,-4.241249,7.7630453,12.776417,7.9001074,-1.3454344,-6.0913677,-3.9522958,-0.8459554,2.9911938,1.7075473,-7.566449,null,3.285706,-6.447607,-2.700441,3.9117048,-6.524063,-6.951746,8.636928,2.2826385,-15.421084,-10.107252,1.167346,-1.8835483,-7.1881447,-6.480177,-3.2218366,-3.2353907,-4.4958024,4.9695234,16.372152,9.649116,-4.041327,-5.183365,0.62010765,1.0365877,-4.9585586,-8.928772,-5.1649504,0.23148537,1.1051848,0.123479605,2.1822689,7.1988807,5.111553,-10.4332905,-19.435474,-4.6942883,8.639011,2.8902042,2.2662396,8.796495,4.1081214,-0.9871359,-2.720562,-8.169061,-8.957132,-10.713188,-13.380461,-3.1607223,2.7411594,-3.733322,-2.4470668,5.738498,12.923668,12.419632,-2.6588497,-12.466582,-5.478364,3.9759874,9.721211,7.8255434,3.163601,5.716009,2.0529766,-9.162407,-10.291547,-3.9195676,1.4417958,-0.55891776,-5.293192,6.881693,15.399314,-3.2591586,-11.58655,-0.48564434,-0.013987541,3.3326697,9.593122,-3.8287868,-11.593701,-2.5921888,-0.74761534,-1.4887981,-0.33077478,-0.9753027,4.6508718,7.979176,6.115072,6.0618544,-1.2781043,-3.6065626,6.482508,0.65303946,-10.88064,-1.6420085,4.5057087,-3.7012253,-1.2825615,9.707624,6.795278,-3.6346025,null,4.78123,-3.6197228,-9.487684,-3.7310834,5.5539875,6.049686,2.42172,3.011971,8.276268,2.534129,-6.7903714,4.3474965,6.836095,-11.690148,-8.52027,5.311685,-0.28929526,-6.343955,-5.157185,1.5437443,10.516468,1.8344603,-12.281361,-13.965906,-10.955127,4.300631,17.294731,5.1514854,0.23057795,10.496099,7.3304377,3.4603148,6.7825747,7.326979,10.378398,4.9193764,-5.6635127,-1.2697616,-2.904089,-15.009985,-8.4245205,4.3091345,-1.0272579,-11.786623,-9.071917,-2.2758937,-10.876858,-15.839851,-4.7698965,-10.286959,-23.68905,-14.612364,-4.8484836,-4.269394,-2.7036796,-6.3954372,-4.6075706,3.888915,1.5406709,-3.2538478,-5.459116,-8.791573,-2.5493531,6.150108,4.760536,2.6059327,3.1535287,2.551698,3.2181678,3.0597353,-1.0483996,-3.817746,1.3308933,11.15945,12.756344,2.8731341,-1.9514272,4.4379625,4.877839,-0.37833607,4.5304065,8.333346,-2.1219363,-10.439336,-2.2512653,12.429022,11.665143,-3.6022193,-3.0948663,10.565674,3.1758692,-11.722206,-3.7790923,3.0774698,-8.395488,-8.018599,6.0085006,6.5847783,1.6288536,3.939763,null,0.43360662,4.5616536,7.750343,-1.3246317,-4.8827024,-1.4185715,0.029497981,2.4468272,4.7036276,2.7370083,-4.7387657,-9.835909,2.2590206,16.500511,9.93819,-0.60367084,3.7151763,11.774025,6.6254234,-7.4326572,-6.5270314,7.4790688,9.054495,1.511446,0.8638439,3.7958708,1.6356032,-5.548293,-5.7694616,2.4053798,-0.42111993,-14.083402,-16.118889,-7.0541286,-4.011287,-3.5647469,2.0531769,4.0336018,1.3527293,-2.6916254,-9.884907,-6.2733383,7.145632,6.484938,-0.5976951,4.244026,13.954549,15.173451,4.368867,3.906334,19.345608,13.614656,-2.9160137,9.276252,25.08979,15.300262,-1.6942644,-5.9474998,-0.22135067,-0.5101428,-2.7694387,2.5291383,0.74792016,-1.3298743,5.8220077,-0.29561996,-11.108979,-7.7392616,-3.854411,1.2367842,4.370495,-4.7640367,-4.0071425,4.940656,-1.6671195,-8.619655,-2.795156,6.1454496,6.114122,-9.21601,-12.059355,6.954615,8.814758,-2.0909212,-3.4684005,-9.953349,-7.927223,9.454234,7.865772,-5.5562325,-7.489603,-6.189849,-4.9652543,-4.551136,-1.6585,6.9272985,4.8663607,-4.453291,-5.2004848,-1.0943103,null,5.0260534,12.857644,8.574263,-4.356329,-12.572934,-1.9684339,11.279829,2.4865313,-6.7990046,2.000435,7.8936644,4.211962,1.8590803,4.612955,10.029715,3.946765,-11.163715,-8.760227,4.3861136,-0.5631404,-13.171957,-9.663407,1.5125041,6.3596697,10.325121,13.1495495,3.8482914,-5.7710943,1.4556737,6.441745,-3.4734797,-6.248546,0.60525084,4.314266,7.541994,4.0500293,-6.0716014,-5.479143,3.474671,9.790659,9.542419,1.8726797,-3.748437,-8.334437,-14.574325,-10.115,-6.6834593,-16.153566,-16.967896,-9.508855,-13.004786,-16.368595,-6.6637444,-1.8327651,-13.749775,-17.044106,-4.1355143,-4.3721113,-8.8410225,2.5309167,3.3793,-6.185795,0.093034744,3.4121413,-8.551977,-9.602738,2.6063666,9.550766,13.672186,14.743091,2.2701492,-7.627325,-3.1368418,-3.6844897,-7.444881,-1.5435963,3.472231,4.2411704,1.4215097,-2.6918426,5.6644754,15.9196205,11.689109,2.7013505,-4.430661,-8.111073,-6.3060484,0.03008604,8.84882,5.5828886,-5.2739525,-1.3276502,5.4118896,4.055092,1.9313289,-4.4857244,-1.7480356,8.148924,-4.578228,-15.857324,null,-1.966301,-1.2434554,1.2924457,-10.765762,-12.596518,-5.144439,-3.9134398,-3.4664881,-7.489571,-9.330684,-2.3135042,-1.8517554,-3.0428798,3.6769865,7.5666604,3.4101439,-7.137735,-11.562262,-2.03732,2.6950512,-3.18615,-5.4891233,-2.442816,-0.77776194,-1.2961707,4.8420224,13.032924,6.4810143,-5.2821207,-10.296453,-10.651305,-0.34378147,5.451804,-10.463944,-18.846199,-0.79113054,12.485638,-1.4586222,-15.095754,-3.401825,5.8826427,-0.66497684,4.848258,13.166276,5.9028387,6.3044724,14.919662,11.128799,7.025467,11.252412,9.39136,5.245754,11.244799,15.0388775,7.525756,5.2734394,13.345786,12.196113,-4.4815784,-14.614844,-6.4364233,-0.10443497,-2.951511,-0.26226854,3.7747428,3.5124288,5.294141,3.9155977,-0.6731887,-1.1804068,-1.344449,-2.9253936,-0.9185121,7.602711,10.653695,-2.9276328,-11.240161,-4.350095,0.12189746,9.72187,19.511045,5.4116945,-8.228729,-1.005929,2.8466492,-1.9714348,-5.0238714,-6.917501,-2.8417563,4.784837,1.4448748,-6.8588343,0.1239835,12.217415,6.7666893,-2.3977308,-1.616734,-4.1949024,-4.9657965,3.5067081,null,-11.023006,-12.08142,2.4733222,5.795124,-5.3990436,-4.588299,2.189901,4.602721,1.5517936,-2.6104224,3.8580518,7.0728407,0.34513956,-1.6181076,-6.82841,-10.475734,-0.10008192,6.9365206,7.0736365,2.7263036,-3.8441243,6.1794014,14.390287,2.024064,-2.83349,0.2849388,-6.2200937,-12.772135,-11.630241,-2.9516177,3.7897754,3.4063098,3.9196157,-0.2550751,-0.82288265,12.178688,13.490274,8.941385,16.672497,12.117773,1.94837,6.148141,1.290025,-8.904884,-2.9579725,1.2445859,-2.8296523,0.35987163,5.6452103,4.033593,-1.7054925,-7.998058,-9.750845,-8.652448,-9.111614,-5.6666136,-4.1867175,-10.872673,-7.772914,4.782243,6.666462,1.5957584,0.10992384,4.801077,6.382329,-7.6292067,-11.723131,5.5543966,7.6125927,-0.020430088,3.5474887,-5.1542478,-16.16174,-3.8097973,4.535895,-2.5049968,0.8620398,9.670448,4.945405,-2.0768018,0.09790516,3.5557182,5.016597,1.940269,-5.5953703,-3.130241,3.1598947,-3.55356,-8.760538,-2.311669,2.94431,-1.54877,-11.966513,-10.159947,1.8791611,-0.93798196,-9.7401495,-8.462166,-4.7854385,2.8023,null,-8.877311,3.6732736,12.418631,6.243837,0.66870403,3.7786865,6.6454744,4.702606,-1.21451,-1.2679935,6.822624,9.396228,7.6160946,6.264193,-0.34986067,-2.8472886,4.744138,9.262926,7.353107,3.4985604,0.87406784,5.0887065,7.8641815,0.7245257,-0.15022945,7.4276333,2.6870341,-4.201458,2.5573964,6.497218,8.533826,14.029015,5.7027335,1.1798954,12.491464,1.2850084,-21.69704,-12.666592,5.167141,4.0451674,1.8669171,1.4684439,-4.534434,-0.42295933,12.890245,10.137847,-3.8664055,-6.785735,-4.1548223,-3.8029656,-1.0767758,-1.2520835,-5.6168118,-2.5027015,5.794631,3.0272644,-3.4443154,4.5607038,11.591286,8.727323,8.413635,-3.0142796,-15.174305,0.035333395,9.25296,0.7970512,7.7826,12.190887,1.0914876,0.33838654,6.139334,5.8940144,5.271342,8.472212,8.624536,-0.24438584,-2.6433892,1.1980228,-5.825673,-7.781049,2.5813513,9.170532,8.521068,-0.30197668,-1.7426093,4.7677155,-5.6305294,-4.665936,16.725311,10.2223625,-4.4961977,4.8069763,12.963854,14.169756,5.522669,-10.540035,-6.6339855,1.5629492,-0.32809532,6.512076,null,1.5653051,-9.780725,-8.013486,-5.2337666,3.574244,11.145844,0.4413767,-3.4935446,1.5216992,-4.9706793,-3.1630018,3.6339774,-2.4713836,-2.9247231,0.80305815,-0.787633,-2.218461,-7.8867292,-4.324585,9.358226,6.478758,-1.0483632,1.8889213,-1.7407427,-10.785351,-9.505851,-0.18243504,-0.86543775,-11.062838,-9.730313,-2.5960364,-0.2608819,2.400193,-2.3234162,-5.4007263,2.2749825,-1.569787,-10.201637,-5.394538,-1.521426,-4.742652,-9.714075,-9.959853,-2.4913793,-0.550634,-1.4684744,2.2429328,-0.71001554,-3.9430199,1.3712659,7.1021285,9.599282,3.0413218,-4.35578,2.3210554,5.5522227,0.58810854,5.788974,5.4093037,-8.640091,-4.273976,14.04723,9.048164,-4.5727124,4.3987284,12.095782,-2.1529856,-11.890768,-5.717836,-3.9011662,-9.928597,-6.442968,5.615243,7.262688,3.4825428,7.792837,6.076072,-5.2067995,-7.7765875,-2.5352526,2.01253,4.4368477,0.1463337,-3.1368432,4.640132,9.807932,3.0385342,-1.0749718,2.9562747,1.8343475,-6.532445,-6.736094,5.459779,10.768787,-0.19696093,-7.2216864,-0.0040209293,5.020188,2.0542393,3.3129718,null,-3.647406,-2.5515432,-5.1332865,-0.43038177,6.4881144,8.783218,1.7228243,-6.9971166,2.3569098,16.871841,12.209181,1.2199048,-2.4592419,-4.615846,-4.7157793,-2.1205792,2.2859263,6.8692217,2.5098348,-2.0721638,3.7931767,2.533966,-4.0339856,0.5567217,1.896471,-1.8672493,0.032503128,-5.398522,-9.481434,5.793472,18.219978,12.07848,0.35474253,-8.93713,-13.016298,-11.787576,-7.062338,3.5241456,10.119389,0.1362629,-9.429327,-2.8213763,2.5493262,0.004623413,-0.330122,-3.6016417,-5.9003754,-2.610968,-6.796817,-9.433025,-3.9298048,-6.3128686,-9.031832,-6.887754,-7.8759756,-3.849766,-2.2397337,-5.5435567,5.8796854,17.060238,10.872114,4.773679,2.550816,-3.984285,-10.313907,-11.759424,-11.0692005,-7.59587,2.7342443,3.5871449,-12.114401,-13.758051,0.57081294,1.4897647,-8.895881,-10.871462,1.6386809,6.940503,-8.591114,-11.670184,-1.3096819,-7.426762,-7.8100104,-0.4054246,-12.882792,-14.282445,9.9462185,14.645103,-7.0928245,-15.362835,1.2735934,9.610846,-5.425317,-13.75076,-5.2417703,-0.6183257,-0.089374065,1.2660255,-6.290414,-13.909898,null],"type":"scatter","name":"Re{S(t)}","hovertemplate":"(%{x:.4f} ms, %{y:.3f} a.u.)","x":[16.394000000000002,16.404000000000003,16.414,16.424000000000003,16.434,16.444000000000003,16.454,16.464000000000002,16.474,16.484,16.494000000000003,16.504,16.514000000000003,16.524,16.534000000000002,16.544,16.554000000000002,16.564000000000004,16.574,16.584000000000003,16.594,16.604000000000003,16.614,16.624000000000002,16.634,16.644000000000002,16.654000000000003,16.664,16.674000000000003,16.684,16.694000000000003,16.704,16.714000000000002,16.724,16.734,16.744000000000003,16.754,16.764000000000003,16.774,16.784000000000002,16.794,16.804000000000002,16.814000000000004,16.824,16.834000000000003,16.844,16.854000000000003,16.864,16.874000000000002,16.884,16.894000000000002,16.904000000000003,16.914,16.924000000000003,16.934,16.944000000000003,16.954,16.964000000000002,16.974,16.984,16.994000000000003,17.004,17.014000000000003,17.024,17.034000000000002,17.044,17.054000000000002,17.064000000000004,17.074,17.084000000000003,17.094,17.104000000000003,17.114,17.124000000000002,17.134,17.144000000000002,17.154000000000003,17.164,17.174000000000003,17.184,17.194000000000003,17.204,17.214000000000002,17.224,17.234,17.244000000000003,17.254,17.264000000000003,17.274,17.284000000000002,17.294,17.304000000000002,17.314000000000004,17.324,17.334000000000003,17.344,17.354000000000003,17.364,17.374000000000002,17.384,17.384,18.074,18.084000000000003,18.094,18.104000000000003,18.114,18.124000000000002,18.134,18.144000000000002,18.154,18.164,18.174000000000003,18.184,18.194000000000003,18.204,18.214000000000002,18.224,18.234,18.244000000000003,18.254,18.264000000000003,18.274,18.284000000000002,18.294,18.304000000000002,18.314,18.324,18.334000000000003,18.344,18.354000000000003,18.364,18.374000000000002,18.384,18.394000000000002,18.404,18.414,18.424000000000003,18.434,18.444000000000003,18.454,18.464000000000002,18.474,18.484,18.494000000000003,18.504,18.514000000000003,18.524,18.534000000000002,18.544,18.554000000000002,18.564,18.574,18.584000000000003,18.594,18.604000000000003,18.614,18.624000000000002,18.634,18.644000000000002,18.654,18.664,18.674000000000003,18.684,18.694000000000003,18.704,18.714000000000002,18.724,18.734,18.744000000000003,18.754,18.764000000000003,18.774,18.784000000000002,18.794,18.804000000000002,18.814,18.824,18.834000000000003,18.844,18.854000000000003,18.864,18.874000000000002,18.884,18.894000000000002,18.904,18.914,18.924000000000003,18.934,18.944000000000003,18.954,18.964000000000002,18.974,18.984,18.994000000000003,19.004,19.014000000000003,19.024,19.034000000000002,19.044,19.054000000000002,19.064,19.064,19.754,19.764000000000003,19.774,19.784000000000002,19.794,19.804000000000002,19.814,19.824,19.834,19.844,19.854000000000003,19.864,19.874000000000002,19.884,19.894000000000002,19.904,19.914,19.924000000000003,19.934,19.944000000000003,19.954,19.964000000000002,19.974,19.984,19.994,20.004,20.014000000000003,20.024,20.034000000000002,20.044,20.054000000000002,20.064,20.074,20.084,20.094,20.104000000000003,20.114,20.124000000000002,20.134,20.144000000000002,20.154,20.164,20.174000000000003,20.184,20.194000000000003,20.204,20.214000000000002,20.224,20.234,20.244,20.254,20.264000000000003,20.274,20.284000000000002,20.294,20.304000000000002,20.314,20.324,20.334,20.344,20.354000000000003,20.364,20.374000000000002,20.384,20.394000000000002,20.404,20.414,20.424000000000003,20.434,20.444000000000003,20.454,20.464000000000002,20.474,20.484,20.494,20.504,20.514000000000003,20.524,20.534000000000002,20.544,20.554000000000002,20.564,20.574,20.584,20.594,20.604000000000003,20.614,20.624000000000002,20.634,20.644000000000002,20.654,20.664,20.674000000000003,20.684,20.694000000000003,20.704,20.714000000000002,20.724,20.734,20.744,20.744,21.434,21.444000000000003,21.454,21.464000000000002,21.474,21.484,21.494,21.504,21.514,21.524,21.534000000000002,21.544,21.554000000000002,21.564,21.574,21.584,21.594,21.604000000000003,21.614,21.624000000000002,21.634,21.644000000000002,21.654,21.664,21.674,21.684,21.694000000000003,21.704,21.714000000000002,21.724,21.734,21.744,21.754,21.764,21.774,21.784000000000002,21.794,21.804000000000002,21.814,21.824,21.834,21.844,21.854000000000003,21.864,21.874000000000002,21.884,21.894000000000002,21.904,21.914,21.924,21.934,21.944000000000003,21.954,21.964000000000002,21.974,21.984,21.994,22.004,22.014,22.024,22.034000000000002,22.044,22.054000000000002,22.064,22.074,22.084,22.094,22.104000000000003,22.114,22.124000000000002,22.134,22.144000000000002,22.154,22.164,22.174,22.184,22.194000000000003,22.204,22.214000000000002,22.224,22.234,22.244,22.254,22.264,22.274,22.284000000000002,22.294,22.304000000000002,22.314,22.324,22.334,22.344,22.354000000000003,22.364,22.374000000000002,22.384,22.394000000000002,22.404,22.414,22.424,22.424,23.114,23.124000000000002,23.134,23.144000000000002,23.154,23.164,23.174,23.184,23.194,23.204,23.214000000000002,23.224,23.234,23.244,23.254,23.264,23.274,23.284000000000002,23.294,23.304000000000002,23.314,23.324,23.334,23.344,23.354,23.364,23.374000000000002,23.384,23.394000000000002,23.404,23.414,23.424,23.434,23.444,23.454,23.464000000000002,23.474,23.484,23.494,23.504,23.514,23.524,23.534000000000002,23.544,23.554000000000002,23.564,23.574,23.584,23.594,23.604,23.614,23.624000000000002,23.634,23.644000000000002,23.654,23.664,23.674,23.684,23.694,23.704,23.714000000000002,23.724,23.734,23.744,23.754,23.764,23.774,23.784000000000002,23.794,23.804000000000002,23.814,23.824,23.834,23.844,23.854,23.864,23.874000000000002,23.884,23.894000000000002,23.904,23.914,23.924,23.934,23.944,23.954,23.964000000000002,23.974,23.984,23.994,24.004,24.014,24.024,24.034000000000002,24.044,24.054000000000002,24.064,24.074,24.084,24.094,24.104,24.104,24.794,24.804000000000002,24.814,24.824,24.834,24.844,24.854,24.864,24.874,24.884,24.894000000000002,24.904,24.914,24.924,24.934,24.944,24.954,24.964000000000002,24.974,24.984,24.994,25.004,25.014,25.024,25.034,25.044,25.054000000000002,25.064,25.074,25.084,25.094,25.104,25.114,25.124,25.134,25.144000000000002,25.154,25.164,25.174,25.184,25.194,25.204,25.214000000000002,25.224,25.234,25.244,25.254,25.264,25.274,25.284,25.294,25.304000000000002,25.314,25.324,25.334,25.344,25.354,25.364,25.374,25.384,25.394000000000002,25.404,25.414,25.424,25.434,25.444,25.454,25.464000000000002,25.474,25.484,25.494,25.504,25.514,25.524,25.534,25.544,25.554000000000002,25.564,25.574,25.584,25.594,25.604,25.614,25.624,25.634,25.644000000000002,25.654,25.664,25.674,25.684,25.694,25.704,25.714000000000002,25.724,25.734,25.744,25.754,25.764,25.774,25.784,25.784,26.474,26.484,26.494,26.504,26.514,26.524,26.534,26.544,26.554,26.564,26.574,26.584,26.594,26.604,26.614,26.624,26.634,26.644000000000002,26.654,26.664,26.674,26.684,26.694,26.704,26.714,26.724,26.734,26.744,26.754,26.764,26.774,26.784,26.794,26.804,26.814,26.824,26.834,26.844,26.854,26.864,26.874,26.884,26.894000000000002,26.904,26.914,26.924,26.934,26.944,26.954,26.964,26.974,26.984,26.994,27.004,27.014,27.024,27.034,27.044,27.054,27.064,27.074,27.084,27.094,27.104,27.114,27.124,27.134,27.144000000000002,27.154,27.164,27.174,27.184,27.194,27.204,27.214,27.224,27.234,27.244,27.254,27.264,27.274,27.284,27.294,27.304,27.314,27.324,27.334,27.344,27.354,27.364,27.374,27.384,27.394000000000002,27.404,27.414,27.424,27.434,27.444,27.454,27.464,27.464,28.154,28.164,28.174,28.184,28.194,28.204,28.214,28.224,28.233999999999998,28.244,28.254,28.264,28.274,28.284,28.294,28.304,28.314,28.324,28.334,28.344,28.354,28.364,28.374,28.384,28.394,28.404,28.414,28.424,28.434,28.444,28.454,28.464,28.474,28.483999999999998,28.494,28.504,28.514,28.524,28.534,28.544,28.554,28.564,28.574,28.584,28.594,28.604,28.614,28.624,28.634,28.644,28.654,28.664,28.674,28.684,28.694,28.704,28.714,28.724,28.733999999999998,28.744,28.754,28.764,28.774,28.784,28.794,28.804,28.814,28.824,28.834,28.844,28.854,28.864,28.874,28.884,28.894,28.904,28.914,28.924,28.934,28.944,28.954,28.964,28.974,28.983999999999998,28.994,29.004,29.014,29.024,29.034,29.044,29.054,29.064,29.074,29.084,29.094,29.104,29.114,29.124,29.134,29.144,29.144,29.834,29.844,29.854,29.864,29.874,29.884,29.894,29.904,29.913999999999998,29.924,29.934,29.944,29.954,29.964,29.974,29.983999999999998,29.994,30.004,30.014,30.024,30.034,30.044,30.054,30.064,30.073999999999998,30.084,30.094,30.104,30.114,30.124,30.134,30.144,30.154,30.163999999999998,30.174,30.184,30.194,30.204,30.214,30.224,30.233999999999998,30.244,30.254,30.264,30.274,30.284,30.294,30.304,30.314,30.323999999999998,30.334,30.344,30.354,30.364,30.374,30.384,30.394,30.404,30.413999999999998,30.424,30.434,30.444,30.454,30.464,30.474,30.483999999999998,30.494,30.504,30.514,30.524,30.534,30.544,30.554,30.564,30.573999999999998,30.584,30.594,30.604,30.614,30.624,30.634,30.644,30.654,30.663999999999998,30.674,30.684,30.694,30.704,30.714,30.724,30.733999999999998,30.744,30.754,30.764,30.774,30.784,30.794,30.804,30.814,30.823999999999998,30.823999999999998,31.514,31.524,31.534,31.544,31.554,31.564,31.573999999999998,31.584,31.593999999999998,31.604,31.614,31.624,31.634,31.644,31.654,31.663999999999998,31.674,31.684,31.694,31.704,31.714,31.724,31.733999999999998,31.744,31.753999999999998,31.764,31.774,31.784,31.794,31.804,31.814,31.823999999999998,31.834,31.843999999999998,31.854,31.864,31.874,31.884,31.894,31.904,31.913999999999998,31.924,31.934,31.944,31.954,31.964,31.974,31.983999999999998,31.994,32.004,32.013999999999996,32.024,32.034,32.044,32.054,32.064,32.074,32.083999999999996,32.094,32.104,32.114,32.124,32.134,32.144,32.153999999999996,32.164,32.174,32.184,32.194,32.204,32.214,32.224,32.234,32.244,32.254,32.263999999999996,32.274,32.284,32.294,32.304,32.314,32.324,32.333999999999996,32.344,32.354,32.364,32.374,32.384,32.394,32.403999999999996,32.414,32.424,32.434,32.444,32.454,32.464,32.474,32.484,32.494,32.504,32.504,33.194,33.204,33.214000000000006,33.224000000000004,33.234,33.244,33.254000000000005,33.264,33.274,33.284000000000006,33.294000000000004,33.304,33.314,33.324000000000005,33.334,33.344,33.354,33.364000000000004,33.374,33.384,33.394000000000005,33.404,33.414,33.424,33.434000000000005,33.444,33.454,33.464000000000006,33.474000000000004,33.484,33.494,33.504000000000005,33.514,33.524,33.534000000000006,33.544000000000004,33.554,33.564,33.574000000000005,33.584,33.594,33.604,33.614000000000004,33.624,33.634,33.644000000000005,33.654,33.664,33.674,33.684000000000005,33.694,33.704,33.714000000000006,33.724000000000004,33.734,33.744,33.754000000000005,33.764,33.774,33.784000000000006,33.794000000000004,33.804,33.814,33.824000000000005,33.834,33.844,33.854,33.864000000000004,33.874,33.884,33.894000000000005,33.904,33.914,33.924,33.934000000000005,33.944,33.954,33.964000000000006,33.974000000000004,33.984,33.994,34.004000000000005,34.014,34.024,34.034000000000006,34.044000000000004,34.054,34.064,34.074000000000005,34.084,34.094,34.104,34.114000000000004,34.124,34.134,34.144000000000005,34.154,34.164,34.174,34.184000000000005,34.184000000000005,34.874,34.884,34.894000000000005,34.904,34.914,34.924,34.934000000000005,34.944,34.954,34.964000000000006,34.974000000000004,34.984,34.994,35.004000000000005,35.014,35.024,35.034,35.044000000000004,35.054,35.064,35.074000000000005,35.084,35.094,35.104,35.114000000000004,35.124,35.134,35.144000000000005,35.154,35.164,35.174,35.184000000000005,35.194,35.204,35.214000000000006,35.224000000000004,35.234,35.244,35.254000000000005,35.264,35.274,35.284,35.294000000000004,35.304,35.314,35.324000000000005,35.334,35.344,35.354,35.364000000000004,35.374,35.384,35.394000000000005,35.404,35.414,35.424,35.434000000000005,35.444,35.454,35.464000000000006,35.474000000000004,35.484,35.494,35.504000000000005,35.514,35.524,35.534,35.544000000000004,35.554,35.564,35.574000000000005,35.584,35.594,35.604,35.614000000000004,35.624,35.634,35.644000000000005,35.654,35.664,35.674,35.684000000000005,35.694,35.704,35.714000000000006,35.724000000000004,35.734,35.744,35.754000000000005,35.764,35.774,35.784,35.794000000000004,35.804,35.814,35.824000000000005,35.834,35.844,35.854,35.864000000000004,35.864000000000004,36.554,36.564,36.574000000000005,36.584,36.594,36.604,36.614000000000004,36.624,36.634,36.644000000000005,36.654,36.664,36.674,36.684000000000005,36.694,36.704,36.714,36.724000000000004,36.734,36.744,36.754000000000005,36.764,36.774,36.784,36.794000000000004,36.804,36.814,36.824000000000005,36.834,36.844,36.854,36.864000000000004,36.874,36.884,36.894000000000005,36.904,36.914,36.924,36.934000000000005,36.944,36.954,36.964,36.974000000000004,36.984,36.994,37.004000000000005,37.014,37.024,37.034,37.044000000000004,37.054,37.064,37.074000000000005,37.084,37.094,37.104,37.114000000000004,37.124,37.134,37.144000000000005,37.154,37.164,37.174,37.184000000000005,37.194,37.204,37.214,37.224000000000004,37.234,37.244,37.254000000000005,37.264,37.274,37.284,37.294000000000004,37.304,37.314,37.324000000000005,37.334,37.344,37.354,37.364000000000004,37.374,37.384,37.394000000000005,37.404,37.414,37.424,37.434000000000005,37.444,37.454,37.464,37.474000000000004,37.484,37.494,37.504000000000005,37.514,37.524,37.534,37.544000000000004,37.544000000000004,38.234,38.244,38.254000000000005,38.264,38.274,38.284,38.294000000000004,38.304,38.314,38.324000000000005,38.334,38.344,38.354,38.364000000000004,38.374,38.384,38.394,38.404,38.414,38.424,38.434000000000005,38.444,38.454,38.464,38.474000000000004,38.484,38.494,38.504000000000005,38.514,38.524,38.534,38.544000000000004,38.554,38.564,38.574000000000005,38.584,38.594,38.604,38.614000000000004,38.624,38.634,38.644,38.654,38.664,38.674,38.684000000000005,38.694,38.704,38.714,38.724000000000004,38.734,38.744,38.754000000000005,38.764,38.774,38.784,38.794000000000004,38.804,38.814,38.824000000000005,38.834,38.844,38.854,38.864000000000004,38.874,38.884,38.894,38.904,38.914,38.924,38.934000000000005,38.944,38.954,38.964,38.974000000000004,38.984,38.994,39.004000000000005,39.014,39.024,39.034,39.044000000000004,39.054,39.064,39.074000000000005,39.084,39.094,39.104,39.114000000000004,39.124,39.134,39.144,39.154,39.164,39.174,39.184000000000005,39.194,39.204,39.214,39.224000000000004,39.224000000000004,39.914,39.924,39.934000000000005,39.944,39.954,39.964,39.974000000000004,39.984,39.994,40.004000000000005,40.014,40.024,40.034,40.044000000000004,40.054,40.064,40.074,40.084,40.094,40.104,40.114000000000004,40.124,40.134,40.144,40.154,40.164,40.174,40.184000000000005,40.194,40.204,40.214,40.224000000000004,40.234,40.244,40.254000000000005,40.264,40.274,40.284,40.294000000000004,40.304,40.314,40.324,40.334,40.344,40.354,40.364000000000004,40.374,40.384,40.394,40.404,40.414,40.424,40.434000000000005,40.444,40.454,40.464,40.474000000000004,40.484,40.494,40.504000000000005,40.514,40.524,40.534,40.544000000000004,40.554,40.564,40.574,40.584,40.594,40.604,40.614000000000004,40.624,40.634,40.644,40.654,40.664,40.674,40.684000000000005,40.694,40.704,40.714,40.724000000000004,40.734,40.744,40.754000000000005,40.764,40.774,40.784,40.794000000000004,40.804,40.814,40.824,40.834,40.844,40.854,40.864000000000004,40.874,40.884,40.894,40.904,40.904,41.594,41.604,41.614000000000004,41.624,41.634,41.644,41.654,41.664,41.674,41.684000000000005,41.694,41.704,41.714,41.724000000000004,41.734,41.744,41.754,41.764,41.774,41.784,41.794000000000004,41.804,41.814,41.824,41.834,41.844,41.854,41.864000000000004,41.874,41.884,41.894,41.904,41.914,41.924,41.934000000000005,41.944,41.954,41.964,41.974000000000004,41.984,41.994,42.004,42.014,42.024,42.034,42.044000000000004,42.054,42.064,42.074,42.084,42.094,42.104,42.114000000000004,42.124,42.134,42.144,42.154,42.164,42.174,42.184000000000005,42.194,42.204,42.214,42.224000000000004,42.234,42.244,42.254,42.264,42.274,42.284,42.294000000000004,42.304,42.314,42.324,42.334,42.344,42.354,42.364000000000004,42.374,42.384,42.394,42.404,42.414,42.424,42.434000000000005,42.444,42.454,42.464,42.474000000000004,42.484,42.494,42.504,42.514,42.524,42.534,42.544000000000004,42.554,42.564,42.574,42.584,42.584,43.274,43.284,43.294000000000004,43.304,43.314,43.324,43.334,43.344,43.354,43.364000000000004,43.374,43.384,43.394,43.404,43.414,43.424,43.434,43.444,43.454,43.464,43.474000000000004,43.484,43.494,43.504,43.514,43.524,43.534,43.544000000000004,43.554,43.564,43.574,43.584,43.594,43.604,43.614000000000004,43.624,43.634,43.644,43.654,43.664,43.674,43.684,43.694,43.704,43.714,43.724000000000004,43.734,43.744,43.754,43.764,43.774,43.784,43.794000000000004,43.804,43.814,43.824,43.834,43.844,43.854,43.864000000000004,43.874,43.884,43.894,43.904,43.914,43.924,43.934,43.944,43.954,43.964,43.974000000000004,43.984,43.994,44.004,44.014,44.024,44.034,44.044000000000004,44.054,44.064,44.074,44.084,44.094,44.104,44.114000000000004,44.124,44.134,44.144,44.154,44.164,44.174,44.184,44.194,44.204,44.214,44.224000000000004,44.234,44.244,44.254,44.264,44.264,44.954,44.964,44.974000000000004,44.984,44.994,45.004,45.014,45.024,45.034,45.044000000000004,45.054,45.064,45.074,45.084,45.094,45.104,45.114,45.124,45.134,45.144,45.154,45.164,45.174,45.184,45.194,45.204,45.214,45.224000000000004,45.234,45.244,45.254,45.264,45.274,45.284,45.294000000000004,45.304,45.314,45.324,45.334,45.344,45.354,45.364,45.374,45.384,45.394,45.404,45.414,45.424,45.434,45.444,45.454,45.464,45.474000000000004,45.484,45.494,45.504,45.514,45.524,45.534,45.544000000000004,45.554,45.564,45.574,45.584,45.594,45.604,45.614,45.624,45.634,45.644,45.654,45.664,45.674,45.684,45.694,45.704,45.714,45.724000000000004,45.734,45.744,45.754,45.764,45.774,45.784,45.794000000000004,45.804,45.814,45.824,45.834,45.844,45.854,45.864,45.874,45.884,45.894,45.904,45.914,45.924,45.934,45.944,45.944,46.634,46.644,46.654,46.664,46.674,46.684,46.694,46.704,46.714,46.724000000000004,46.734,46.744,46.754,46.764,46.774,46.784,46.794,46.804,46.814,46.824,46.834,46.844,46.854,46.864,46.874,46.884,46.894,46.904,46.914,46.924,46.934,46.944,46.954,46.964,46.974000000000004,46.984,46.994,47.004,47.014,47.024,47.034,47.044,47.054,47.064,47.074,47.084,47.094,47.104,47.114,47.124,47.134,47.144,47.154,47.164,47.174,47.184,47.194,47.204,47.214,47.224000000000004,47.234,47.244,47.254,47.264,47.274,47.284,47.294,47.304,47.314,47.324,47.334,47.344,47.354,47.364,47.374,47.384,47.394,47.404,47.414,47.424,47.434,47.444,47.454,47.464,47.474000000000004,47.484,47.494,47.504,47.514,47.524,47.534,47.544,47.554,47.564,47.574,47.584,47.594,47.604,47.614,47.624,47.624,48.314,48.324,48.334,48.344,48.354,48.364,48.374,48.384,48.394,48.404,48.414,48.424,48.434,48.444,48.454,48.464,48.474,48.484,48.494,48.504,48.514,48.524,48.534,48.544,48.554,48.564,48.574,48.584,48.594,48.604,48.614,48.624,48.634,48.644,48.654,48.664,48.674,48.684,48.694,48.704,48.714,48.724,48.734,48.744,48.754,48.764,48.774,48.784,48.794,48.804,48.814,48.824,48.834,48.844,48.854,48.864,48.874,48.884,48.894,48.904,48.914,48.924,48.934,48.944,48.954,48.964,48.974,48.984,48.994,49.004,49.014,49.024,49.034,49.044,49.054,49.064,49.074,49.084,49.094,49.104,49.114,49.124,49.134,49.144,49.154,49.164,49.174,49.184,49.194,49.204,49.214,49.224,49.234,49.244,49.254,49.264,49.274,49.284,49.294,49.304,49.304,49.994,50.004,50.014,50.024,50.034,50.044,50.054,50.064,50.074,50.084,50.094,50.104,50.114,50.124,50.134,50.144,50.153999999999996,50.164,50.174,50.184,50.194,50.204,50.214,50.224,50.234,50.244,50.254,50.264,50.274,50.284,50.294,50.304,50.314,50.324,50.334,50.344,50.354,50.364,50.374,50.384,50.394,50.403999999999996,50.414,50.424,50.434,50.444,50.454,50.464,50.474,50.484,50.494,50.504,50.514,50.524,50.534,50.544,50.554,50.564,50.574,50.584,50.594,50.604,50.614,50.624,50.634,50.644,50.653999999999996,50.664,50.674,50.684,50.694,50.704,50.714,50.724,50.734,50.744,50.754,50.764,50.774,50.784,50.794,50.804,50.814,50.824,50.834,50.844,50.854,50.864,50.874,50.884,50.894,50.903999999999996,50.914,50.924,50.934,50.944,50.954,50.964,50.974,50.984,50.984,51.674,51.684,51.694,51.704,51.714,51.724,51.734,51.744,51.754,51.764,51.774,51.784,51.794,51.804,51.814,51.824,51.833999999999996,51.844,51.854,51.864,51.874,51.884,51.894,51.903999999999996,51.914,51.924,51.934,51.944,51.954,51.964,51.974,51.984,51.994,52.004,52.014,52.024,52.034,52.044,52.054,52.064,52.074,52.083999999999996,52.094,52.104,52.114,52.124,52.134,52.144,52.153999999999996,52.164,52.174,52.184,52.194,52.204,52.214,52.224,52.234,52.244,52.254,52.264,52.274,52.284,52.294,52.304,52.314,52.324,52.333999999999996,52.344,52.354,52.364,52.374,52.384,52.394,52.403999999999996,52.414,52.424,52.434,52.444,52.454,52.464,52.474,52.484,52.494,52.504,52.514,52.524,52.534,52.544,52.554,52.564,52.574,52.583999999999996,52.594,52.604,52.614,52.624,52.634,52.644,52.653999999999996,52.664,52.664,53.354,53.364,53.374,53.384,53.394,53.403999999999996,53.414,53.424,53.434,53.444,53.454,53.464,53.474,53.484,53.494,53.504,53.513999999999996,53.524,53.534,53.544,53.554,53.564,53.574,53.583999999999996,53.594,53.604,53.614,53.624,53.634,53.644,53.653999999999996,53.664,53.674,53.684,53.694,53.704,53.714,53.724,53.734,53.744,53.754,53.763999999999996,53.774,53.784,53.794,53.804,53.814,53.824,53.833999999999996,53.844,53.854,53.864,53.874,53.884,53.894,53.903999999999996,53.914,53.924,53.934,53.944,53.954,53.964,53.974,53.984,53.994,54.004,54.013999999999996,54.024,54.034,54.044,54.054,54.064,54.074,54.083999999999996,54.094,54.104,54.114,54.124,54.134,54.144,54.153999999999996,54.164,54.174,54.184,54.194,54.204,54.214,54.224,54.234,54.244,54.254,54.263999999999996,54.274,54.284,54.294,54.304,54.314,54.324,54.333999999999996,54.344,54.344,55.034,55.044,55.054,55.064,55.074,55.083999999999996,55.094,55.104,55.114,55.124,55.134,55.144,55.153999999999996,55.164,55.174,55.184,55.193999999999996,55.204,55.214,55.224,55.234,55.244,55.254,55.263999999999996,55.274,55.284,55.294,55.304,55.314,55.324,55.333999999999996,55.344,55.354,55.364,55.374,55.384,55.394,55.403999999999996,55.414,55.424,55.434,55.443999999999996,55.454,55.464,55.474,55.484,55.494,55.504,55.513999999999996,55.524,55.534,55.544,55.554,55.564,55.574,55.583999999999996,55.594,55.604,55.614,55.624,55.634,55.644,55.653999999999996,55.664,55.674,55.684,55.693999999999996,55.704,55.714,55.724,55.734,55.744,55.754,55.763999999999996,55.774,55.784,55.794,55.804,55.814,55.824,55.833999999999996,55.844,55.854,55.864,55.874,55.884,55.894,55.903999999999996,55.914,55.924,55.934,55.943999999999996,55.954,55.964,55.974,55.984,55.994,56.004,56.013999999999996,56.024,56.024,56.714,56.724,56.734,56.744,56.754,56.763999999999996,56.774,56.784,56.794,56.804,56.814,56.824,56.833999999999996,56.844,56.854,56.864,56.873999999999995,56.884,56.894,56.903999999999996,56.914,56.924,56.934,56.943999999999996,56.954,56.964,56.974,56.984,56.994,57.004,57.013999999999996,57.024,57.034,57.044,57.054,57.064,57.074,57.083999999999996,57.094,57.104,57.114,57.123999999999995,57.134,57.144,57.153999999999996,57.164,57.174,57.184,57.193999999999996,57.204,57.214,57.224,57.234,57.244,57.254,57.263999999999996,57.274,57.284,57.294,57.304,57.314,57.324,57.333999999999996,57.344,57.354,57.364,57.373999999999995,57.384,57.394,57.403999999999996,57.414,57.424,57.434,57.443999999999996,57.454,57.464,57.474,57.484,57.494,57.504,57.513999999999996,57.524,57.534,57.544,57.554,57.564,57.574,57.583999999999996,57.594,57.604,57.614,57.623999999999995,57.634,57.644,57.653999999999996,57.664,57.674,57.684,57.693999999999996,57.704,57.704,58.394,58.403999999999996,58.414,58.424,58.434,58.443999999999996,58.454,58.464,58.474,58.484,58.494,58.504,58.513999999999996,58.524,58.534,58.544,58.553999999999995,58.564,58.574,58.583999999999996,58.594,58.604,58.614,58.623999999999995,58.634,58.644,58.653999999999996,58.664,58.674,58.684,58.693999999999996,58.704,58.714,58.724,58.734,58.744,58.754,58.763999999999996,58.774,58.784,58.794,58.803999999999995,58.814,58.824,58.833999999999996,58.844,58.854,58.864,58.873999999999995,58.884,58.894,58.903999999999996,58.914,58.924,58.934,58.943999999999996,58.954,58.964,58.974,58.984,58.994,59.004,59.013999999999996,59.024,59.034,59.044,59.053999999999995,59.064,59.074,59.083999999999996,59.094,59.104,59.114,59.123999999999995,59.134,59.144,59.153999999999996,59.164,59.174,59.184,59.193999999999996,59.204,59.214,59.224,59.234,59.244,59.254,59.263999999999996,59.274,59.284,59.294,59.303999999999995,59.314,59.324,59.333999999999996,59.344,59.354,59.364,59.373999999999995,59.384,59.384,60.074,60.083999999999996,60.094,60.104,60.114,60.123999999999995,60.134,60.144,60.153999999999996,60.164,60.174,60.184,60.193999999999996,60.204,60.214,60.224,60.233999999999995,60.244,60.254,60.263999999999996,60.274,60.284,60.294,60.303999999999995,60.314,60.324,60.333999999999996,60.344,60.354,60.364,60.373999999999995,60.384,60.394,60.403999999999996,60.414,60.424,60.434,60.443999999999996,60.454,60.464,60.474,60.483999999999995,60.494,60.504,60.513999999999996,60.524,60.534,60.544,60.553999999999995,60.564,60.574,60.583999999999996,60.594,60.604,60.614,60.623999999999995,60.634,60.644,60.653999999999996,60.664,60.674,60.684,60.693999999999996,60.704,60.714,60.724,60.733999999999995,60.744,60.754,60.763999999999996,60.774,60.784,60.794,60.803999999999995,60.814,60.824,60.833999999999996,60.844,60.854,60.864,60.873999999999995,60.884,60.894,60.903999999999996,60.914,60.924,60.934,60.943999999999996,60.954,60.964,60.974,60.983999999999995,60.994,61.004,61.013999999999996,61.024,61.034,61.044,61.053999999999995,61.064,61.064,61.754,61.763999999999996,61.774,61.784,61.794,61.803999999999995,61.814,61.824,61.833999999999996,61.844,61.854,61.864,61.873999999999995,61.884,61.894,61.903999999999996,61.913999999999994,61.924,61.934,61.943999999999996,61.954,61.964,61.974,61.983999999999995,61.994,62.004,62.013999999999996,62.024,62.034,62.044,62.053999999999995,62.064,62.074,62.083999999999996,62.094,62.104,62.114,62.123999999999995,62.134,62.144,62.153999999999996,62.163999999999994,62.174,62.184,62.193999999999996,62.204,62.214,62.224,62.233999999999995,62.244,62.254,62.263999999999996,62.274,62.284,62.294,62.303999999999995,62.314,62.324,62.333999999999996,62.344,62.354,62.364,62.373999999999995,62.384,62.394,62.403999999999996,62.413999999999994,62.424,62.434,62.443999999999996,62.454,62.464,62.474,62.483999999999995,62.494,62.504,62.513999999999996,62.524,62.534,62.544,62.553999999999995,62.564,62.574,62.583999999999996,62.594,62.604,62.614,62.623999999999995,62.634,62.644,62.653999999999996,62.663999999999994,62.674,62.684,62.693999999999996,62.704,62.714,62.724,62.733999999999995,62.744,62.744,63.434000000000005,63.444,63.45400000000001,63.464000000000006,63.474000000000004,63.484,63.49400000000001,63.504000000000005,63.514,63.52400000000001,63.534000000000006,63.544000000000004,63.554,63.56400000000001,63.574000000000005,63.584,63.594,63.604000000000006,63.614000000000004,63.624,63.63400000000001,63.644000000000005,63.654,63.664,63.67400000000001,63.684000000000005,63.694,63.70400000000001,63.714000000000006,63.724000000000004,63.734,63.74400000000001,63.754000000000005,63.764,63.77400000000001,63.784000000000006,63.794000000000004,63.804,63.81400000000001,63.824000000000005,63.834,63.844,63.854000000000006,63.864000000000004,63.874,63.88400000000001,63.894000000000005,63.904,63.914,63.92400000000001,63.934000000000005,63.944,63.95400000000001,63.964000000000006,63.974000000000004,63.984,63.99400000000001,64.004,64.01400000000001,64.024,64.034,64.04400000000001,64.054,64.06400000000001,64.074,64.084,64.09400000000001,64.104,64.114,64.12400000000001,64.134,64.144,64.15400000000001,64.164,64.174,64.184,64.194,64.20400000000001,64.214,64.224,64.23400000000001,64.244,64.254,64.26400000000001,64.274,64.284,64.29400000000001,64.304,64.31400000000001,64.324,64.334,64.34400000000001,64.354,64.364,64.37400000000001,64.384,64.394,64.40400000000001,64.414,64.424,64.424,65.114,65.12400000000001,65.134,65.144,65.15400000000001,65.164,65.174,65.184,65.194,65.20400000000001,65.214,65.224,65.23400000000001,65.244,65.254,65.26400000000001,65.274,65.284,65.29400000000001,65.304,65.31400000000001,65.324,65.334,65.34400000000001,65.354,65.364,65.37400000000001,65.384,65.394,65.40400000000001,65.414,65.424,65.434,65.444,65.45400000000001,65.464,65.474,65.48400000000001,65.494,65.504,65.51400000000001,65.524,65.534,65.54400000000001,65.554,65.56400000000001,65.574,65.584,65.59400000000001,65.604,65.614,65.62400000000001,65.634,65.644,65.65400000000001,65.664,65.674,65.684,65.694,65.70400000000001,65.714,65.724,65.73400000000001,65.744,65.754,65.76400000000001,65.774,65.784,65.79400000000001,65.804,65.81400000000001,65.824,65.834,65.84400000000001,65.854,65.864,65.87400000000001,65.884,65.894,65.90400000000001,65.914,65.924,65.934,65.944,65.95400000000001,65.964,65.974,65.98400000000001,65.994,66.004,66.01400000000001,66.024,66.034,66.04400000000001,66.054,66.06400000000001,66.074,66.084,66.09400000000001,66.104,66.104,66.794,66.804,66.814,66.824,66.834,66.844,66.854,66.86399999999999,66.874,66.884,66.89399999999999,66.904,66.914,66.92399999999999,66.934,66.944,66.954,66.964,66.974,66.984,66.994,67.00399999999999,67.014,67.024,67.03399999999999,67.044,67.054,67.064,67.074,67.084,67.094,67.104,67.11399999999999,67.124,67.134,67.14399999999999,67.154,67.164,67.17399999999999,67.184,67.194,67.204,67.214,67.224,67.234,67.244,67.25399999999999,67.264,67.274,67.28399999999999,67.294,67.304,67.314,67.324,67.334,67.344,67.354,67.36399999999999,67.374,67.384,67.39399999999999,67.404,67.414,67.42399999999999,67.434,67.444,67.454,67.464,67.474,67.484,67.494,67.50399999999999,67.514,67.524,67.53399999999999,67.544,67.554,67.564,67.574,67.584,67.594,67.604,67.61399999999999,67.624,67.634,67.64399999999999,67.654,67.664,67.67399999999999,67.684,67.694,67.704,67.714,67.724,67.734,67.744,67.75399999999999,67.764,67.774,67.78399999999999,67.78399999999999,68.474,68.48400000000001,68.494,68.504,68.51400000000001,68.524,68.534,68.544,68.554,68.56400000000001,68.574,68.584,68.59400000000001,68.604,68.614,68.62400000000001,68.634,68.644,68.65400000000001,68.664,68.674,68.684,68.694,68.70400000000001,68.714,68.724,68.73400000000001,68.744,68.754,68.76400000000001,68.774,68.784,68.794,68.804,68.81400000000001,68.824,68.834,68.84400000000001,68.854,68.864,68.87400000000001,68.884,68.894,68.90400000000001,68.914,68.924,68.934,68.944,68.95400000000001,68.964,68.974,68.98400000000001,68.994,69.004,69.01400000000001,69.024,69.034,69.044,69.054,69.06400000000001,69.074,69.084,69.09400000000001,69.104,69.114,69.12400000000001,69.134,69.144,69.15400000000001,69.164,69.174,69.184,69.194,69.20400000000001,69.214,69.224,69.23400000000001,69.244,69.254,69.26400000000001,69.274,69.284,69.294,69.304,69.31400000000001,69.324,69.334,69.34400000000001,69.354,69.364,69.37400000000001,69.384,69.394,69.40400000000001,69.414,69.424,69.434,69.444,69.45400000000001,69.464,69.464,70.154,70.164,70.17399999999999,70.184,70.194,70.204,70.214,70.22399999999999,70.234,70.244,70.25399999999999,70.264,70.274,70.28399999999999,70.294,70.304,70.314,70.324,70.334,70.344,70.354,70.36399999999999,70.374,70.384,70.39399999999999,70.404,70.414,70.42399999999999,70.434,70.444,70.454,70.464,70.47399999999999,70.484,70.494,70.50399999999999,70.514,70.524,70.53399999999999,70.544,70.554,70.564,70.574,70.584,70.594,70.604,70.61399999999999,70.624,70.634,70.64399999999999,70.654,70.664,70.67399999999999,70.684,70.694,70.704,70.714,70.72399999999999,70.734,70.744,70.75399999999999,70.764,70.774,70.78399999999999,70.794,70.804,70.814,70.824,70.834,70.844,70.854,70.86399999999999,70.874,70.884,70.89399999999999,70.904,70.914,70.92399999999999,70.934,70.944,70.954,70.964,70.97399999999999,70.984,70.994,71.00399999999999,71.014,71.024,71.03399999999999,71.044,71.054,71.064,71.074,71.084,71.094,71.104,71.11399999999999,71.124,71.134,71.14399999999999,71.14399999999999,71.834,71.84400000000001,71.854,71.864,71.87400000000001,71.884,71.894,71.904,71.914,71.924,71.934,71.944,71.95400000000001,71.964,71.974,71.98400000000001,71.994,72.004,72.01400000000001,72.024,72.034,72.044,72.054,72.06400000000001,72.074,72.084,72.09400000000001,72.104,72.114,72.12400000000001,72.134,72.144,72.154,72.164,72.174,72.184,72.194,72.20400000000001,72.214,72.224,72.23400000000001,72.244,72.254,72.26400000000001,72.274,72.284,72.294,72.304,72.31400000000001,72.324,72.334,72.34400000000001,72.354,72.364,72.37400000000001,72.384,72.394,72.404,72.414,72.424,72.434,72.444,72.45400000000001,72.464,72.474,72.48400000000001,72.494,72.504,72.51400000000001,72.524,72.534,72.544,72.554,72.56400000000001,72.574,72.584,72.59400000000001,72.604,72.614,72.62400000000001,72.634,72.644,72.654,72.664,72.674,72.684,72.694,72.70400000000001,72.714,72.724,72.73400000000001,72.744,72.754,72.76400000000001,72.774,72.784,72.794,72.804,72.81400000000001,72.824,72.824,73.514,73.524,73.53399999999999,73.544,73.554,73.564,73.574,73.58399999999999,73.594,73.604,73.61399999999999,73.624,73.634,73.64399999999999,73.654,73.664,73.67399999999999,73.684,73.694,73.704,73.714,73.72399999999999,73.734,73.744,73.75399999999999,73.764,73.774,73.78399999999999,73.794,73.804,73.814,73.824,73.83399999999999,73.844,73.854,73.86399999999999,73.874,73.884,73.89399999999999,73.904,73.914,73.92399999999999,73.934,73.944,73.954,73.964,73.97399999999999,73.984,73.994,74.00399999999999,74.014,74.024,74.03399999999999,74.044,74.054,74.064,74.074,74.08399999999999,74.094,74.104,74.11399999999999,74.124,74.134,74.14399999999999,74.154,74.164,74.17399999999999,74.184,74.194,74.204,74.214,74.22399999999999,74.234,74.244,74.25399999999999,74.264,74.274,74.28399999999999,74.294,74.304,74.314,74.324,74.33399999999999,74.344,74.354,74.36399999999999,74.374,74.384,74.39399999999999,74.404,74.414,74.42399999999999,74.434,74.444,74.454,74.464,74.47399999999999,74.484,74.494,74.50399999999999,74.50399999999999,75.194,75.20400000000001,75.214,75.224,75.23400000000001,75.244,75.254,75.264,75.274,75.284,75.294,75.304,75.31400000000001,75.324,75.334,75.34400000000001,75.354,75.364,75.37400000000001,75.384,75.394,75.404,75.414,75.424,75.434,75.444,75.45400000000001,75.464,75.474,75.48400000000001,75.494,75.504,75.514,75.524,75.534,75.544,75.554,75.56400000000001,75.574,75.584,75.59400000000001,75.604,75.614,75.62400000000001,75.634,75.644,75.654,75.664,75.674,75.684,75.694,75.70400000000001,75.714,75.724,75.73400000000001,75.744,75.754,75.764,75.774,75.784,75.794,75.804,75.81400000000001,75.824,75.834,75.84400000000001,75.854,75.864,75.87400000000001,75.884,75.894,75.904,75.914,75.924,75.934,75.944,75.95400000000001,75.964,75.974,75.98400000000001,75.994,76.004,76.014,76.024,76.034,76.044,76.054,76.06400000000001,76.074,76.084,76.09400000000001,76.104,76.114,76.12400000000001,76.134,76.144,76.154,76.164,76.174,76.184,76.184,76.874,76.884,76.89399999999999,76.904,76.914,76.92399999999999,76.934,76.94399999999999,76.954,76.964,76.97399999999999,76.984,76.994,77.00399999999999,77.014,77.024,77.03399999999999,77.044,77.054,77.064,77.074,77.08399999999999,77.094,77.104,77.11399999999999,77.124,77.134,77.14399999999999,77.154,77.164,77.17399999999999,77.184,77.19399999999999,77.204,77.214,77.22399999999999,77.234,77.244,77.25399999999999,77.264,77.274,77.28399999999999,77.294,77.304,77.314,77.324,77.33399999999999,77.344,77.354,77.36399999999999,77.374,77.384,77.39399999999999,77.404,77.414,77.42399999999999,77.434,77.44399999999999,77.454,77.464,77.47399999999999,77.484,77.494,77.50399999999999,77.514,77.524,77.53399999999999,77.544,77.554,77.564,77.574,77.58399999999999,77.594,77.604,77.61399999999999,77.624,77.634,77.64399999999999,77.654,77.664,77.67399999999999,77.684,77.69399999999999,77.704,77.714,77.72399999999999,77.734,77.744,77.75399999999999,77.764,77.774,77.78399999999999,77.794,77.804,77.814,77.824,77.83399999999999,77.844,77.854,77.86399999999999,77.86399999999999,78.554,78.56400000000001,78.574,78.584,78.59400000000001,78.604,78.614,78.624,78.634,78.644,78.654,78.664,78.674,78.684,78.694,78.70400000000001,78.714,78.724,78.73400000000001,78.744,78.754,78.764,78.774,78.784,78.794,78.804,78.81400000000001,78.824,78.834,78.84400000000001,78.854,78.864,78.874,78.884,78.894,78.904,78.914,78.924,78.934,78.944,78.95400000000001,78.964,78.974,78.98400000000001,78.994,79.004,79.014,79.024,79.034,79.044,79.054,79.06400000000001,79.074,79.084,79.09400000000001,79.104,79.114,79.124,79.134,79.144,79.154,79.164,79.174,79.184,79.194,79.20400000000001,79.214,79.224,79.23400000000001,79.244,79.254,79.264,79.274,79.284,79.294,79.304,79.31400000000001,79.324,79.334,79.34400000000001,79.354,79.364,79.374,79.384,79.394,79.404,79.414,79.424,79.434,79.444,79.45400000000001,79.464,79.474,79.48400000000001,79.494,79.504,79.514,79.524,79.534,79.544,79.544,80.234,80.244,80.25399999999999,80.264,80.274,80.28399999999999,80.294,80.30399999999999,80.314,80.324,80.33399999999999,80.344,80.354,80.36399999999999,80.374,80.384,80.39399999999999,80.404,80.414,80.42399999999999,80.434,80.44399999999999,80.454,80.464,80.47399999999999,80.484,80.494,80.50399999999999,80.514,80.524,80.53399999999999,80.544,80.55399999999999,80.564,80.574,80.58399999999999,80.594,80.604,80.61399999999999,80.624,80.634,80.64399999999999,80.654,80.664,80.67399999999999,80.684,80.69399999999999,80.704,80.714,80.72399999999999,80.734,80.744,80.75399999999999,80.764,80.774,80.78399999999999,80.794,80.80399999999999,80.814,80.824,80.83399999999999,80.844,80.854,80.86399999999999,80.874,80.884,80.89399999999999,80.904,80.914,80.92399999999999,80.934,80.94399999999999,80.954,80.964,80.97399999999999,80.984,80.994,81.00399999999999,81.014,81.024,81.03399999999999,81.044,81.05399999999999,81.064,81.074,81.08399999999999,81.094,81.104,81.11399999999999,81.124,81.134,81.14399999999999,81.154,81.164,81.17399999999999,81.184,81.19399999999999,81.204,81.214,81.22399999999999,81.22399999999999,81.914,81.924,81.934,81.944,81.95400000000001,81.964,81.974,81.984,81.994,82.004,82.014,82.024,82.034,82.044,82.054,82.06400000000001,82.074,82.084,82.09400000000001,82.104,82.114,82.124,82.134,82.144,82.154,82.164,82.174,82.184,82.194,82.20400000000001,82.214,82.224,82.234,82.244,82.254,82.264,82.274,82.284,82.294,82.304,82.31400000000001,82.324,82.334,82.34400000000001,82.354,82.364,82.374,82.384,82.394,82.404,82.414,82.424,82.434,82.444,82.45400000000001,82.464,82.474,82.484,82.494,82.504,82.514,82.524,82.534,82.544,82.554,82.56400000000001,82.574,82.584,82.59400000000001,82.604,82.614,82.624,82.634,82.644,82.654,82.664,82.674,82.684,82.694,82.70400000000001,82.714,82.724,82.734,82.744,82.754,82.764,82.774,82.784,82.794,82.804,82.81400000000001,82.824,82.834,82.84400000000001,82.854,82.864,82.874,82.884,82.894,82.904,82.904,83.59400000000001,83.60400000000001,83.614,83.62400000000001,83.63400000000001,83.644,83.65400000000001,83.664,83.674,83.68400000000001,83.694,83.70400000000001,83.71400000000001,83.724,83.73400000000001,83.74400000000001,83.754,83.76400000000001,83.77400000000002,83.784,83.79400000000001,83.804,83.81400000000001,83.82400000000001,83.834,83.84400000000001,83.85400000000001,83.864,83.87400000000001,83.88400000000001,83.894,83.90400000000001,83.914,83.924,83.93400000000001,83.944,83.95400000000001,83.96400000000001,83.974,83.98400000000001,83.99400000000001,84.004,84.01400000000001,84.02400000000002,84.034,84.04400000000001,84.054,84.06400000000001,84.07400000000001,84.084,84.09400000000001,84.10400000000001,84.114,84.12400000000001,84.13400000000001,84.144,84.15400000000001,84.164,84.174,84.18400000000001,84.194,84.20400000000001,84.21400000000001,84.224,84.23400000000001,84.24400000000001,84.254,84.26400000000001,84.27400000000002,84.284,84.29400000000001,84.304,84.31400000000001,84.32400000000001,84.334,84.34400000000001,84.35400000000001,84.364,84.37400000000001,84.38400000000001,84.394,84.40400000000001,84.414,84.424,84.43400000000001,84.444,84.45400000000001,84.46400000000001,84.474,84.48400000000001,84.49400000000001,84.504,84.51400000000001,84.52400000000002,84.534,84.54400000000001,84.554,84.56400000000001,84.57400000000001,84.584,84.584,85.274,85.284,85.294,85.304,85.31400000000001,85.324,85.334,85.344,85.354,85.364,85.374,85.384,85.394,85.404,85.414,85.424,85.434,85.444,85.45400000000001,85.464,85.474,85.484,85.494,85.504,85.514,85.524,85.534,85.544,85.554,85.56400000000001,85.574,85.584,85.594,85.604,85.614,85.624,85.634,85.644,85.654,85.664,85.674,85.684,85.694,85.70400000000001,85.714,85.724,85.734,85.744,85.754,85.764,85.774,85.784,85.794,85.804,85.81400000000001,85.824,85.834,85.844,85.854,85.864,85.874,85.884,85.894,85.904,85.914,85.924,85.934,85.944,85.95400000000001,85.964,85.974,85.984,85.994,86.004,86.014,86.024,86.034,86.044,86.054,86.06400000000001,86.074,86.084,86.094,86.104,86.114,86.124,86.134,86.144,86.154,86.164,86.174,86.184,86.194,86.20400000000001,86.214,86.224,86.234,86.244,86.254,86.264,86.264,86.95400000000001,86.96400000000001,86.974,86.98400000000001,86.99400000000001,87.004,87.01400000000001,87.024,87.034,87.04400000000001,87.054,87.06400000000001,87.07400000000001,87.084,87.09400000000001,87.10400000000001,87.114,87.12400000000001,87.13400000000001,87.144,87.15400000000001,87.164,87.174,87.18400000000001,87.194,87.20400000000001,87.21400000000001,87.224,87.23400000000001,87.24400000000001,87.254,87.26400000000001,87.274,87.284,87.29400000000001,87.304,87.31400000000001,87.32400000000001,87.334,87.34400000000001,87.35400000000001,87.364,87.37400000000001,87.38400000000001,87.394,87.40400000000001,87.414,87.424,87.43400000000001,87.444,87.45400000000001,87.46400000000001,87.474,87.48400000000001,87.49400000000001,87.504,87.51400000000001,87.524,87.534,87.54400000000001,87.554,87.56400000000001,87.57400000000001,87.584,87.59400000000001,87.60400000000001,87.614,87.62400000000001,87.63400000000001,87.644,87.65400000000001,87.664,87.674,87.68400000000001,87.694,87.70400000000001,87.71400000000001,87.724,87.73400000000001,87.74400000000001,87.754,87.76400000000001,87.774,87.784,87.79400000000001,87.804,87.81400000000001,87.82400000000001,87.834,87.84400000000001,87.85400000000001,87.864,87.87400000000001,87.88400000000001,87.894,87.90400000000001,87.914,87.924,87.93400000000001,87.944,87.944,88.634,88.644,88.654,88.664,88.674,88.684,88.694,88.704,88.714,88.724,88.734,88.744,88.754,88.764,88.774,88.784,88.794,88.804,88.81400000000001,88.824,88.834,88.844,88.854,88.864,88.874,88.884,88.894,88.904,88.914,88.924,88.934,88.944,88.954,88.964,88.974,88.984,88.994,89.004,89.014,89.024,89.034,89.044,89.054,89.06400000000001,89.074,89.084,89.094,89.104,89.114,89.124,89.134,89.144,89.154,89.164,89.174,89.184,89.194,89.204,89.214,89.224,89.234,89.244,89.254,89.264,89.274,89.284,89.294,89.304,89.31400000000001,89.324,89.334,89.344,89.354,89.364,89.374,89.384,89.394,89.404,89.414,89.424,89.434,89.444,89.454,89.464,89.474,89.484,89.494,89.504,89.514,89.524,89.534,89.544,89.554,89.56400000000001,89.574,89.584,89.594,89.604,89.614,89.624,89.624,90.31400000000001,90.32400000000001,90.334,90.34400000000001,90.35400000000001,90.364,90.37400000000001,90.384,90.394,90.40400000000001,90.414,90.424,90.43400000000001,90.444,90.45400000000001,90.46400000000001,90.474,90.48400000000001,90.49400000000001,90.504,90.51400000000001,90.524,90.534,90.54400000000001,90.554,90.56400000000001,90.57400000000001,90.584,90.59400000000001,90.60400000000001,90.614,90.62400000000001,90.634,90.644,90.65400000000001,90.664,90.674,90.68400000000001,90.694,90.70400000000001,90.71400000000001,90.724,90.73400000000001,90.74400000000001,90.754,90.76400000000001,90.774,90.784,90.79400000000001,90.804,90.81400000000001,90.82400000000001,90.834,90.84400000000001,90.85400000000001,90.864,90.87400000000001,90.884,90.894,90.90400000000001,90.914,90.924,90.93400000000001,90.944,90.95400000000001,90.96400000000001,90.974,90.98400000000001,90.99400000000001,91.004,91.01400000000001,91.024,91.034,91.04400000000001,91.054,91.06400000000001,91.07400000000001,91.084,91.09400000000001,91.10400000000001,91.114,91.12400000000001,91.134,91.144,91.15400000000001,91.164,91.174,91.18400000000001,91.194,91.20400000000001,91.21400000000001,91.224,91.23400000000001,91.24400000000001,91.254,91.26400000000001,91.274,91.284,91.29400000000001,91.304,91.304,91.994,92.004,92.014,92.024,92.034,92.044,92.054,92.064,92.074,92.084,92.094,92.104,92.114,92.124,92.134,92.144,92.154,92.164,92.174,92.184,92.194,92.204,92.214,92.224,92.234,92.244,92.254,92.264,92.274,92.284,92.294,92.304,92.314,92.324,92.334,92.344,92.354,92.364,92.374,92.384,92.394,92.404,92.414,92.424,92.434,92.444,92.454,92.464,92.474,92.484,92.494,92.504,92.514,92.524,92.534,92.544,92.554,92.564,92.574,92.584,92.594,92.604,92.614,92.624,92.634,92.644,92.654,92.664,92.674,92.684,92.694,92.704,92.714,92.724,92.734,92.744,92.754,92.764,92.774,92.784,92.794,92.804,92.814,92.824,92.834,92.844,92.854,92.864,92.874,92.884,92.894,92.904,92.914,92.924,92.934,92.944,92.954,92.964,92.974,92.984,92.984,93.674,93.68400000000001,93.694,93.70400000000001,93.71400000000001,93.724,93.73400000000001,93.744,93.754,93.76400000000001,93.774,93.784,93.79400000000001,93.804,93.81400000000001,93.82400000000001,93.834,93.84400000000001,93.85400000000001,93.864,93.87400000000001,93.884,93.894,93.90400000000001,93.914,93.924,93.93400000000001,93.944,93.95400000000001,93.96400000000001,93.974,93.98400000000001,93.994,94.004,94.01400000000001,94.024,94.034,94.04400000000001,94.054,94.06400000000001,94.07400000000001,94.084,94.09400000000001,94.10400000000001,94.114,94.12400000000001,94.134,94.144,94.15400000000001,94.164,94.174,94.18400000000001,94.194,94.20400000000001,94.21400000000001,94.224,94.23400000000001,94.244,94.254,94.26400000000001,94.274,94.284,94.29400000000001,94.304,94.31400000000001,94.32400000000001,94.334,94.34400000000001,94.35400000000001,94.364,94.37400000000001,94.384,94.394,94.40400000000001,94.414,94.424,94.43400000000001,94.444,94.45400000000001,94.46400000000001,94.474,94.48400000000001,94.494,94.504,94.51400000000001,94.524,94.534,94.54400000000001,94.554,94.56400000000001,94.57400000000001,94.584,94.59400000000001,94.60400000000001,94.614,94.62400000000001,94.634,94.644,94.65400000000001,94.664,94.664,95.354,95.364,95.374,95.384,95.394,95.404,95.414,95.42399999999999,95.434,95.444,95.454,95.464,95.474,95.484,95.494,95.504,95.514,95.524,95.534,95.544,95.554,95.564,95.574,95.584,95.594,95.604,95.614,95.624,95.634,95.644,95.654,95.664,95.67399999999999,95.684,95.694,95.704,95.714,95.724,95.734,95.744,95.754,95.764,95.774,95.784,95.794,95.804,95.814,95.824,95.834,95.844,95.854,95.864,95.874,95.884,95.894,95.904,95.914,95.92399999999999,95.934,95.944,95.954,95.964,95.974,95.984,95.994,96.004,96.014,96.024,96.034,96.044,96.054,96.064,96.074,96.084,96.094,96.104,96.114,96.124,96.134,96.144,96.154,96.164,96.17399999999999,96.184,96.194,96.204,96.214,96.224,96.234,96.244,96.254,96.264,96.274,96.284,96.294,96.304,96.314,96.324,96.334,96.344,96.344,97.034,97.04400000000001,97.054,97.06400000000001,97.07400000000001,97.084,97.09400000000001,97.104,97.114,97.12400000000001,97.134,97.144,97.15400000000001,97.164,97.174,97.18400000000001,97.194,97.20400000000001,97.21400000000001,97.224,97.23400000000001,97.244,97.254,97.26400000000001,97.274,97.284,97.29400000000001,97.304,97.31400000000001,97.32400000000001,97.334,97.34400000000001,97.354,97.364,97.37400000000001,97.384,97.394,97.40400000000001,97.414,97.424,97.43400000000001,97.444,97.45400000000001,97.46400000000001,97.474,97.48400000000001,97.494,97.504,97.51400000000001,97.524,97.534,97.54400000000001,97.554,97.56400000000001,97.57400000000001,97.584,97.59400000000001,97.604,97.614,97.62400000000001,97.634,97.644,97.65400000000001,97.664,97.674,97.68400000000001,97.694,97.70400000000001,97.71400000000001,97.724,97.73400000000001,97.744,97.754,97.76400000000001,97.774,97.784,97.79400000000001,97.804,97.81400000000001,97.82400000000001,97.834,97.84400000000001,97.854,97.864,97.87400000000001,97.884,97.894,97.90400000000001,97.914,97.924,97.93400000000001,97.944,97.95400000000001,97.96400000000001,97.974,97.98400000000001,97.994,98.004,98.01400000000001,98.024,98.024,98.714,98.724,98.734,98.744,98.754,98.764,98.774,98.78399999999999,98.794,98.804,98.814,98.824,98.834,98.844,98.854,98.864,98.874,98.884,98.894,98.904,98.914,98.92399999999999,98.934,98.944,98.954,98.964,98.974,98.984,98.994,99.004,99.014,99.024,99.03399999999999,99.044,99.054,99.064,99.074,99.084,99.094,99.104,99.114,99.124,99.134,99.144,99.154,99.164,99.17399999999999,99.184,99.194,99.204,99.214,99.224,99.234,99.244,99.254,99.264,99.274,99.28399999999999,99.294,99.304,99.314,99.324,99.334,99.344,99.354,99.364,99.374,99.384,99.394,99.404,99.414,99.42399999999999,99.434,99.444,99.454,99.464,99.474,99.484,99.494,99.504,99.514,99.524,99.53399999999999,99.544,99.554,99.564,99.574,99.584,99.594,99.604,99.614,99.624,99.634,99.644,99.654,99.664,99.67399999999999,99.684,99.694,99.704,99.704,100.394,100.40400000000001,100.414,100.424,100.43400000000001,100.444,100.45400000000001,100.464,100.474,100.48400000000001,100.494,100.504,100.51400000000001,100.524,100.534,100.54400000000001,100.554,100.56400000000001,100.57400000000001,100.584,100.59400000000001,100.604,100.614,100.62400000000001,100.634,100.644,100.65400000000001,100.664,100.674,100.68400000000001,100.694,100.70400000000001,100.714,100.724,100.73400000000001,100.744,100.754,100.76400000000001,100.774,100.784,100.79400000000001,100.804,100.81400000000001,100.82400000000001,100.834,100.84400000000001,100.854,100.864,100.87400000000001,100.884,100.894,100.90400000000001,100.914,100.924,100.93400000000001,100.944,100.95400000000001,100.964,100.974,100.98400000000001,100.994,101.004,101.01400000000001,101.024,101.034,101.04400000000001,101.054,101.06400000000001,101.07400000000001,101.084,101.09400000000001,101.104,101.114,101.12400000000001,101.134,101.144,101.15400000000001,101.164,101.174,101.18400000000001,101.194,101.20400000000001,101.214,101.224,101.23400000000001,101.244,101.254,101.26400000000001,101.274,101.284,101.29400000000001,101.304,101.31400000000001,101.32400000000001,101.334,101.34400000000001,101.354,101.364,101.37400000000001,101.384,101.384,102.074,102.084,102.094,102.104,102.114,102.124,102.134,102.14399999999999,102.154,102.164,102.17399999999999,102.184,102.194,102.204,102.214,102.224,102.234,102.244,102.254,102.264,102.274,102.28399999999999,102.294,102.304,102.314,102.324,102.334,102.344,102.354,102.364,102.374,102.384,102.39399999999999,102.404,102.414,102.42399999999999,102.434,102.444,102.454,102.464,102.474,102.484,102.494,102.504,102.514,102.524,102.53399999999999,102.544,102.554,102.564,102.574,102.584,102.594,102.604,102.614,102.624,102.634,102.64399999999999,102.654,102.664,102.67399999999999,102.684,102.694,102.704,102.714,102.724,102.734,102.744,102.754,102.764,102.774,102.78399999999999,102.794,102.804,102.814,102.824,102.834,102.844,102.854,102.864,102.874,102.884,102.89399999999999,102.904,102.914,102.92399999999999,102.934,102.944,102.954,102.964,102.974,102.984,102.994,103.004,103.014,103.024,103.03399999999999,103.044,103.054,103.064,103.064,103.754,103.76400000000001,103.774,103.784,103.79400000000001,103.804,103.81400000000001,103.824,103.834,103.84400000000001,103.854,103.864,103.87400000000001,103.884,103.894,103.90400000000001,103.914,103.924,103.93400000000001,103.944,103.95400000000001,103.964,103.974,103.98400000000001,103.994,104.004,104.01400000000001,104.024,104.034,104.04400000000001,104.054,104.06400000000001,104.074,104.084,104.09400000000001,104.104,104.114,104.12400000000001,104.134,104.144,104.15400000000001,104.164,104.174,104.18400000000001,104.194,104.20400000000001,104.214,104.224,104.23400000000001,104.244,104.254,104.26400000000001,104.274,104.284,104.29400000000001,104.304,104.31400000000001,104.324,104.334,104.34400000000001,104.354,104.364,104.37400000000001,104.384,104.394,104.40400000000001,104.414,104.424,104.43400000000001,104.444,104.45400000000001,104.464,104.474,104.48400000000001,104.494,104.504,104.51400000000001,104.524,104.534,104.54400000000001,104.554,104.56400000000001,104.574,104.584,104.59400000000001,104.604,104.614,104.62400000000001,104.634,104.644,104.65400000000001,104.664,104.674,104.68400000000001,104.694,104.70400000000001,104.714,104.724,104.73400000000001,104.744,104.744,105.434,105.444,105.454,105.464,105.474,105.484,105.494,105.50399999999999,105.514,105.524,105.53399999999999,105.544,105.554,105.564,105.574,105.584,105.594,105.604,105.614,105.624,105.634,105.64399999999999,105.654,105.664,105.67399999999999,105.684,105.694,105.704,105.714,105.724,105.734,105.744,105.75399999999999,105.764,105.774,105.78399999999999,105.794,105.804,105.814,105.824,105.834,105.844,105.854,105.864,105.874,105.884,105.89399999999999,105.904,105.914,105.92399999999999,105.934,105.944,105.954,105.964,105.974,105.984,105.994,106.00399999999999,106.014,106.024,106.03399999999999,106.044,106.054,106.064,106.074,106.084,106.094,106.104,106.114,106.124,106.134,106.14399999999999,106.154,106.164,106.17399999999999,106.184,106.194,106.204,106.214,106.224,106.234,106.244,106.25399999999999,106.264,106.274,106.28399999999999,106.294,106.304,106.314,106.324,106.334,106.344,106.354,106.364,106.374,106.384,106.39399999999999,106.404,106.414,106.42399999999999,106.42399999999999,107.114,107.12400000000001,107.134,107.144,107.15400000000001,107.164,107.174,107.184,107.194,107.20400000000001,107.214,107.224,107.23400000000001,107.244,107.254,107.26400000000001,107.274,107.284,107.29400000000001,107.304,107.31400000000001,107.324,107.334,107.34400000000001,107.354,107.364,107.37400000000001,107.384,107.394,107.40400000000001,107.414,107.424,107.434,107.444,107.45400000000001,107.464,107.474,107.48400000000001,107.494,107.504,107.51400000000001,107.524,107.534,107.54400000000001,107.554,107.56400000000001,107.574,107.584,107.59400000000001,107.604,107.614,107.62400000000001,107.634,107.644,107.65400000000001,107.664,107.674,107.684,107.694,107.70400000000001,107.714,107.724,107.73400000000001,107.744,107.754,107.76400000000001,107.774,107.784,107.79400000000001,107.804,107.81400000000001,107.824,107.834,107.84400000000001,107.854,107.864,107.87400000000001,107.884,107.894,107.90400000000001,107.914,107.924,107.934,107.944,107.95400000000001,107.964,107.974,107.98400000000001,107.994,108.004,108.01400000000001,108.024,108.034,108.04400000000001,108.054,108.06400000000001,108.074,108.084,108.09400000000001,108.104,108.104,108.794,108.804,108.814,108.824,108.834,108.844,108.854,108.86399999999999,108.874,108.884,108.89399999999999,108.904,108.914,108.92399999999999,108.934,108.944,108.954,108.964,108.974,108.984,108.994,109.00399999999999,109.014,109.024,109.03399999999999,109.044,109.054,109.064,109.074,109.084,109.094,109.104,109.11399999999999,109.124,109.134,109.14399999999999,109.154,109.164,109.17399999999999,109.184,109.194,109.204,109.214,109.224,109.234,109.244,109.25399999999999,109.264,109.274,109.28399999999999,109.294,109.304,109.314,109.324,109.334,109.344,109.354,109.36399999999999,109.374,109.384,109.39399999999999,109.404,109.414,109.42399999999999,109.434,109.444,109.454,109.464,109.474,109.484,109.494,109.50399999999999,109.514,109.524,109.53399999999999,109.544,109.554,109.564,109.574,109.584,109.594,109.604,109.61399999999999,109.624,109.634,109.64399999999999,109.654,109.664,109.67399999999999,109.684,109.694,109.704,109.714,109.724,109.734,109.744,109.75399999999999,109.764,109.774,109.78399999999999,109.78399999999999,110.474,110.48400000000001,110.494,110.504,110.51400000000001,110.524,110.534,110.544,110.554,110.56400000000001,110.574,110.584,110.59400000000001,110.604,110.614,110.62400000000001,110.634,110.644,110.65400000000001,110.664,110.674,110.684,110.694,110.70400000000001,110.714,110.724,110.73400000000001,110.744,110.754,110.76400000000001,110.774,110.784,110.794,110.804,110.81400000000001,110.824,110.834,110.84400000000001,110.854,110.864,110.87400000000001,110.884,110.894,110.90400000000001,110.914,110.924,110.934,110.944,110.95400000000001,110.964,110.974,110.98400000000001,110.994,111.004,111.01400000000001,111.024,111.034,111.044,111.054,111.06400000000001,111.074,111.084,111.09400000000001,111.104,111.114,111.12400000000001,111.134,111.144,111.15400000000001,111.164,111.174,111.184,111.194,111.20400000000001,111.214,111.224,111.23400000000001,111.244,111.254,111.26400000000001,111.274,111.284,111.294,111.304,111.31400000000001,111.324,111.334,111.34400000000001,111.354,111.364,111.37400000000001,111.384,111.394,111.40400000000001,111.414,111.424,111.434,111.444,111.45400000000001,111.464,111.464,112.154,112.164,112.17399999999999,112.184,112.194,112.204,112.214,112.22399999999999,112.234,112.244,112.25399999999999,112.264,112.274,112.28399999999999,112.294,112.304,112.314,112.324,112.334,112.344,112.354,112.36399999999999,112.374,112.384,112.39399999999999,112.404,112.414,112.42399999999999,112.434,112.444,112.454,112.464,112.47399999999999,112.484,112.494,112.50399999999999,112.514,112.524,112.53399999999999,112.544,112.554,112.564,112.574,112.584,112.594,112.604,112.61399999999999,112.624,112.634,112.64399999999999,112.654,112.664,112.67399999999999,112.684,112.694,112.704,112.714,112.72399999999999,112.734,112.744,112.75399999999999,112.764,112.774,112.78399999999999,112.794,112.804,112.814,112.824,112.834,112.844,112.854,112.86399999999999,112.874,112.884,112.89399999999999,112.904,112.914,112.92399999999999,112.934,112.944,112.954,112.964,112.97399999999999,112.984,112.994,113.00399999999999,113.014,113.024,113.03399999999999,113.044,113.054,113.064,113.074,113.084,113.094,113.104,113.11399999999999,113.124,113.134,113.14399999999999,113.14399999999999,113.834,113.84400000000001,113.854,113.864,113.87400000000001,113.884,113.894,113.904,113.914,113.924,113.934,113.944,113.95400000000001,113.964,113.974,113.98400000000001,113.994,114.004,114.01400000000001,114.024,114.034,114.044,114.054,114.06400000000001,114.074,114.084,114.09400000000001,114.104,114.114,114.12400000000001,114.134,114.144,114.154,114.164,114.174,114.184,114.194,114.20400000000001,114.214,114.224,114.23400000000001,114.244,114.254,114.26400000000001,114.274,114.284,114.294,114.304,114.31400000000001,114.324,114.334,114.34400000000001,114.354,114.364,114.37400000000001,114.384,114.394,114.404,114.414,114.424,114.434,114.444,114.45400000000001,114.464,114.474,114.48400000000001,114.494,114.504,114.51400000000001,114.524,114.534,114.544,114.554,114.56400000000001,114.574,114.584,114.59400000000001,114.604,114.614,114.62400000000001,114.634,114.644,114.654,114.664,114.674,114.684,114.694,114.70400000000001,114.714,114.724,114.73400000000001,114.744,114.754,114.76400000000001,114.774,114.784,114.794,114.804,114.81400000000001,114.824,114.824,115.514,115.524,115.53399999999999,115.544,115.554,115.564,115.574,115.58399999999999,115.594,115.604,115.61399999999999,115.624,115.634,115.64399999999999,115.654,115.664,115.67399999999999,115.684,115.694,115.704,115.714,115.72399999999999,115.734,115.744,115.75399999999999,115.764,115.774,115.78399999999999,115.794,115.804,115.814,115.824,115.83399999999999,115.844,115.854,115.86399999999999,115.874,115.884,115.89399999999999,115.904,115.914,115.92399999999999,115.934,115.944,115.954,115.964,115.97399999999999,115.984,115.994,116.00399999999999,116.014,116.024,116.03399999999999,116.044,116.054,116.064,116.074,116.08399999999999,116.094,116.104,116.11399999999999,116.124,116.134,116.14399999999999,116.154,116.164,116.17399999999999,116.184,116.194,116.204,116.214,116.22399999999999,116.234,116.244,116.25399999999999,116.264,116.274,116.28399999999999,116.294,116.304,116.314,116.324,116.33399999999999,116.344,116.354,116.36399999999999,116.374,116.384,116.39399999999999,116.404,116.414,116.42399999999999,116.434,116.444,116.454,116.464,116.47399999999999,116.484,116.494,116.50399999999999,116.50399999999999,117.194,117.20400000000001,117.214,117.224,117.23400000000001,117.244,117.254,117.264,117.274,117.284,117.294,117.304,117.31400000000001,117.324,117.334,117.34400000000001,117.354,117.364,117.37400000000001,117.384,117.394,117.404,117.414,117.424,117.434,117.444,117.45400000000001,117.464,117.474,117.48400000000001,117.494,117.504,117.514,117.524,117.534,117.544,117.554,117.56400000000001,117.574,117.584,117.59400000000001,117.604,117.614,117.62400000000001,117.634,117.644,117.654,117.664,117.674,117.684,117.694,117.70400000000001,117.714,117.724,117.73400000000001,117.744,117.754,117.764,117.774,117.784,117.794,117.804,117.81400000000001,117.824,117.834,117.84400000000001,117.854,117.864,117.87400000000001,117.884,117.894,117.904,117.914,117.924,117.934,117.944,117.95400000000001,117.964,117.974,117.98400000000001,117.994,118.004,118.014,118.024,118.034,118.044,118.054,118.06400000000001,118.074,118.084,118.09400000000001,118.104,118.114,118.12400000000001,118.134,118.144,118.154,118.164,118.174,118.184,118.184,118.87400000000001,118.88400000000001,118.894,118.90400000000001,118.91400000000002,118.924,118.93400000000001,118.944,118.95400000000001,118.96400000000001,118.974,118.98400000000001,118.99400000000001,119.004,119.01400000000001,119.02400000000002,119.034,119.04400000000001,119.05400000000002,119.06400000000001,119.07400000000001,119.084,119.09400000000001,119.10400000000001,119.114,119.12400000000001,119.13400000000001,119.144,119.15400000000001,119.16400000000002,119.174,119.18400000000001,119.194,119.20400000000001,119.21400000000001,119.224,119.23400000000001,119.24400000000001,119.254,119.26400000000001,119.27400000000002,119.284,119.29400000000001,119.30400000000002,119.31400000000001,119.32400000000001,119.334,119.34400000000001,119.35400000000001,119.364,119.37400000000001,119.38400000000001,119.394,119.40400000000001,119.41400000000002,119.424,119.43400000000001,119.444,119.45400000000001,119.46400000000001,119.474,119.48400000000001,119.49400000000001,119.504,119.51400000000001,119.52400000000002,119.534,119.54400000000001,119.55400000000002,119.56400000000001,119.57400000000001,119.584,119.59400000000001,119.60400000000001,119.614,119.62400000000001,119.63400000000001,119.644,119.65400000000001,119.66400000000002,119.674,119.68400000000001,119.694,119.70400000000001,119.71400000000001,119.724,119.73400000000001,119.74400000000001,119.754,119.76400000000001,119.77400000000002,119.784,119.79400000000001,119.80400000000002,119.81400000000001,119.82400000000001,119.834,119.84400000000001,119.85400000000001,119.864,119.864,120.554,120.56400000000001,120.574,120.584,120.59400000000001,120.604,120.614,120.624,120.634,120.644,120.654,120.664,120.674,120.684,120.694,120.70400000000001,120.714,120.724,120.73400000000001,120.744,120.754,120.764,120.774,120.784,120.794,120.804,120.81400000000001,120.824,120.834,120.84400000000001,120.854,120.864,120.874,120.884,120.894,120.904,120.914,120.924,120.934,120.944,120.95400000000001,120.964,120.974,120.98400000000001,120.994,121.004,121.014,121.024,121.034,121.044,121.054,121.06400000000001,121.074,121.084,121.09400000000001,121.104,121.114,121.124,121.134,121.144,121.154,121.164,121.174,121.184,121.194,121.20400000000001,121.214,121.224,121.23400000000001,121.244,121.254,121.264,121.274,121.284,121.294,121.304,121.31400000000001,121.324,121.334,121.34400000000001,121.354,121.364,121.374,121.384,121.394,121.404,121.414,121.424,121.434,121.444,121.45400000000001,121.464,121.474,121.48400000000001,121.494,121.504,121.514,121.524,121.534,121.544,121.544,122.23400000000001,122.24400000000001,122.254,122.26400000000001,122.27400000000002,122.284,122.29400000000001,122.304,122.31400000000001,122.32400000000001,122.334,122.34400000000001,122.35400000000001,122.364,122.37400000000001,122.38400000000001,122.394,122.40400000000001,122.41400000000002,122.424,122.43400000000001,122.444,122.45400000000001,122.46400000000001,122.474,122.48400000000001,122.49400000000001,122.504,122.51400000000001,122.52400000000002,122.534,122.54400000000001,122.554,122.56400000000001,122.57400000000001,122.584,122.59400000000001,122.60400000000001,122.614,122.62400000000001,122.63400000000001,122.644,122.65400000000001,122.66400000000002,122.674,122.68400000000001,122.694,122.70400000000001,122.71400000000001,122.724,122.73400000000001,122.74400000000001,122.754,122.76400000000001,122.77400000000002,122.784,122.79400000000001,122.804,122.81400000000001,122.82400000000001,122.834,122.84400000000001,122.85400000000001,122.864,122.87400000000001,122.88400000000001,122.894,122.90400000000001,122.91400000000002,122.924,122.93400000000001,122.944,122.95400000000001,122.96400000000001,122.974,122.98400000000001,122.99400000000001,123.004,123.01400000000001,123.02400000000002,123.034,123.04400000000001,123.054,123.06400000000001,123.07400000000001,123.084,123.09400000000001,123.10400000000001,123.114,123.12400000000001,123.13400000000001,123.144,123.15400000000001,123.16400000000002,123.174,123.18400000000001,123.194,123.20400000000001,123.21400000000001,123.224,123.224,123.914,123.924,123.934,123.944,123.95400000000001,123.964,123.974,123.984,123.994,124.004,124.014,124.024,124.034,124.044,124.054,124.06400000000001,124.074,124.084,124.09400000000001,124.104,124.114,124.124,124.134,124.144,124.154,124.164,124.174,124.184,124.194,124.20400000000001,124.214,124.224,124.234,124.244,124.254,124.264,124.274,124.284,124.294,124.304,124.31400000000001,124.324,124.334,124.34400000000001,124.354,124.364,124.374,124.384,124.394,124.404,124.414,124.424,124.434,124.444,124.45400000000001,124.464,124.474,124.484,124.494,124.504,124.514,124.524,124.534,124.544,124.554,124.56400000000001,124.574,124.584,124.59400000000001,124.604,124.614,124.624,124.634,124.644,124.654,124.664,124.674,124.684,124.694,124.70400000000001,124.714,124.724,124.734,124.744,124.754,124.764,124.774,124.784,124.794,124.804,124.81400000000001,124.824,124.834,124.84400000000001,124.854,124.864,124.874,124.884,124.894,124.904,124.904,125.59400000000001,125.60400000000001,125.614,125.62400000000001,125.63400000000001,125.644,125.65400000000001,125.664,125.674,125.68400000000001,125.694,125.70400000000001,125.71400000000001,125.724,125.73400000000001,125.74400000000001,125.754,125.76400000000001,125.77400000000002,125.784,125.79400000000001,125.804,125.81400000000001,125.82400000000001,125.834,125.84400000000001,125.85400000000001,125.864,125.87400000000001,125.88400000000001,125.894,125.90400000000001,125.914,125.924,125.93400000000001,125.944,125.95400000000001,125.96400000000001,125.974,125.98400000000001,125.99400000000001,126.004,126.01400000000001,126.02400000000002,126.034,126.04400000000001,126.054,126.06400000000001,126.07400000000001,126.084,126.09400000000001,126.10400000000001,126.114,126.12400000000001,126.13400000000001,126.144,126.15400000000001,126.164,126.174,126.18400000000001,126.194,126.20400000000001,126.21400000000001,126.224,126.23400000000001,126.24400000000001,126.254,126.26400000000001,126.27400000000002,126.284,126.29400000000001,126.304,126.31400000000001,126.32400000000001,126.334,126.34400000000001,126.35400000000001,126.364,126.37400000000001,126.38400000000001,126.394,126.40400000000001,126.414,126.424,126.43400000000001,126.444,126.45400000000001,126.46400000000001,126.474,126.48400000000001,126.49400000000001,126.504,126.51400000000001,126.52400000000002,126.534,126.54400000000001,126.554,126.56400000000001,126.57400000000001,126.584,126.584,127.274,127.284,127.294,127.304,127.31400000000001,127.324,127.334,127.344,127.354,127.364,127.374,127.384,127.394,127.404,127.414,127.424,127.434,127.444,127.45400000000001,127.464,127.474,127.484,127.494,127.504,127.514,127.524,127.534,127.544,127.554,127.56400000000001,127.574,127.584,127.594,127.604,127.614,127.624,127.634,127.644,127.654,127.664,127.674,127.684,127.694,127.70400000000001,127.714,127.724,127.734,127.744,127.754,127.764,127.774,127.784,127.794,127.804,127.81400000000001,127.824,127.834,127.844,127.854,127.864,127.874,127.884,127.894,127.904,127.914,127.924,127.934,127.944,127.95400000000001,127.964,127.974,127.984,127.994,128.004,128.014,128.024,128.034,128.044,128.054,128.064,128.074,128.084,128.094,128.104,128.114,128.124,128.13400000000001,128.144,128.154,128.164,128.174,128.184,128.194,128.204,128.214,128.224,128.234,128.244,128.254,128.264,128.264,128.954,128.964,128.97400000000002,128.984,128.994,129.00400000000002,129.014,129.024,129.03400000000002,129.044,129.054,129.06400000000002,129.074,129.084,129.094,129.104,129.114,129.124,129.13400000000001,129.144,129.154,129.16400000000002,129.174,129.184,129.19400000000002,129.204,129.214,129.22400000000002,129.234,129.244,129.25400000000002,129.264,129.274,129.28400000000002,129.294,129.304,129.31400000000002,129.324,129.334,129.344,129.354,129.364,129.374,129.38400000000001,129.394,129.404,129.41400000000002,129.424,129.434,129.44400000000002,129.454,129.464,129.47400000000002,129.484,129.494,129.50400000000002,129.514,129.524,129.53400000000002,129.544,129.554,129.56400000000002,129.574,129.584,129.594,129.604,129.614,129.624,129.63400000000001,129.644,129.654,129.66400000000002,129.674,129.684,129.69400000000002,129.704,129.714,129.72400000000002,129.734,129.744,129.75400000000002,129.764,129.774,129.78400000000002,129.794,129.804,129.81400000000002,129.824,129.834,129.844,129.854,129.864,129.874,129.88400000000001,129.894,129.904,129.91400000000002,129.924,129.934,129.94400000000002,129.94400000000002,130.63400000000001,130.644,130.65400000000002,130.66400000000002,130.674,130.68400000000003,130.69400000000002,130.704,130.71400000000003,130.72400000000002,130.734,130.74400000000003,130.75400000000002,130.764,130.774,130.78400000000002,130.794,130.804,130.81400000000002,130.824,130.834,130.84400000000002,130.854,130.864,130.87400000000002,130.88400000000001,130.894,130.90400000000002,130.91400000000002,130.924,130.93400000000003,130.94400000000002,130.954,130.96400000000003,130.97400000000002,130.984,130.99400000000003,131.00400000000002,131.014,131.024,131.03400000000002,131.044,131.054,131.06400000000002,131.074,131.084,131.09400000000002,131.104,131.114,131.12400000000002,131.13400000000001,131.144,131.15400000000002,131.16400000000002,131.174,131.18400000000003,131.19400000000002,131.204,131.21400000000003,131.22400000000002,131.234,131.24400000000003,131.25400000000002,131.264,131.274,131.28400000000002,131.294,131.304,131.31400000000002,131.324,131.334,131.34400000000002,131.354,131.364,131.37400000000002,131.38400000000001,131.394,131.40400000000002,131.41400000000002,131.424,131.43400000000003,131.44400000000002,131.454,131.46400000000003,131.47400000000002,131.484,131.49400000000003,131.50400000000002,131.514,131.524,131.53400000000002,131.544,131.554,131.56400000000002,131.574,131.584,131.59400000000002,131.604,131.614,131.62400000000002,131.62400000000002,132.314,132.32399999999998,132.334,132.344,132.35399999999998,132.364,132.374,132.384,132.394,132.404,132.414,132.424,132.434,132.444,132.45399999999998,132.464,132.474,132.48399999999998,132.494,132.504,132.51399999999998,132.524,132.534,132.54399999999998,132.554,132.564,132.57399999999998,132.584,132.594,132.60399999999998,132.614,132.624,132.634,132.644,132.654,132.664,132.674,132.684,132.694,132.70399999999998,132.714,132.724,132.73399999999998,132.744,132.754,132.76399999999998,132.774,132.784,132.79399999999998,132.804,132.814,132.82399999999998,132.834,132.844,132.85399999999998,132.864,132.874,132.884,132.894,132.904,132.914,132.924,132.934,132.944,132.95399999999998,132.964,132.974,132.98399999999998,132.994,133.004,133.01399999999998,133.024,133.034,133.04399999999998,133.054,133.064,133.07399999999998,133.084,133.094,133.10399999999998,133.114,133.124,133.134,133.144,133.154,133.164,133.174,133.184,133.194,133.20399999999998,133.214,133.224,133.23399999999998,133.244,133.254,133.26399999999998,133.274,133.284,133.29399999999998,133.304,133.304,133.994,134.004,134.014,134.024,134.034,134.044,134.054,134.064,134.074,134.084,134.094,134.104,134.114,134.124,134.134,134.144,134.154,134.164,134.174,134.184,134.194,134.204,134.214,134.224,134.234,134.244,134.254,134.264,134.274,134.284,134.294,134.304,134.314,134.324,134.334,134.344,134.354,134.364,134.374,134.384,134.394,134.404,134.414,134.424,134.434,134.444,134.454,134.464,134.474,134.484,134.494,134.504,134.514,134.524,134.534,134.544,134.554,134.564,134.574,134.584,134.594,134.604,134.614,134.624,134.634,134.644,134.654,134.664,134.674,134.684,134.694,134.704,134.714,134.724,134.734,134.744,134.754,134.764,134.774,134.784,134.794,134.804,134.814,134.824,134.834,134.844,134.854,134.864,134.874,134.884,134.894,134.904,134.914,134.924,134.934,134.944,134.954,134.964,134.974,134.984,134.984,135.674,135.684,135.69400000000002,135.704,135.714,135.72400000000002,135.734,135.744,135.75400000000002,135.764,135.774,135.78400000000002,135.794,135.804,135.814,135.824,135.834,135.844,135.854,135.864,135.874,135.88400000000001,135.894,135.904,135.91400000000002,135.924,135.934,135.94400000000002,135.954,135.964,135.97400000000002,135.984,135.994,136.00400000000002,136.014,136.024,136.03400000000002,136.044,136.054,136.064,136.074,136.084,136.094,136.104,136.114,136.124,136.13400000000001,136.144,136.154,136.16400000000002,136.174,136.184,136.19400000000002,136.204,136.214,136.22400000000002,136.234,136.244,136.25400000000002,136.264,136.274,136.28400000000002,136.294,136.304,136.314,136.324,136.334,136.344,136.354,136.364,136.374,136.38400000000001,136.394,136.404,136.41400000000002,136.424,136.434,136.44400000000002,136.454,136.464,136.47400000000002,136.484,136.494,136.50400000000002,136.514,136.524,136.53400000000002,136.544,136.554,136.564,136.574,136.584,136.594,136.604,136.614,136.624,136.63400000000001,136.644,136.654,136.66400000000002,136.66400000000002,137.354,137.364,137.37400000000002,137.38400000000001,137.394,137.40400000000002,137.41400000000002,137.424,137.43400000000003,137.44400000000002,137.454,137.46400000000003,137.47400000000002,137.484,137.494,137.50400000000002,137.514,137.524,137.53400000000002,137.544,137.554,137.56400000000002,137.574,137.584,137.59400000000002,137.604,137.614,137.62400000000002,137.63400000000001,137.644,137.65400000000002,137.66400000000002,137.674,137.68400000000003,137.69400000000002,137.704,137.71400000000003,137.72400000000002,137.734,137.744,137.75400000000002,137.764,137.774,137.78400000000002,137.794,137.804,137.81400000000002,137.824,137.834,137.84400000000002,137.854,137.864,137.87400000000002,137.88400000000001,137.894,137.90400000000002,137.91400000000002,137.924,137.93400000000003,137.94400000000002,137.954,137.96400000000003,137.97400000000002,137.984,137.994,138.00400000000002,138.014,138.024,138.03400000000002,138.044,138.054,138.06400000000002,138.074,138.084,138.09400000000002,138.104,138.114,138.12400000000002,138.13400000000001,138.144,138.15400000000002,138.16400000000002,138.174,138.18400000000003,138.19400000000002,138.204,138.21400000000003,138.22400000000002,138.234,138.244,138.25400000000002,138.264,138.274,138.28400000000002,138.294,138.304,138.31400000000002,138.324,138.334,138.34400000000002,138.34400000000002,139.034,139.04399999999998,139.054,139.064,139.07399999999998,139.084,139.094,139.10399999999998,139.114,139.124,139.134,139.144,139.154,139.164,139.17399999999998,139.184,139.194,139.20399999999998,139.214,139.224,139.23399999999998,139.244,139.254,139.26399999999998,139.274,139.284,139.29399999999998,139.304,139.314,139.32399999999998,139.334,139.344,139.35399999999998,139.364,139.374,139.384,139.394,139.404,139.414,139.42399999999998,139.434,139.444,139.45399999999998,139.464,139.474,139.48399999999998,139.494,139.504,139.51399999999998,139.524,139.534,139.54399999999998,139.554,139.564,139.57399999999998,139.584,139.594,139.60399999999998,139.614,139.624,139.634,139.644,139.654,139.664,139.67399999999998,139.684,139.694,139.70399999999998,139.714,139.724,139.73399999999998,139.744,139.754,139.76399999999998,139.774,139.784,139.79399999999998,139.804,139.814,139.82399999999998,139.834,139.844,139.85399999999998,139.864,139.874,139.884,139.894,139.904,139.914,139.92399999999998,139.934,139.944,139.95399999999998,139.964,139.974,139.98399999999998,139.994,140.004,140.01399999999998,140.024,140.024,140.714,140.724,140.734,140.744,140.754,140.764,140.774,140.784,140.794,140.804,140.814,140.824,140.834,140.844,140.85399999999998,140.864,140.874,140.884,140.894,140.904,140.914,140.924,140.934,140.944,140.954,140.964,140.974,140.984,140.994,141.004,141.014,141.024,141.034,141.044,141.054,141.064,141.074,141.084,141.094,141.10399999999998,141.114,141.124,141.134,141.144,141.154,141.164,141.174,141.184,141.194,141.204,141.214,141.224,141.234,141.244,141.254,141.264,141.274,141.284,141.294,141.304,141.314,141.324,141.334,141.344,141.35399999999998,141.364,141.374,141.384,141.394,141.404,141.414,141.424,141.434,141.444,141.454,141.464,141.474,141.484,141.494,141.504,141.514,141.524,141.534,141.544,141.554,141.564,141.574,141.584,141.594,141.60399999999998,141.614,141.624,141.634,141.644,141.654,141.664,141.674,141.684,141.694,141.704,141.704,142.394,142.404,142.41400000000002,142.424,142.434,142.44400000000002,142.454,142.464,142.47400000000002,142.484,142.494,142.50400000000002,142.514,142.524,142.534,142.544,142.554,142.564,142.574,142.584,142.594,142.604,142.614,142.624,142.63400000000001,142.644,142.654,142.66400000000002,142.674,142.684,142.69400000000002,142.704,142.714,142.72400000000002,142.734,142.744,142.75400000000002,142.764,142.774,142.784,142.794,142.804,142.814,142.824,142.834,142.844,142.854,142.864,142.874,142.88400000000001,142.894,142.904,142.91400000000002,142.924,142.934,142.94400000000002,142.954,142.964,142.97400000000002,142.984,142.994,143.00400000000002,143.014,143.024,143.034,143.044,143.054,143.064,143.074,143.084,143.094,143.104,143.114,143.124,143.13400000000001,143.144,143.154,143.16400000000002,143.174,143.184,143.19400000000002,143.204,143.214,143.22400000000002,143.234,143.244,143.25400000000002,143.264,143.274,143.284,143.294,143.304,143.314,143.324,143.334,143.344,143.354,143.364,143.374,143.38400000000001,143.38400000000001,144.074,144.084,144.09400000000002,144.104,144.114,144.12400000000002,144.13400000000001,144.144,144.15400000000002,144.16400000000002,144.174,144.18400000000003,144.19400000000002,144.204,144.214,144.22400000000002,144.234,144.244,144.25400000000002,144.264,144.274,144.28400000000002,144.294,144.304,144.31400000000002,144.324,144.334,144.34400000000002,144.354,144.364,144.37400000000002,144.38400000000001,144.394,144.40400000000002,144.41400000000002,144.424,144.43400000000003,144.44400000000002,144.454,144.464,144.47400000000002,144.484,144.494,144.50400000000002,144.514,144.524,144.53400000000002,144.544,144.554,144.56400000000002,144.574,144.584,144.59400000000002,144.604,144.614,144.62400000000002,144.63400000000001,144.644,144.65400000000002,144.66400000000002,144.674,144.68400000000003,144.69400000000002,144.704,144.714,144.72400000000002,144.734,144.744,144.75400000000002,144.764,144.774,144.78400000000002,144.794,144.804,144.81400000000002,144.824,144.834,144.84400000000002,144.854,144.864,144.87400000000002,144.88400000000001,144.894,144.90400000000002,144.91400000000002,144.924,144.93400000000003,144.94400000000002,144.954,144.964,144.97400000000002,144.984,144.994,145.00400000000002,145.014,145.024,145.03400000000002,145.044,145.054,145.06400000000002,145.06400000000002,145.754,145.76399999999998,145.774,145.784,145.79399999999998,145.804,145.814,145.82399999999998,145.834,145.844,145.85399999999998,145.864,145.874,145.884,145.89399999999998,145.904,145.914,145.92399999999998,145.934,145.944,145.95399999999998,145.964,145.974,145.98399999999998,145.994,146.004,146.01399999999998,146.024,146.034,146.04399999999998,146.054,146.064,146.07399999999998,146.084,146.094,146.10399999999998,146.114,146.124,146.134,146.14399999999998,146.154,146.164,146.17399999999998,146.184,146.194,146.20399999999998,146.214,146.224,146.23399999999998,146.244,146.254,146.26399999999998,146.274,146.284,146.29399999999998,146.304,146.314,146.32399999999998,146.334,146.344,146.35399999999998,146.364,146.374,146.384,146.39399999999998,146.404,146.414,146.42399999999998,146.434,146.444,146.45399999999998,146.464,146.474,146.48399999999998,146.494,146.504,146.51399999999998,146.524,146.534,146.54399999999998,146.554,146.564,146.57399999999998,146.584,146.594,146.60399999999998,146.614,146.624,146.634,146.64399999999998,146.654,146.664,146.67399999999998,146.684,146.694,146.70399999999998,146.714,146.724,146.73399999999998,146.744,146.744,147.434,147.444,147.454,147.464,147.474,147.484,147.494,147.504,147.514,147.524,147.534,147.544,147.554,147.564,147.57399999999998,147.584,147.594,147.60399999999998,147.614,147.624,147.634,147.644,147.654,147.664,147.674,147.684,147.694,147.704,147.714,147.724,147.734,147.744,147.754,147.764,147.774,147.784,147.794,147.804,147.814,147.82399999999998,147.834,147.844,147.85399999999998,147.864,147.874,147.884,147.894,147.904,147.914,147.924,147.934,147.944,147.954,147.964,147.974,147.984,147.994,148.004,148.014,148.024,148.034,148.044,148.054,148.064,148.07399999999998,148.084,148.094,148.10399999999998,148.114,148.124,148.134,148.144,148.154,148.164,148.174,148.184,148.194,148.204,148.214,148.224,148.234,148.244,148.254,148.264,148.274,148.284,148.294,148.304,148.314,148.32399999999998,148.334,148.344,148.35399999999998,148.364,148.374,148.384,148.394,148.404,148.414,148.424,148.424,149.114,149.124,149.13400000000001,149.144,149.154,149.16400000000002,149.174,149.184,149.19400000000002,149.204,149.214,149.22400000000002,149.234,149.244,149.254,149.264,149.274,149.284,149.294,149.304,149.314,149.324,149.334,149.344,149.354,149.364,149.374,149.38400000000001,149.394,149.404,149.41400000000002,149.424,149.434,149.44400000000002,149.454,149.464,149.47400000000002,149.484,149.494,149.504,149.514,149.524,149.534,149.544,149.554,149.564,149.574,149.584,149.594,149.604,149.614,149.624,149.63400000000001,149.644,149.654,149.66400000000002,149.674,149.684,149.69400000000002,149.704,149.714,149.72400000000002,149.734,149.744,149.754,149.764,149.774,149.784,149.794,149.804,149.814,149.824,149.834,149.844,149.854,149.864,149.874,149.88400000000001,149.894,149.904,149.91400000000002,149.924,149.934,149.94400000000002,149.954,149.964,149.97400000000002,149.984,149.994,150.004,150.014,150.024,150.034,150.044,150.054,150.064,150.074,150.084,150.094,150.104,150.104,150.794,150.804,150.81400000000002,150.824,150.834,150.84400000000002,150.854,150.864,150.87400000000002,150.88400000000001,150.894,150.90400000000002,150.91400000000002,150.924,150.934,150.94400000000002,150.954,150.964,150.97400000000002,150.984,150.994,151.00400000000002,151.014,151.024,151.03400000000002,151.044,151.054,151.06400000000002,151.074,151.084,151.09400000000002,151.104,151.114,151.12400000000002,151.13400000000001,151.144,151.15400000000002,151.16400000000002,151.174,151.184,151.19400000000002,151.204,151.214,151.22400000000002,151.234,151.244,151.25400000000002,151.264,151.274,151.28400000000002,151.294,151.304,151.31400000000002,151.324,151.334,151.34400000000002,151.354,151.364,151.37400000000002,151.38400000000001,151.394,151.40400000000002,151.41400000000002,151.424,151.434,151.44400000000002,151.454,151.464,151.47400000000002,151.484,151.494,151.50400000000002,151.514,151.524,151.53400000000002,151.544,151.554,151.56400000000002,151.574,151.584,151.59400000000002,151.604,151.614,151.62400000000002,151.63400000000001,151.644,151.65400000000002,151.66400000000002,151.674,151.684,151.69400000000002,151.704,151.714,151.72400000000002,151.734,151.744,151.75400000000002,151.764,151.774,151.78400000000002,151.78400000000002,152.474,152.48399999999998,152.494,152.504,152.51399999999998,152.524,152.534,152.54399999999998,152.554,152.564,152.57399999999998,152.584,152.594,152.60399999999998,152.61399999999998,152.624,152.634,152.64399999999998,152.654,152.664,152.67399999999998,152.684,152.694,152.70399999999998,152.714,152.724,152.73399999999998,152.744,152.754,152.76399999999998,152.774,152.784,152.79399999999998,152.804,152.814,152.82399999999998,152.834,152.844,152.85399999999998,152.86399999999998,152.874,152.884,152.89399999999998,152.904,152.914,152.92399999999998,152.934,152.944,152.95399999999998,152.964,152.974,152.98399999999998,152.994,153.004,153.01399999999998,153.024,153.034,153.04399999999998,153.054,153.064,153.07399999999998,153.084,153.094,153.10399999999998,153.11399999999998,153.124,153.134,153.14399999999998,153.154,153.164,153.17399999999998,153.184,153.194,153.20399999999998,153.214,153.224,153.23399999999998,153.244,153.254,153.26399999999998,153.274,153.284,153.29399999999998,153.304,153.314,153.32399999999998,153.334,153.344,153.35399999999998,153.36399999999998,153.374,153.384,153.39399999999998,153.404,153.414,153.42399999999998,153.434,153.444,153.45399999999998,153.464,153.464,154.154,154.164,154.174,154.184,154.194,154.204,154.214,154.224,154.234,154.244,154.254,154.264,154.274,154.284,154.29399999999998,154.304,154.314,154.32399999999998,154.334,154.344,154.35399999999998,154.364,154.374,154.384,154.394,154.404,154.414,154.424,154.434,154.444,154.454,154.464,154.474,154.484,154.494,154.504,154.514,154.524,154.534,154.54399999999998,154.554,154.564,154.57399999999998,154.584,154.594,154.60399999999998,154.614,154.624,154.634,154.644,154.654,154.664,154.674,154.684,154.694,154.704,154.714,154.724,154.734,154.744,154.754,154.764,154.774,154.784,154.79399999999998,154.804,154.814,154.82399999999998,154.834,154.844,154.85399999999998,154.864,154.874,154.884,154.894,154.904,154.914,154.924,154.934,154.944,154.954,154.964,154.974,154.984,154.994,155.004,155.014,155.024,155.034,155.04399999999998,155.054,155.064,155.07399999999998,155.084,155.094,155.10399999999998,155.114,155.124,155.134,155.144,155.144,155.834,155.844,155.854,155.864,155.874,155.88400000000001,155.894,155.904,155.91400000000002,155.924,155.934,155.94400000000002,155.954,155.964,155.974,155.984,155.994,156.004,156.014,156.024,156.034,156.044,156.054,156.064,156.074,156.084,156.094,156.104,156.114,156.124,156.13400000000001,156.144,156.154,156.16400000000002,156.174,156.184,156.19400000000002,156.204,156.214,156.224,156.234,156.244,156.254,156.264,156.274,156.284,156.294,156.304,156.314,156.324,156.334,156.344,156.354,156.364,156.374,156.38400000000001,156.394,156.404,156.41400000000002,156.424,156.434,156.44400000000002,156.454,156.464,156.474,156.484,156.494,156.504,156.514,156.524,156.534,156.544,156.554,156.564,156.574,156.584,156.594,156.604,156.614,156.624,156.63400000000001,156.644,156.654,156.66400000000002,156.674,156.684,156.69400000000002,156.704,156.714,156.724,156.734,156.744,156.754,156.764,156.774,156.784,156.794,156.804,156.814,156.824,156.824,157.514,157.524,157.53400000000002,157.544,157.554,157.56400000000002,157.574,157.584,157.59400000000002,157.604,157.614,157.62400000000002,157.63400000000001,157.644,157.654,157.66400000000002,157.674,157.684,157.69400000000002,157.704,157.714,157.72400000000002,157.734,157.744,157.75400000000002,157.764,157.774,157.78400000000002,157.794,157.804,157.81400000000002,157.824,157.834,157.84400000000002,157.854,157.864,157.87400000000002,157.88400000000001,157.894,157.904,157.91400000000002,157.924,157.934,157.94400000000002,157.954,157.964,157.97400000000002,157.984,157.994,158.00400000000002,158.014,158.024,158.03400000000002,158.044,158.054,158.06400000000002,158.074,158.084,158.09400000000002,158.104,158.114,158.12400000000002,158.13400000000001,158.144,158.154,158.16400000000002,158.174,158.184,158.19400000000002,158.204,158.214,158.22400000000002,158.234,158.244,158.25400000000002,158.264,158.274,158.28400000000002,158.294,158.304,158.31400000000002,158.324,158.334,158.34400000000002,158.354,158.364,158.37400000000002,158.38400000000001,158.394,158.404,158.41400000000002,158.424,158.434,158.44400000000002,158.454,158.464,158.47400000000002,158.484,158.494,158.50400000000002,158.50400000000002,159.19400000000002,159.204,159.21400000000003,159.22400000000002,159.234,159.24400000000003,159.25400000000002,159.264,159.27400000000003,159.28400000000002,159.294,159.30400000000003,159.31400000000002,159.324,159.334,159.34400000000002,159.354,159.364,159.37400000000002,159.38400000000001,159.394,159.40400000000002,159.41400000000002,159.424,159.43400000000003,159.44400000000002,159.454,159.46400000000003,159.47400000000002,159.484,159.49400000000003,159.50400000000002,159.514,159.52400000000003,159.53400000000002,159.544,159.55400000000003,159.56400000000002,159.574,159.584,159.59400000000002,159.604,159.614,159.62400000000002,159.63400000000001,159.644,159.65400000000002,159.66400000000002,159.674,159.68400000000003,159.69400000000002,159.704,159.71400000000003,159.72400000000002,159.734,159.74400000000003,159.75400000000002,159.764,159.77400000000003,159.78400000000002,159.794,159.80400000000003,159.81400000000002,159.824,159.834,159.84400000000002,159.854,159.864,159.87400000000002,159.88400000000001,159.894,159.90400000000002,159.91400000000002,159.924,159.93400000000003,159.94400000000002,159.954,159.96400000000003,159.97400000000002,159.984,159.99400000000003,160.00400000000002,160.014,160.02400000000003,160.03400000000002,160.044,160.05400000000003,160.06400000000002,160.074,160.084,160.09400000000002,160.104,160.114,160.12400000000002,160.13400000000001,160.144,160.15400000000002,160.16400000000002,160.174,160.18400000000003,160.18400000000003,160.874,160.884,160.894,160.904,160.914,160.924,160.934,160.944,160.954,160.964,160.974,160.984,160.994,161.004,161.01399999999998,161.024,161.034,161.04399999999998,161.054,161.064,161.07399999999998,161.084,161.094,161.10399999999998,161.114,161.124,161.134,161.144,161.154,161.164,161.174,161.184,161.194,161.204,161.214,161.224,161.234,161.244,161.254,161.26399999999998,161.274,161.284,161.29399999999998,161.304,161.314,161.32399999999998,161.334,161.344,161.35399999999998,161.364,161.374,161.384,161.394,161.404,161.414,161.424,161.434,161.444,161.454,161.464,161.474,161.484,161.494,161.504,161.51399999999998,161.524,161.534,161.54399999999998,161.554,161.564,161.57399999999998,161.584,161.594,161.60399999999998,161.614,161.624,161.634,161.644,161.654,161.664,161.674,161.684,161.694,161.704,161.714,161.724,161.734,161.744,161.754,161.76399999999998,161.774,161.784,161.79399999999998,161.804,161.814,161.82399999999998,161.834,161.844,161.85399999999998,161.864,161.864,162.554,162.564,162.574,162.584,162.594,162.604,162.614,162.624,162.63400000000001,162.644,162.654,162.66400000000002,162.674,162.684,162.694,162.704,162.714,162.724,162.734,162.744,162.754,162.764,162.774,162.784,162.794,162.804,162.814,162.824,162.834,162.844,162.854,162.864,162.874,162.88400000000001,162.894,162.904,162.91400000000002,162.924,162.934,162.944,162.954,162.964,162.974,162.984,162.994,163.004,163.014,163.024,163.034,163.044,163.054,163.064,163.074,163.084,163.094,163.104,163.114,163.124,163.13400000000001,163.144,163.154,163.16400000000002,163.174,163.184,163.194,163.204,163.214,163.224,163.234,163.244,163.254,163.264,163.274,163.284,163.294,163.304,163.314,163.324,163.334,163.344,163.354,163.364,163.374,163.38400000000001,163.394,163.404,163.41400000000002,163.424,163.434,163.444,163.454,163.464,163.474,163.484,163.494,163.504,163.514,163.524,163.534,163.544,163.544,164.234,164.244,164.25400000000002,164.264,164.274,164.28400000000002,164.294,164.304,164.31400000000002,164.324,164.334,164.34400000000002,164.354,164.364,164.374,164.38400000000001,164.394,164.404,164.41400000000002,164.424,164.434,164.44400000000002,164.454,164.464,164.47400000000002,164.484,164.494,164.50400000000002,164.514,164.524,164.53400000000002,164.544,164.554,164.56400000000002,164.574,164.584,164.59400000000002,164.604,164.614,164.624,164.63400000000001,164.644,164.654,164.66400000000002,164.674,164.684,164.69400000000002,164.704,164.714,164.72400000000002,164.734,164.744,164.75400000000002,164.764,164.774,164.78400000000002,164.794,164.804,164.81400000000002,164.824,164.834,164.84400000000002,164.854,164.864,164.874,164.88400000000001,164.894,164.904,164.91400000000002,164.924,164.934,164.94400000000002,164.954,164.964,164.97400000000002,164.984,164.994,165.00400000000002,165.014,165.024,165.03400000000002,165.044,165.054,165.06400000000002,165.074,165.084,165.09400000000002,165.104,165.114,165.124,165.13400000000001,165.144,165.154,165.16400000000002,165.174,165.184,165.19400000000002,165.204,165.214,165.22400000000002,165.22400000000002,165.91400000000002,165.924,165.93400000000003,165.94400000000002,165.954,165.96400000000003,165.97400000000002,165.984,165.99400000000003,166.00400000000002,166.014,166.02400000000003,166.03400000000002,166.044,166.054,166.06400000000002,166.074,166.084,166.09400000000002,166.104,166.114,166.12400000000002,166.13400000000001,166.144,166.15400000000002,166.16400000000002,166.174,166.18400000000003,166.19400000000002,166.204,166.21400000000003,166.22400000000002,166.234,166.24400000000003,166.25400000000002,166.264,166.27400000000003,166.28400000000002,166.294,166.304,166.31400000000002,166.324,166.334,166.34400000000002,166.354,166.364,166.37400000000002,166.38400000000001,166.394,166.40400000000002,166.41400000000002,166.424,166.43400000000003,166.44400000000002,166.454,166.46400000000003,166.47400000000002,166.484,166.49400000000003,166.50400000000002,166.514,166.52400000000003,166.53400000000002,166.544,166.554,166.56400000000002,166.574,166.584,166.59400000000002,166.604,166.614,166.62400000000002,166.63400000000001,166.644,166.65400000000002,166.66400000000002,166.674,166.68400000000003,166.69400000000002,166.704,166.71400000000003,166.72400000000002,166.734,166.74400000000003,166.75400000000002,166.764,166.77400000000003,166.78400000000002,166.794,166.804,166.81400000000002,166.824,166.834,166.84400000000002,166.854,166.864,166.87400000000002,166.88400000000001,166.894,166.90400000000002,166.90400000000002,167.594,167.60399999999998,167.614,167.624,167.634,167.644,167.654,167.664,167.674,167.684,167.694,167.704,167.714,167.724,167.73399999999998,167.744,167.754,167.76399999999998,167.774,167.784,167.79399999999998,167.804,167.814,167.82399999999998,167.834,167.844,167.85399999999998,167.864,167.874,167.884,167.894,167.904,167.914,167.924,167.934,167.944,167.954,167.964,167.974,167.98399999999998,167.994,168.004,168.01399999999998,168.024,168.034,168.04399999999998,168.054,168.064,168.07399999999998,168.084,168.094,168.10399999999998,168.114,168.124,168.134,168.144,168.154,168.164,168.174,168.184,168.194,168.204,168.214,168.224,168.23399999999998,168.244,168.254,168.26399999999998,168.274,168.284,168.29399999999998,168.304,168.314,168.32399999999998,168.334,168.344,168.35399999999998,168.364,168.374,168.384,168.394,168.404,168.414,168.424,168.434,168.444,168.454,168.464,168.474,168.48399999999998,168.494,168.504,168.51399999999998,168.524,168.534,168.54399999999998,168.554,168.564,168.57399999999998,168.584,168.584,169.274,169.284,169.294,169.304,169.314,169.324,169.334,169.344,169.354,169.364,169.374,169.38400000000001,169.394,169.404,169.414,169.424,169.434,169.444,169.454,169.464,169.474,169.484,169.494,169.504,169.514,169.524,169.534,169.544,169.554,169.564,169.574,169.584,169.594,169.604,169.614,169.624,169.63400000000001,169.644,169.654,169.664,169.674,169.684,169.694,169.704,169.714,169.724,169.734,169.744,169.754,169.764,169.774,169.784,169.794,169.804,169.814,169.824,169.834,169.844,169.854,169.864,169.874,169.88400000000001,169.894,169.904,169.914,169.924,169.934,169.944,169.954,169.964,169.974,169.984,169.994,170.004,170.014,170.024,170.034,170.044,170.054,170.064,170.074,170.084,170.094,170.104,170.114,170.124,170.13400000000001,170.144,170.154,170.164,170.174,170.184,170.194,170.204,170.214,170.224,170.234,170.244,170.254,170.264,170.264,170.954,170.964,170.97400000000002,170.984,170.994,171.00400000000002,171.014,171.024,171.03400000000002,171.044,171.054,171.06400000000002,171.074,171.084,171.094,171.104,171.114,171.124,171.13400000000001,171.144,171.154,171.16400000000002,171.174,171.184,171.19400000000002,171.204,171.214,171.22400000000002,171.234,171.244,171.25400000000002,171.264,171.274,171.28400000000002,171.294,171.304,171.31400000000002,171.324,171.334,171.344,171.354,171.364,171.374,171.38400000000001,171.394,171.404,171.41400000000002,171.424,171.434,171.44400000000002,171.454,171.464,171.47400000000002,171.484,171.494,171.50400000000002,171.514,171.524,171.53400000000002,171.544,171.554,171.56400000000002,171.574,171.584,171.594,171.604,171.614,171.624,171.63400000000001,171.644,171.654,171.66400000000002,171.674,171.684,171.69400000000002,171.704,171.714,171.72400000000002,171.734,171.744,171.75400000000002,171.764,171.774,171.78400000000002,171.794,171.804,171.81400000000002,171.824,171.834,171.844,171.854,171.864,171.874,171.88400000000001,171.894,171.904,171.91400000000002,171.924,171.934,171.94400000000002,171.94400000000002,172.63400000000001,172.644,172.65400000000002,172.66400000000002,172.674,172.68400000000003,172.69400000000002,172.704,172.71400000000003,172.72400000000002,172.734,172.74400000000003,172.75400000000002,172.764,172.774,172.78400000000002,172.794,172.804,172.81400000000002,172.824,172.834,172.84400000000002,172.854,172.864,172.87400000000002,172.88400000000001,172.894,172.90400000000002,172.91400000000002,172.924,172.93400000000003,172.94400000000002,172.954,172.96400000000003,172.97400000000002,172.984,172.99400000000003,173.00400000000002,173.014,173.024,173.03400000000002,173.044,173.054,173.06400000000002,173.074,173.084,173.09400000000002,173.104,173.114,173.12400000000002,173.13400000000001,173.144,173.15400000000002,173.16400000000002,173.174,173.18400000000003,173.19400000000002,173.204,173.21400000000003,173.22400000000002,173.234,173.24400000000003,173.25400000000002,173.264,173.274,173.28400000000002,173.294,173.304,173.31400000000002,173.324,173.334,173.34400000000002,173.354,173.364,173.37400000000002,173.38400000000001,173.394,173.40400000000002,173.41400000000002,173.424,173.43400000000003,173.44400000000002,173.454,173.46400000000003,173.47400000000002,173.484,173.49400000000003,173.50400000000002,173.514,173.524,173.53400000000002,173.544,173.554,173.56400000000002,173.574,173.584,173.59400000000002,173.604,173.614,173.62400000000002,173.62400000000002,174.314,174.32399999999998,174.334,174.344,174.35399999999998,174.364,174.374,174.384,174.394,174.404,174.414,174.424,174.434,174.444,174.45399999999998,174.464,174.474,174.48399999999998,174.494,174.504,174.51399999999998,174.524,174.534,174.54399999999998,174.554,174.564,174.57399999999998,174.584,174.594,174.60399999999998,174.614,174.624,174.634,174.644,174.654,174.664,174.674,174.684,174.694,174.70399999999998,174.714,174.724,174.73399999999998,174.744,174.754,174.76399999999998,174.774,174.784,174.79399999999998,174.804,174.814,174.82399999999998,174.834,174.844,174.85399999999998,174.864,174.874,174.884,174.894,174.904,174.914,174.924,174.934,174.944,174.95399999999998,174.964,174.974,174.98399999999998,174.994,175.004,175.01399999999998,175.024,175.034,175.04399999999998,175.054,175.064,175.07399999999998,175.084,175.094,175.10399999999998,175.114,175.124,175.134,175.144,175.154,175.164,175.174,175.184,175.194,175.20399999999998,175.214,175.224,175.23399999999998,175.244,175.254,175.26399999999998,175.274,175.284,175.29399999999998,175.304,175.304,175.994,176.004,176.014,176.024,176.034,176.044,176.054,176.064,176.074,176.084,176.094,176.104,176.114,176.124,176.134,176.144,176.154,176.164,176.174,176.184,176.194,176.204,176.214,176.224,176.234,176.244,176.254,176.264,176.274,176.284,176.294,176.304,176.314,176.324,176.334,176.344,176.354,176.364,176.374,176.384,176.394,176.404,176.414,176.424,176.434,176.444,176.454,176.464,176.474,176.484,176.494,176.504,176.514,176.524,176.534,176.544,176.554,176.564,176.574,176.584,176.594,176.604,176.614,176.624,176.634,176.644,176.654,176.664,176.674,176.684,176.694,176.704,176.714,176.724,176.734,176.744,176.754,176.764,176.774,176.784,176.794,176.804,176.814,176.824,176.834,176.844,176.854,176.864,176.874,176.884,176.894,176.904,176.914,176.924,176.934,176.944,176.954,176.964,176.974,176.984,176.984,177.674,177.684,177.69400000000002,177.704,177.714,177.72400000000002,177.734,177.744,177.75400000000002,177.764,177.774,177.78400000000002,177.794,177.804,177.814,177.824,177.834,177.844,177.854,177.864,177.874,177.88400000000001,177.894,177.904,177.91400000000002,177.924,177.934,177.94400000000002,177.954,177.964,177.97400000000002,177.984,177.994,178.00400000000002,178.014,178.024,178.03400000000002,178.044,178.054,178.064,178.074,178.084,178.094,178.104,178.114,178.124,178.13400000000001,178.144,178.154,178.16400000000002,178.174,178.184,178.19400000000002,178.204,178.214,178.22400000000002,178.234,178.244,178.25400000000002,178.264,178.274,178.28400000000002,178.294,178.304,178.314,178.324,178.334,178.344,178.354,178.364,178.374,178.38400000000001,178.394,178.404,178.41400000000002,178.424,178.434,178.44400000000002,178.454,178.464,178.47400000000002,178.484,178.494,178.50400000000002,178.514,178.524,178.53400000000002,178.544,178.554,178.564,178.574,178.584,178.594,178.604,178.614,178.624,178.63400000000001,178.644,178.654,178.66400000000002,178.66400000000002,179.354,179.364,179.37400000000002,179.38400000000001,179.394,179.40400000000002,179.41400000000002,179.424,179.43400000000003,179.44400000000002,179.454,179.46400000000003,179.47400000000002,179.484,179.494,179.50400000000002,179.514,179.524,179.53400000000002,179.544,179.554,179.56400000000002,179.574,179.584,179.59400000000002,179.604,179.614,179.62400000000002,179.63400000000001,179.644,179.65400000000002,179.66400000000002,179.674,179.68400000000003,179.69400000000002,179.704,179.71400000000003,179.72400000000002,179.734,179.744,179.75400000000002,179.764,179.774,179.78400000000002,179.794,179.804,179.81400000000002,179.824,179.834,179.84400000000002,179.854,179.864,179.87400000000002,179.88400000000001,179.894,179.90400000000002,179.91400000000002,179.924,179.93400000000003,179.94400000000002,179.954,179.96400000000003,179.97400000000002,179.984,179.994,180.00400000000002,180.014,180.024,180.03400000000002,180.044,180.054,180.06400000000002,180.074,180.084,180.09400000000002,180.104,180.114,180.12400000000002,180.13400000000001,180.144,180.15400000000002,180.16400000000002,180.174,180.18400000000003,180.19400000000002,180.204,180.21400000000003,180.22400000000002,180.234,180.244,180.25400000000002,180.264,180.274,180.28400000000002,180.294,180.304,180.31400000000002,180.324,180.334,180.34400000000002,180.34400000000002,181.034,181.04399999999998,181.054,181.064,181.07399999999998,181.084,181.094,181.10399999999998,181.114,181.124,181.134,181.144,181.154,181.164,181.17399999999998,181.184,181.194,181.20399999999998,181.214,181.224,181.23399999999998,181.244,181.254,181.26399999999998,181.274,181.284,181.29399999999998,181.304,181.314,181.32399999999998,181.334,181.344,181.35399999999998,181.364,181.374,181.384,181.394,181.404,181.414,181.42399999999998,181.434,181.444,181.45399999999998,181.464,181.474,181.48399999999998,181.494,181.504,181.51399999999998,181.524,181.534,181.54399999999998,181.554,181.564,181.57399999999998,181.584,181.594,181.60399999999998,181.614,181.624,181.634,181.644,181.654,181.664,181.67399999999998,181.684,181.694,181.70399999999998,181.714,181.724,181.73399999999998,181.744,181.754,181.76399999999998,181.774,181.784,181.79399999999998,181.804,181.814,181.82399999999998,181.834,181.844,181.85399999999998,181.864,181.874,181.884,181.894,181.904,181.914,181.92399999999998,181.934,181.944,181.95399999999998,181.964,181.974,181.98399999999998,181.994,182.004,182.01399999999998,182.024,182.024,182.714,182.724,182.734,182.744,182.754,182.764,182.774,182.784,182.794,182.804,182.814,182.824,182.834,182.844,182.85399999999998,182.864,182.874,182.884,182.894,182.904,182.914,182.924,182.934,182.944,182.954,182.964,182.974,182.984,182.994,183.004,183.014,183.024,183.034,183.044,183.054,183.064,183.074,183.084,183.094,183.10399999999998,183.114,183.124,183.134,183.144,183.154,183.164,183.174,183.184,183.194,183.204,183.214,183.224,183.234,183.244,183.254,183.264,183.274,183.284,183.294,183.304,183.314,183.324,183.334,183.344,183.35399999999998,183.364,183.374,183.384,183.394,183.404,183.414,183.424,183.434,183.444,183.454,183.464,183.474,183.484,183.494,183.504,183.514,183.524,183.534,183.544,183.554,183.564,183.574,183.584,183.594,183.60399999999998,183.614,183.624,183.634,183.644,183.654,183.664,183.674,183.684,183.694,183.704,183.704]},{"y":[6.147875,14.317283,0.46649826,-6.3445215,-17.454582,-9.41521,24.798124,14.722193,-14.146959,5.154916,16.919144,-0.084319115,1.324496,4.0388327,6.430748,16.67659,-6.738647,-25.382551,4.434679,9.384697,-11.668483,5.3244677,14.728693,-7.497036,-8.292452,0.37838078,-3.2001677,10.320335,27.682106,10.806203,-10.976414,-0.73317385,3.9675007,-10.1345415,1.4192579,15.992117,2.230914,-2.7343016,0.57421064,-0.36733484,6.728707,-5.2939715,-21.028965,0.32644606,10.908236,-4.693849,4.9942417,22.393944,13.558561,5.562785,15.374765,22.071962,18.209126,19.538767,21.235657,6.427927,-5.5059514,4.5139093,9.462585,-1.8431654,0.12730742,3.3526893,-15.560072,-13.103176,10.447115,-0.54452753,-11.272364,8.448623,10.182276,6.717284,23.293669,23.745707,8.572516,-0.35403442,-5.2748594,-4.5742273,-3.351754,-1.0374749,7.4205017,6.1872873,-4.634473,-5.9952326,0.43484044,1.6588888,-1.6930599,-2.0716228,-1.2271795,-0.17669797,-0.2680514,-3.0457482,6.2830596,16.223053,4.757743,1.1156279,7.033413,-3.6041813,-4.212293,5.476809,2.404974,3.9563284,null,4.621874,7.1818223,5.19718,0.27066946,8.135551,8.0407095,-7.421975,-7.6465845,-7.211852,-11.699774,4.3808928,14.625618,2.8515956,-2.7809412,0.7144785,2.195131,-1.0509851,-2.666452,3.2720685,-0.35735476,-14.754749,-16.05639,-4.579807,4.268283,2.9464614,-5.5857763,-8.402049,-4.846875,-6.845762,-13.030857,-10.864216,-2.846614,-1.0481353,-1.3115008,3.1003885,12.137026,16.586113,-1.405426,-17.05658,-6.395441,-8.505557,-16.89792,1.5860529,3.9661522,-16.429855,-20.122877,-19.154917,-13.754417,-0.93376493,-11.002001,-26.221567,-13.975698,0.9407635,-6.9217706,-17.786545,-10.847326,-4.563916,-9.242975,-8.2557125,-8.852238,-15.711373,-13.8721485,-7.6890306,-1.5431128,4.132936,8.466385,19.341675,18.402733,-1.4664431,-5.3901186,0.84845686,-10.389875,-18.647001,-6.6832776,6.173893,1.4224404,-13.168097,-15.03851,-4.918664,-0.4896531,1.358639,7.418927,6.70539,-0.5493202,-3.1842327,-9.718457,-19.267994,-11.538685,1.1316764,-0.041687727,-0.79064226,2.090003,2.4713526,8.285835,14.595367,9.2694845,-5.1495333,-12.682348,-2.4290266,6.778612,null,-7.624702,-8.271982,8.790487,14.732913,2.3827052,1.3302045,-7.0080853,-15.724757,10.067978,13.621687,-17.532934,-7.559608,15.151429,0.8467922,-0.45167828,15.345634,3.5378942,-12.389605,-9.7518635,-5.993714,6.859697,18.928661,1.8833351,-7.2339263,6.4221873,-1.6289701,-5.580224,16.768875,9.690218,-11.570322,-2.9149275,-6.0768604,-21.178844,-4.083432,4.313461,-16.02294,-2.2573323,30.77353,22.182697,7.080286,15.602771,12.99079,0.10128021,-3.3969555,2.0421362,9.274994,2.7479734,-1.0210352,11.946241,10.545679,-0.4721396,-1.7230821,-0.9919863,10.0984125,14.870342,4.0225186,11.273905,10.527254,-9.377843,2.7649279,12.402193,-5.1587906,10.772142,23.506126,-18.645874,-39.442253,-17.999619,-14.076138,-9.811303,9.79396,7.5417237,-1.6930268,-0.8262129,-5.3186297,-1.1047525,8.89663,11.688849,14.273569,-7.211654,-31.545212,-8.993701,9.070118,-1.9785001,6.1307507,13.928675,-0.7614217,-15.599644,-15.002632,13.824553,23.457623,-17.225462,-26.025932,5.490476,2.1028614,-12.140771,0.7942257,16.12381,12.988075,-17.2102,-30.47411,null,-5.541095,2.6401663,7.298815,-2.319714,-18.562872,-15.304567,9.940584,7.9565454,-9.278788,3.649595,4.0974426,-16.911812,-6.361342,4.5070972,-7.210641,-0.6885519,5.1733932,-8.312889,-12.392869,-4.0260396,12.243643,16.65554,-4.1753154,-8.956013,-0.09533882,-7.096488,-3.2193053,5.7767115,1.2126422,7.105266,7.254039,-6.093452,6.908389,26.425129,17.123074,7.2735434,8.824818,0.6132128,-8.791031,-4.459936,3.6263943,5.04262,-4.0627003,-15.608001,-11.364278,-0.22982693,0.70000386,0.59189796,2.7352982,3.6394107,5.7635627,2.8040526,-2.2380567,-1.7418547,0.70073223,3.8087606,-1.6730409,-15.323996,-16.52725,-10.407428,-8.073009,-2.6042585,-2.7260284,-6.9929504,5.815749,19.18659,4.1397486,-14.273407,-7.062089,0.23496485,-0.676877,16.887547,31.476276,15.611201,-3.8528857,-7.3808928,-1.5013871,1.6499465,-4.6164627,1.4052327,18.873158,7.564453,-17.16565,-6.229867,12.603565,-1.8392706,-7.9983487,9.848446,3.515911,-6.6837215,3.8166113,-7.2661314,-13.785355,10.646074,4.1045656,-21.043383,-12.56732,-2.136425,-7.3809423,-5.671614,null,4.530716,5.465006,6.962041,2.8297539,-5.3337092,6.457279,12.694559,-4.4240856,-8.963149,-3.5232997,-7.4464655,-7.0954394,-4.5110335,-11.818895,-11.780537,7.8949027,10.746883,-8.409611,3.1488638,13.681847,-16.491714,-13.7144165,12.770704,-2.57896,-4.5631022,11.120226,-7.9976826,-14.45606,-1.9930899,-10.195506,-3.3560667,14.8725815,9.267617,5.913931,3.2806466,-11.43507,-7.3420296,3.336666,0.46091866,9.4704275,16.10878,5.161886,7.0443835,8.528245,-5.1873126,-4.161031,0.99395573,-6.5137987,-9.434765,-9.883591,-7.227421,-2.7353187,-11.638853,-12.4635725,0.5661651,0.32544136,4.485479,19.827929,10.161602,-10.964578,-6.0228567,6.554053,1.7860227,-4.0160356,-2.9797049,-3.7380247,3.748086,11.762161,3.4683704,2.0901113,1.9979601,-26.483805,-37.58151,-0.68521667,24.267033,15.857897,7.2279215,-4.124174,-17.637499,-13.129975,-3.008544,2.7240686,9.339799,-0.31679296,-20.310299,-15.7899065,6.8667536,12.270584,-6.8709946,-15.423475,4.8310165,10.787852,-5.355528,-1.3866363,8.047853,3.167438,0.51076746,-8.510268,-16.020306,-4.3198824,null,-5.8519616,2.5245285,9.986036,-0.6547432,-11.167217,1.0981321,5.823931,-3.3237438,-5.481137,-3.5112739,7.1763315,11.420689,-10.647679,-21.89325,-3.2690399,12.109398,7.6508894,-2.3916192,0.5959525,3.8550382,-6.9269247,0.70328903,20.02487,-1.2605968,-30.989563,-17.119614,-0.10106039,-1.3726606,15.011322,29.099962,13.197142,3.9254463,4.3446474,-11.654918,-12.305912,9.312386,10.112715,6.5014896,17.3652,4.857645,-12.520564,0.14014149,0.7538538,-8.961061,10.542726,20.691618,9.319631,13.668587,19.504194,21.178064,22.83892,8.161428,6.4929786,20.148027,12.599484,7.5360937,6.9419565,-6.2212315,0.8476348,8.369388,-7.1275682,-3.0223303,8.220934,1.3550856,1.3762674,3.176262,6.253813,16.34444,5.5653634,-0.25426197,22.365017,15.056822,-12.667116,-2.327013,5.1989317,-12.101765,-3.9649887,16.104612,13.172267,-3.192111,-20.85239,-15.54319,7.103147,7.9865646,1.0111151,-1.064401,-5.069159,6.956274,10.066175,-5.0558476,6.1992106,16.583263,-2.2550457,-12.968986,-8.500983,6.4958725,11.393293,-17.621796,-21.59624,13.677586,null,0.5885261,2.6744215,-0.21387172,-13.440694,-10.810608,10.609602,6.2574906,-9.703499,-2.702272,-3.778719,-15.092986,-7.9188557,1.4764719,4.2445126,5.767067,-5.8902016,-19.571806,-11.47102,8.129188,13.879545,5.4391227,-2.1980531,-9.7428,-18.55586,-11.206675,14.37371,23.309467,2.9904237,-5.8124685,1.7101738,-9.747981,-19.241192,-5.6089163,8.052092,20.239496,19.141214,-4.1694775,-11.561413,-4.87932,-6.6543455,-3.436615,-3.4288082,-6.6457715,1.6271076,-0.20202923,-8.532845,-2.7662094,-1.7948089,-9.394246,-6.9732003,2.616388,1.1504121,-13.938093,-15.148534,0.34211063,1.0904493,-7.006777,-3.7679434,2.4927626,3.9267664,-5.8020573,-22.739164,-20.551441,3.7775784,21.4247,19.872051,14.264057,10.975173,-2.7860847,-20.14612,-20.213215,-8.904564,2.8284817,12.663569,6.6305666,-9.252373,-9.180262,-1.0236182,1.2362027,7.5297947,9.746481,-2.446311,-9.846054,-3.1451762,4.0722013,0.82106996,-7.398772,-4.8925114,3.786092,4.7633734,2.4727225,1.0323839,2.295753,4.9062595,1.2837954,0.87813616,3.8336601,-2.5076325,-5.53378,-1.9428735,null,3.19185,-12.278317,-6.337291,6.855879,3.798422,-4.659602,-11.574847,-5.551041,7.315304,-7.486579,-19.35591,5.222354,16.564022,3.5196843,-2.4202938,-7.702746,-1.232441,19.329756,14.57804,-9.7504225,-21.27229,-15.366394,0.42937016,9.3278885,17.398693,25.828094,-1.2296815,-27.314877,-1.8271105,14.808521,4.888274,10.643691,-1.3311172,-29.232924,-23.390015,-4.8962817,9.748729,24.329159,20.28236,10.208784,4.9998493,-0.38128185,5.072695,4.926038,-5.621745,-3.1280527,-6.7565036,-16.152515,-1.4252529,6.0797358,-8.115837,-3.4590664,8.062387,1.4052706,-0.81715155,-1.8753719,-8.321217,2.5014625,6.594986,-5.7391787,8.696581,21.514767,1.2013032,-7.089137,-5.1300144,-8.249738,-0.28707504,-4.713137,-10.496875,5.183547,3.210578,-3.0550842,5.554072,-10.627008,-24.77205,-5.09669,11.414728,13.280973,3.8113868,-10.610444,-7.1800914,-0.19208026,-4.4178996,-0.6473131,10.676655,7.2032824,-11.795893,-16.644676,-3.6583722,0.4861977,1.3265786,-1.3454988,-10.471223,6.9685144,16.36773,-17.7286,-14.631221,19.178658,-5.8653755,-27.567186,null,-5.7972407,-20.959642,-3.1477385,-1.4322243,-5.131977,-6.0471935,-11.406882,1.1488502,6.0816793,-10.671543,0.017385006,22.16829,12.7374115,-3.515952,-2.5537305,6.8451757,6.08585,-5.948724,-7.2842073,-2.9284706,-4.7185426,-2.0462635,2.5525239,1.8671885,-5.378848,-8.8688,4.605267,11.72796,5.2052364,0.3096385,-14.779829,-14.036858,12.790732,8.621086,-5.7124457,6.0443554,1.6210861,-6.150482,3.5239336,-3.527669,-8.401838,1.6059723,-1.689868,1.0806084,16.088161,17.192347,12.944338,5.080174,-4.6680727,12.32249,29.558804,8.229073,-2.0675464,20.520699,19.423443,2.6420517,8.012823,8.219498,-4.233094,-5.9483967,0.6129284,9.271513,10.157118,6.6371355,14.016279,13.791063,4.8521247,2.979282,-9.012108,-17.182049,-6.042507,-4.886611,-6.0201836,-1.7252234,-9.174034,-3.90799,10.030245,5.78241,7.6674604,7.3629985,-12.631593,-10.800017,10.873999,14.5319195,3.8899193,-9.8017025,-10.053177,2.7198124,-3.9939613,-10.924774,10.348749,20.110838,3.4157732,-7.631526,-7.3471603,-3.934089,0.74762654,4.034085,2.355938,-5.4686446,null,-9.773262,-12.74275,-2.8488686,3.1637328,1.1292608,4.138172,10.761582,3.4793391,-6.09943,-4.3418436,-0.63134277,5.2570353,5.1854167,-5.181614,-2.8913958,0.28271723,-14.202382,-14.204774,4.5772905,10.788278,5.8359494,-1.5881624,-12.196904,-17.779167,-10.402904,8.043665,15.710606,-0.55038357,-17.95454,-22.20676,-15.551029,0.5581436,6.7670007,-2.5597472,-5.399909,-5.1565347,-18.37846,-28.22757,-13.158253,5.2170825,-0.9709492,-10.848813,-7.167472,-7.5302124,-9.029682,-8.357143,-20.319317,-29.121624,-20.34473,-13.869335,-16.050512,-12.039128,-2.5560863,-4.9332376,-13.19467,-5.0041943,7.0170712,5.3845325,1.9773856,3.6751108,9.000446,8.051895,-5.3143816,-6.565978,3.8636997,-1.6924571,-10.769678,-7.6350126,-0.7631607,5.3369865,2.8039203,-5.6008043,-5.705471,0.65731716,7.0143914,6.9541683,-3.9743977,-15.800089,-15.982494,-5.6254487,-0.66134167,-1.8002913,2.3745816,-4.275318,-18.24485,-7.1855597,12.554736,10.999804,-4.557624,-14.7650795,-3.397407,11.340428,5.7885256,0.38744903,4.371162,7.9107504,7.507168,-1.9048929,3.5736876,23.013458,null,-2.3563733,-7.382059,-5.846761,1.2820437,0.29438162,5.292754,6.279226,-3.2595506,3.5627718,18.085726,12.3516445,-5.4940057,-11.020031,2.992978,13.326349,7.597514,12.645339,22.445284,0.6353798,-19.869545,1.4897318,20.321135,14.36644,11.466476,-2.7391686,-20.252392,-6.2228184,4.295114,-1.4307327,7.9239926,8.226312,-1.2506242,8.357379,12.20323,5.297622,-0.6395235,-13.814574,-10.719495,-1.2253222,-16.709248,-17.507732,2.3270276,3.7605686,4.3684053,6.2238007,-6.288904,-3.3654478,11.777202,9.138174,-0.47425604,-3.66888,3.5688787,14.505539,6.62465,-4.770571,1.2408228,-0.76372814,-13.15724,-11.9486885,-4.2043247,2.0507278,8.534878,12.196695,14.826239,6.9258065,-9.600946,-11.361353,-3.915655,9.317585,32.45502,27.948135,-0.48004436,-3.8567266,0.26648235,-9.355416,-8.924395,1.1514931,10.709951,5.7570553,-16.397171,-9.115015,20.970686,17.237484,0.35090065,-2.9588814,-4.072703,5.528587,6.132328,-8.610731,1.4820204,11.214465,-4.0340705,-6.1931067,-5.284807,-5.93622,16.986622,15.742804,-18.234455,-12.408414,19.0171,null,6.594309,16.89012,-1.9219458,-4.3424892,1.7145567,-1.8098714,0.92927647,0.35960913,-1.9345081,5.36926,-0.7037387,-8.471862,3.9345198,0.7516637,-15.1386385,-2.9375057,13.818143,8.970533,-0.35914898,-4.0198545,4.889082,13.411165,-1.4654058,-10.784889,2.234992,4.510751,1.2904541,9.320915,2.7183404,-18.935036,-24.42011,-13.10103,-2.2638402,8.133141,15.623728,4.257344,-9.676513,0.4626329,5.594729,-5.8885374,3.7148428,14.255753,-1.811801,-1.9339876,15.071457,10.376058,3.1277351,8.724033,6.8202534,5.3334227,13.898066,8.8078375,-11.461962,-9.761278,12.642754,10.2503,-8.117546,-2.4558382,8.548811,5.6000857,4.699897,5.50601,9.111925,12.388174,-1.1648264,-7.3467107,4.6523976,-1.6689386,-15.421274,-8.520412,2.1079414,11.4071,21.31279,18.267067,4.6968145,-8.1762705,-5.595067,9.415328,7.2004423,1.2946687,12.733116,6.440717,-12.843278,-6.335282,2.2620368,-2.7871819,1.5110178,6.1783733,3.9053695,5.395644,-1.0565176,-11.479546,-4.553747,5.748464,4.187685,2.8149765,1.2246878,-7.1957097,-9.611139,1.6573591,null,10.890526,4.793918,2.4735947,2.6924448,-2.794382,-4.3607903,2.4295444,5.4164524,3.5322618,4.0809035,2.2405367,-2.3201642,-1.7129062,1.3488594,3.3890567,5.439794,0.798337,-5.457588,3.8680658,10.102888,-8.432712,-14.197375,7.4691896,10.689458,-0.5027926,3.276744,-2.305386,-14.888538,-3.198876,9.267601,1.9589494,-2.7410712,-0.32922006,-0.6610311,2.2204514,10.324463,10.4987545,-1.4162734,-6.9363265,-0.32063103,-0.9720173,-7.571905,-5.3568974,-4.5738564,-9.962172,-9.421198,-8.596422,-11.539646,-10.571945,-15.901351,-25.190231,-21.864456,-24.51511,-31.281631,-11.252228,-1.5791807,-29.432106,-35.632484,-11.785719,-5.265395,-7.400945,-2.916585,-4.3673506,-9.41971,-13.898753,-15.768238,-8.792198,2.3893492,7.233042,3.2693508,1.4355469,-1.6099029,-16.777668,-13.478029,10.446295,4.43022,-11.96545,-4.291025,-7.1770883,-12.527506,3.547061,3.5024478,-11.184029,-9.08778,-3.784393,-1.6631938,4.7677727,7.1038156,1.32792,-6.5694227,-5.9670515,-1.4589744,-4.580662,-0.9022317,6.06598,-3.8630412,-4.8280044,13.788428,10.04771,-15.981167,null,4.779579,-22.031395,-15.204929,6.3658304,8.099592,-2.3276892,-8.968962,-0.6406846,21.23983,19.443283,-8.47537,-5.994932,15.595552,1.4003487,-10.591531,7.6553345,4.2878113,-5.102484,11.243847,3.0067544,-15.3911085,10.934334,29.205584,3.5683346,-8.978415,8.447587,15.563114,-1.3045504,-10.050155,5.5871096,7.2736697,-11.19143,-9.351233,2.6702147,2.0005355,3.482752,8.314069,9.011223,4.910576,3.6447828,19.643324,23.759457,1.5141296,4.0513487,21.214436,11.409751,12.175432,27.164001,16.500317,2.370745,0.21951365,1.5392861,14.807322,11.690271,-10.3570385,6.4069514,36.439194,22.084911,6.91239,14.618233,7.6435466,0.82913685,3.168088,-12.330751,-19.832695,-3.3835788,3.410007,-1.1460304,-8.4707985,-14.915327,-3.741985,3.6221795,-4.471545,2.0947056,2.201649,-15.338739,0.6575098,23.487572,-3.1059215,-24.163942,-4.7621884,2.9608393,1.0473919,10.68877,0.40696383,-10.492403,7.1837754,8.9942255,-2.2688584,8.787072,11.155312,-1.5503297,-7.106642,-8.566766,6.4572744,16.664768,-1.4446945,-2.422452,4.979554,-9.037966,null,-2.9050539,-0.03812027,1.3228674,2.0919197,9.164146,-5.562374,-16.542076,-2.56751,1.215416,-10.512443,-10.358597,4.600518,6.5394516,-12.348217,-15.586829,0.9614469,0.16894388,-14.659443,-14.884041,-1.6574426,3.4295323,-3.845057,-5.8228292,-3.5079975,-7.1260376,-5.2713327,3.3650913,5.5551443,-1.1713488,-9.030853,-5.1069856,4.730461,5.1642356,2.9284067,0.62159634,0.36062253,13.8487425,20.53165,6.0608873,-2.2549365,-0.55158925,-1.0899038,5.683527,9.243445,-4.2861032,-8.885611,2.5090337,0.5764036,-7.2881007,0.3460393,-0.39961386,-15.728761,-12.905466,-0.5123334,-4.937016,-11.365528,-8.778483,-5.934095,-2.4055905,-0.37456346,-1.008461,1.009881,-0.87054396,-6.9603558,-3.290345,10.06115,18.577942,10.944056,-2.1712053,0.010646343,4.0327535,-2.7377505,2.6136615,10.728024,-2.5969396,-11.241566,-3.8103929,-2.98115,-2.0947556,9.540501,16.031078,6.5803385,-7.15062,-8.708097,-6.13544,-8.831628,-1.5856392,8.092504,-0.10762358,-5.963684,2.2802944,1.302336,-6.03068,-0.020293117,8.567668,8.232813,5.4805427,-1.1981802,-5.2126665,4.9411902,null,-18.864344,5.499931,9.938213,-3.7879782,-8.5151205,-1.3853378,9.200856,5.535184,-3.248433,2.1693144,4.729999,3.402009,7.346713,2.666483,-2.5411606,1.0548909,5.0290313,6.583896,-2.321666,-7.1540856,3.3130736,-1.3152521,-9.370591,4.9158034,9.331136,-1.6607361,-2.4085221,4.2909064,11.430253,10.678469,3.0791655,3.8632684,6.011075,3.331768,0.7164062,-6.3734055,-11.4088955,-8.801165,-3.5501676,4.1102686,4.439357,-2.6192412,-3.692165,-4.1610546,-0.3683319,10.689243,2.3004718,-17.177444,-13.059626,-0.058398843,0.37760377,0.57094765,4.454362,3.1949134,-1.0613511,1.8967407,12.18246,14.676307,4.649514,-7.4136167,-16.438587,-19.31076,-13.721272,-2.0958693,9.124432,9.215811,7.3122587,14.498287,7.909372,-8.8510895,-1.0564342,15.276228,10.6545105,-1.250314,-0.5625143,10.875609,10.740819,-3.4294567,-3.6353948,4.3848095,1.6358925,0.037522316,-0.4394753,-0.722471,14.651503,24.569689,-1.1299515,-25.55827,-2.6622994,21.89029,2.4149566,-8.76019,2.906736,-5.301258,-5.0857778,8.520021,-7.339059,-14.628459,3.7472897,-0.34175158,null,-0.2348311,8.570625,0.3843174,7.888687,19.735722,12.63487,10.460159,6.1962266,-2.2733095,14.684428,19.703842,-8.59964,-9.28567,16.160025,7.2506237,-22.967249,-16.713228,15.945025,14.175348,-12.592377,-7.2306213,14.071373,8.286183,-10.027011,-15.857651,-10.975753,-4.468276,-0.4332416,3.601329,3.5129652,-9.480524,-16.871643,1.2617579,8.336119,-16.673843,-18.60028,8.359627,12.4025955,14.074015,28.163658,13.542289,-7.1676617,-2.551035,0.4374442,-1.7305014,-6.9447575,-11.7271595,7.810849,12.422943,-14.055202,-2.5048294,20.153677,2.852881,8.208409,27.200693,3.990954,-7.6093817,9.667768,11.671228,8.061814,6.2948017,4.394435,7.50303,1.7309917,0.16300488,5.723996,-8.892042,-18.01996,-2.947537,0.6581063,-10.614446,-12.414703,-2.7274246,5.269513,5.69792,2.188067,-6.475872,-6.4403367,4.478481,-5.4947796,-15.441606,4.5139623,11.625608,-1.6047002,-0.93890476,8.529362,13.814157,4.2661715,-7.2242746,6.070539,11.523491,-5.2767286,-5.5736537,-0.21310139,-5.509287,1.1697989,13.362349,10.359935,-2.5894077,-4.1796565,null,12.900811,-3.2806873,-3.335201,6.8127494,12.991573,9.0755625,1.3177705,0.88242173,4.8390427,0.36076307,-10.678764,-5.1538763,11.586495,8.882411,-6.9314184,-15.941158,-12.362534,0.5174484,2.2869306,-2.208074,5.7471895,8.860248,1.043277,-4.108893,-3.6764762,3.0913916,2.054728,-8.369015,-7.5509815,-0.48613262,5.4476223,9.667224,4.799651,2.3826072,3.1394205,-2.3907564,-5.66243,-14.4430685,-26.970352,-25.812387,-24.538368,-22.355007,-8.928221,-5.1765633,-9.799921,-9.42378,-9.925562,-7.771967,-9.550052,-18.511654,-8.815016,11.895132,10.626963,-3.132965,-5.4069357,0.25978088,-0.17888308,-5.7923007,-5.112122,-4.08786,-11.813446,-11.101747,3.4163914,8.265551,0.9888654,-1.0209985,0.3197012,-5.0547724,-11.052963,-7.9672766,-5.3289266,-11.879175,-11.949682,-1.3864355,1.7843971,-4.976761,-8.5457735,-0.7363198,4.8620734,-5.848852,-10.306961,-1.2461724,2.7389803,9.617276,7.5387106,-9.650782,3.206132,24.306168,5.035083,-9.781412,3.212625,8.027428,2.538242,-1.2276745,-0.7843368,3.8880634,8.806844,9.95639,-2.2046318,-7.3460417,null,-10.770255,-2.609202,1.6948491,2.243154,11.572274,7.472627,-7.7529955,-8.261907,7.9673696,11.382208,-4.4474583,0.9607363,9.540251,-8.830194,3.9444742,32.222805,2.1814907,-25.839539,1.2241201,20.459892,11.238235,6.0543337,6.354428,4.7368507,3.4574327,6.621896,16.397545,20.371271,7.2186728,-3.9498854,3.124155,8.164131,3.7891655,3.0052552,-4.399457,-14.205986,-4.2843747,6.2499495,1.6547203,4.9335394,14.835043,14.681856,12.801519,8.524273,-1.8494649,-5.167967,-8.308643,-10.133736,8.384275,13.440627,-9.31805,-3.5127978,14.787223,-5.8670554,-16.854258,6.925341,9.358322,-6.0561395,4.542689,25.294018,25.056942,9.639672,-2.9554005,-4.3546576,-3.7562914,-10.755227,-7.6507754,5.890242,-1.5460987,-16.927557,-9.863408,5.4740458,17.70677,25.407425,22.923079,17.528122,6.4039555,-4.8812027,-0.479769,2.5885758,1.6110945,6.948909,2.0429726,1.4596863,18.324364,14.20335,-9.382944,-9.498713,8.205487,9.077009,-5.4943447,-7.7102823,4.192492,7.1375713,-6.6136236,-17.426321,-7.4219007,2.4614496,-3.515219,-6.676817,null,4.9655886,-4.8432856,5.8845243,8.870277,-2.0697436,-10.793496,-3.542129,4.9618225,-14.1046915,-15.360741,15.129111,5.3211927,-16.458607,9.703144,19.773401,-13.472299,-23.72867,-4.8815327,2.8306437,-0.577224,-0.56937027,3.6648016,1.4402881,-12.0173645,-11.397196,5.9997444,3.5312939,-6.957675,1.5050888,8.070454,11.213008,11.575736,-8.723846,-17.040218,1.4982679,9.150221,8.10154,5.622374,-5.5389347,-0.40637112,8.958059,-11.030334,-22.499361,-0.29921103,13.605445,9.056962,9.1969595,7.511832,-0.004185915,1.7385256,8.994611,6.6315985,-3.5893946,-5.2702217,6.418395,9.805299,-5.6071334,-14.016057,-1.0337701,7.1430755,-1.8182607,0.30056763,9.972259,-2.6114104,-10.240221,3.8052788,5.447098,4.476084,10.30945,-1.0422815,-8.282178,-1.5651045,-2.109284,-1.5460509,-7.742603,-17.993368,2.8002176,25.291924,9.32321,-8.308228,2.4951272,12.601194,0.6123104,-4.888326,8.133896,7.196139,-6.293313,-8.613311,-3.7470608,3.7626972,4.226351,-6.0077496,-3.3738647,10.047184,8.184142,-3.7045608,-2.8566828,5.814579,5.634249,6.448468,null,-4.925212,-10.968068,-1.7147114,7.667859,-7.6510735,-17.187656,5.033437,8.438684,-8.632758,-0.13737106,8.610171,0.9564457,5.2187133,11.951964,1.8508191,-7.3842397,1.6912732,8.585992,-2.160303,-8.007267,-3.95588,-1.4267948,-1.0448959,-6.618868,-0.30477333,18.062187,12.308037,-1.7818313,-1.4604995,-5.261181,-6.5852346,-2.087913,-1.3719692,4.105579,5.1126895,1.1701128,1.8822033,-11.073741,-25.415142,-14.083545,1.287425,0.76535046,-6.7159452,-10.076929,-7.53168,-8.678812,-11.045633,-5.289336,-2.3563557,-8.978744,-14.719776,-18.915096,-26.04808,-24.621807,-9.728045,-1.5259194,-6.1092463,-5.1197333,2.3866832,0.6209214,-12.150896,-18.068665,-5.815418,2.9831824,-4.6742096,-2.760147,8.515465,2.2835083,-3.999197,8.296611,16.382298,12.956759,1.8249998,-12.77792,-5.243141,8.428965,-1.6670117,-4.7007294,-0.6363392,-7.9933195,2.5735383,10.408194,-2.1133614,4.771628,4.272864,-14.471365,-3.4689636,7.2280636,-2.9323192,-2.8724885,-2.9455757,2.5270271,12.522408,-2.343144,-5.9728866,13.453893,4.7780285,-14.036512,-4.5537395,9.7017565,null,-11.392429,9.307461,15.773365,-2.140541,-1.4067335,-0.01942873,-0.6415365,0.7811346,-4.2783422,1.6640043,-0.116449594,-7.5055037,7.9865875,2.654206,-5.1422133,27.388714,18.539227,-20.368626,1.787479,23.355164,-1.0827093,-13.692333,-9.967178,-3.6033287,5.6473284,4.4248657,10.248419,24.897446,14.415962,-7.0379343,-8.881739,2.333108,14.687656,6.5417395,-21.763365,-18.751637,9.791082,12.008378,10.064846,17.014156,2.517796,-1.6329207,15.174814,6.59384,-0.22416162,21.477291,21.958073,9.274403,21.534935,18.371923,-4.94294,2.7363615,10.117487,-13.652549,-14.85119,5.9772315,7.1006603,6.5649347,7.4913616,-4.517704,-4.1356316,11.560006,17.399761,11.604897,3.2269113,0.40126586,6.937866,10.251442,-0.74757123,-8.608469,3.6666737,16.324501,12.193843,-4.4948044,-21.074966,-13.343234,1.0250235,-7.2899313,-2.589435,16.393719,11.387313,2.0796394,-5.5286837,-17.703453,-7.1474495,10.305966,8.411559,-2.0307703,-9.972007,-5.558237,-0.7919321,1.3278732,13.22867,1.9671774,-14.789398,10.03601,15.348349,-14.4222765,-13.251129,-5.370035,null,14.638725,13.457886,-0.9404275,-4.571551,-6.6750035,-8.527617,-7.3316917,-6.502494,-2.5714018,-7.1301613,-12.996601,-5.8245497,-6.7604628,-4.4290967,7.933733,-3.0480213,-3.9448855,17.811474,0.45331573,-25.817137,-10.211451,3.8757014,0.7941623,1.4715483,-2.1205618,-5.8828487,2.753164,9.5228615,-2.7668777,-19.886696,-15.182983,4.648014,11.863131,1.3210354,-7.663536,-7.5155993,-9.134475,-5.3278527,5.7773275,0.14033651,-10.38423,0.6430033,13.649176,8.205848,-4.643696,-7.0705614,0.08679509,0.5393622,-0.015755415,6.0432825,-0.3610096,-14.573576,-5.3920226,17.808338,12.785171,-9.309034,-2.8931956,8.059525,-5.8022976,-9.248424,-4.73611,-13.221122,-9.416653,2.1045356,2.5740008,-0.76577187,-9.010087,-5.7862844,14.738036,16.663475,2.2809143,-1.4576464,-2.4621286,-6.0753207,-6.4577913,-4.8907814,2.345848,8.446687,0.91343546,0.015638828,13.753057,6.7239714,-11.281057,-2.7120728,9.839928,10.779633,9.696142,-5.3759074,-14.773632,-3.3103614,-1.7624621,-7.889844,-5.934392,-1.2530279,2.3529668,-6.9301457,-11.691429,8.299841,16.619247,1.6740785,null,21.41245,2.9991856,-15.55296,-10.668299,3.457127,10.864178,4.9380255,1.605072,5.120266,3.0122828,4.1442194,6.940257,-5.716372,-13.9241295,-4.615672,0.89455444,5.8811007,7.1168747,-6.658136,-3.8132231,6.990569,-4.3983765,-4.077479,4.502347,-2.730156,0.85541975,-0.12693143,-11.917442,1.0048621,8.716887,-4.844452,-8.928778,-9.166948,-0.73236704,12.2874365,-0.51174355,-11.722869,0.93412876,7.184485,5.5142803,9.397139,7.9221983,-0.118950605,-0.49612522,3.8246088,-1.0202997,-10.696569,-14.498791,-5.826705,9.979557,11.468506,5.571263,3.7367096,-9.497906,-16.489199,-5.7973843,-2.8999186,-2.8654134,-3.6490002,-7.3714232,3.0409636,7.4255953,1.6601081,6.652734,4.4055157,2.2486844,10.512081,8.629147,8.689482,3.4520502,-8.621786,9.634202,17.1624,-2.758388,14.449146,24.311285,-16.76783,-22.119877,13.5462675,11.833392,-9.213654,-4.775277,3.7089438,0.18448424,1.4825435,2.5474315,-7.972785,-6.931397,8.8579,4.262873,-13.432595,-8.381458,3.672266,-4.2503476,-13.53273,-6.387673,2.6426837,0.5337672,-1.4947364,2.0640635,null,5.3515377,-3.4067504,11.322846,5.663501,-7.631526,1.6242912,5.887354,0.53280306,-2.1748075,-3.4912667,1.0538926,-3.2096748,-13.84323,0.07304764,16.007265,-0.04122019,-18.927368,-6.5005765,18.207067,15.985285,-0.70200586,-1.1277044,-1.5077136,-3.7786481,-8.449282,-33.440575,-26.44614,17.787666,15.813603,-9.037421,-12.279351,-18.46865,-4.6890244,14.294443,-5.1422276,-11.628722,7.0736046,4.432423,-4.586087,0.4467423,9.065397,12.325411,13.192076,18.790997,13.736511,-2.3965702,-5.271018,4.229461,9.513479,-0.56228256,-1.9866765,21.969347,15.619547,-13.022431,7.263422,32.46013,15.450702,4.2692947,8.44615,2.999427,-1.6047955,9.53875,15.351734,-4.337016,-11.496265,3.8802276,2.2451787,-2.9280677,-7.3458166,-20.689163,-3.4862223,19.445213,2.973713,-13.290557,-12.410633,-4.09499,5.45541,-9.561668,-13.452116,20.154297,22.271338,-12.89976,-20.624744,-3.4286022,4.6634235,-4.2904134,-13.133484,1.5773921,15.386133,1.2141061,-4.815505,8.435358,4.524535,-7.362752,-4.96472,2.6062922,10.778654,7.342806,-3.2263641,2.6761527,null,-7.757859,0.23553848,11.824816,-0.63356113,-7.463457,2.2578278,2.6083293,3.9864867,9.122601,-1.6883667,-9.203886,-1.3058834,-1.097407,-0.64845186,9.491349,5.591797,-4.4964824,-1.8562188,0.02385807,-2.988665,-5.815195,0.28507376,17.329372,11.505694,-12.275775,-11.960402,-0.89970016,5.455308,8.309055,-1.826571,2.8284636,20.530663,7.513341,-10.055255,-1.2148738,4.9433923,-5.1393714,-14.81296,-11.575584,-5.1441216,-3.2412744,1.7536359,1.2477152,0.79661405,5.617511,-7.4728966,-12.398043,4.5664845,-5.758004,-22.267424,-2.5134099,18.228565,14.453323,3.043618,1.238559,-4.8802953,-26.421879,-22.05186,1.1159401,-10.409882,-28.541306,-18.921465,-5.196047,-5.077772,-13.340349,-7.4416165,1.6954627,-8.206543,-5.8787766,1.1447539,-12.324108,-9.719857,2.9511678,0.9697771,1.4291134,-3.684389,-5.753542,7.43927,2.4382362,-10.103315,-6.4900484,-3.269659,1.701615,1.4874434,-11.739738,-11.807255,-3.0574846,-2.6326709,-5.0622783,-11.156344,-6.719276,9.481806,4.8057694,-7.3512735,-0.9994165,-1.1793388,-7.019515,2.9178646,4.1174264,-7.596876,null,7.2469883,7.043221,-16.851357,-1.0738823,13.930993,-7.99862,-12.374024,7.296786,4.3978,-14.45116,-14.130962,-2.746653,-5.498736,-18.257265,-22.764633,-5.774962,14.421301,2.6685004,-12.524033,10.555755,33.500095,15.81419,-13.153031,-8.234296,14.844854,8.746411,-5.219323,1.4043827,2.929843,8.216028,18.290796,5.3335,2.1320164,15.366072,6.6038227,-5.876006,-2.165032,7.7977858,5.4895916,-16.798811,-11.984348,12.532531,-4.897995,-15.138716,11.306227,3.596518,-15.413179,5.1154394,14.479298,-1.1600518,2.3298016,13.040081,6.5084896,1.1253552,6.4387884,13.984787,16.052809,2.909937,-8.068184,-1.3086987,-0.03057456,-5.335475,-8.455449,-11.674672,5.665228,14.910202,-13.465511,-16.297281,5.178202,-1.6315994,0.20393181,8.9620075,-9.003479,-5.225057,18.950941,8.7799,-11.96993,-7.563529,3.4808168,0.7782614,-7.4818263,-5.7271442,2.6949775,7.824382,2.888817,-9.849045,-7.708954,4.51875,-0.480577,1.0423422,21.308784,12.297909,-13.6871395,0.032706738,17.06144,-3.9821782,-11.797626,6.536995,7.2213926,0.3134246,null,7.54319,6.072816,-15.354293,-6.5354586,11.190181,-3.3016746,-19.994394,-10.221918,-0.4407463,-9.025417,-12.492468,3.579207,9.2129345,-1.3075485,8.674321,16.381271,-14.211502,-30.914482,-3.4312057,19.027649,11.236607,-7.6581793,-11.015563,5.4825277,7.713079,-14.195241,-19.667095,3.7960055,15.033937,-4.499098,-23.061502,-24.023148,-13.927336,5.814972,11.430292,-6.6394567,-10.689127,5.9498377,14.962385,7.026037,-12.789486,-21.33377,-8.504885,-4.0150223,-13.124542,-13.605928,-6.469174,5.28576,17.49655,9.313362,-7.123083,-1.6652772,1.0546026,-17.82082,-19.795553,-4.1195393,1.3528404,10.516655,14.51943,-0.7193155,4.508643,23.337894,4.70191,-26.531597,-22.962502,-3.2370505,4.4832764,2.8258634,-9.2123165,-22.089573,-10.12826,11.603434,12.326653,-6.36621,-25.074718,-8.846258,22.350952,7.7774606,-5.8359346,14.039524,-0.20792484,-13.82049,13.474642,6.310308,-13.821781,8.630348,13.655523,-10.359289,-9.6988125,8.478735,9.982841,-1.6076317,-2.2609005,-0.8605499,-3.4223762,11.078072,11.146015,-13.23909,-1.4640388,21.896835,null,-2.4563537,-13.6164875,0.574255,10.414873,-10.250858,-9.962643,7.7427006,-2.897469,-5.8022184,12.167546,9.65331,-4.5925407,-1.10641,13.462115,3.0943575,-23.954844,-8.562683,17.33937,-3.5380843,-17.058529,-2.0975146,2.8984036,10.396475,12.675386,-5.898019,-4.461014,16.087835,10.039888,-12.8943,-12.7249975,4.8440056,7.721293,1.3464253,4.549175,6.0435476,-1.461389,-9.477644,-11.227647,-6.014885,-7.1964316,-13.792767,-9.11402,-2.7971826,-4.811878,-4.8162565,1.1510353,13.5216255,19.364168,3.1170053,-9.135878,0.58756495,4.9230156,2.1537788,5.5643697,-4.337592,-15.471994,4.1168885,18.855452,-4.6475506,-26.139477,-17.168499,-1.4207275,1.3500636,-1.9395604,1.2443566,6.3658857,3.1675067,0.3089943,6.4575644,8.096548,-3.5457008,-11.210675,-4.790908,-1.4826517,-12.98813,-23.587162,-6.252736,22.937508,6.939409,-29.110973,-13.854092,6.599989,-16.82317,-26.480042,-10.879421,-5.239785,-3.6155734,-6.6730413,-7.44687,1.4723654,-1.9505739,2.2090058,17.523561,-3.7472224,-21.127018,7.318025,11.090125,-15.185923,-9.2004175,2.2246394,null,6.855945,-3.5740206,-1.0422835,4.951969,-4.071011,-12.025364,7.3987055,8.815513,-16.603834,2.1922505,25.706007,-5.841725,-13.668941,9.730202,-7.773387,-18.219023,11.044582,14.419541,-10.98942,-15.560719,4.5663276,13.344332,-7.929717,-20.873428,-5.1516285,1.8806171,-7.793009,-16.757551,-19.2914,-5.1432476,2.6747704,-14.97726,-18.090784,-4.418817,-2.9364882,5.334735,11.937534,-2.8089142,-5.9341836,-0.7437115,-1.6700208,14.940585,17.762712,-14.300992,-29.188961,-22.865334,-17.770554,-7.559725,-7.529073,-14.5937195,-14.823554,-21.346945,-14.227432,3.4083667,-10.290376,-20.278696,-4.391193,-7.36726,-4.761134,21.602629,14.737619,-9.69379,-4.2961535,6.476033,12.313698,19.615108,11.104314,-3.085496,-6.588003,-1.3553648,8.781912,3.0876546,-12.723665,-7.699637,3.934051,3.8334403,-2.5621204,-4.7132444,16.165094,25.65349,-3.8432946,-8.02086,12.830057,2.0993443,-6.7240276,-2.295939,-9.176053,0.8216295,12.585112,-0.17160606,-4.416212,-1.7876942,-4.0780835,1.8208137,-1.190963,-10.700268,0.06585765,12.525242,2.3173792,-8.581789,null,-10.057222,5.439609,-6.1090364,-18.770773,1.2012448,11.613673,-10.077818,-13.026224,8.394992,10.4252,4.6291246,5.205181,-5.2293677,-7.051382,6.5431314,4.8735285,-5.230159,-10.067874,-16.98582,-13.80299,-2.6412716,-7.4394007,-12.130165,7.929574,19.376123,-4.3517246,-12.671196,17.891838,24.848661,-2.2500756,-7.0818286,4.1027346,0.32827473,-3.948703,-3.8426828,-7.0296583,-8.6897335,-13.524132,-15.744398,-7.273505,-13.06926,-26.22099,-11.132297,2.233963,-4.257163,14.111551,35.044548,15.954242,0.88193107,8.44394,11.406114,17.653404,22.011053,12.038215,6.6143675,4.425539,-2.0909348,-2.9031525,-3.8694525,-7.811577,-5.895825,-0.3409586,4.066969,2.920761,-4.25992,-9.054239,-2.5122356,11.082524,1.9374664,-26.432491,-16.62076,18.26641,9.364093,-17.715694,-6.0391197,15.464558,4.9840155,-14.539812,-1.0699525,24.827816,11.893646,-13.809086,-5.627036,9.262512,13.100162,21.15254,17.342995,2.7681608,1.6406522,2.224985,-3.7361095,-5.1370363,-2.6696568,5.843685,10.020113,-2.9053547,-4.7449856,7.0991144,-3.7660358,-15.143209,null,-14.801825,8.194412,4.6656394,-7.1391044,0.98135436,5.5652514,-3.3632894,-6.226256,5.955619,8.071373,-9.44841,-13.716328,-1.0847797,5.0033717,5.7661014,1.3976283,-7.636331,-6.594076,0.23401117,-4.1896105,-16.544645,-15.843947,1.3222299,8.0652685,-4.7455254,-13.795047,-8.081696,0.06712651,-1.6127305,-5.7143297,0.5129117,8.844334,11.841888,10.969821,2.5116472,-2.731248,4.4297347,6.1275377,-6.173317,-12.688369,2.5965557,21.082571,20.099264,13.686827,6.5414114,-8.980859,-10.303163,0.15408039,2.2784624,5.352873,-2.8991394,-16.02639,3.057104,18.361706,3.8432274,0.57957697,1.6031346,-4.086915,4.88173,9.499874,6.095508,6.025947,-11.955702,-23.535633,-0.08241534,15.520219,7.6943793,5.1264844,4.742241,-3.1145372,-6.6419926,0.46055126,7.833392,6.005719,1.007565,-1.313468,-2.2411702,-0.5200553,-2.5814629,-12.535003,-13.197192,-1.9673645,-4.443978,-16.552338,-12.022591,-5.2174087,-8.127273,-1.9178047,-2.8489113,-18.366467,-10.8173895,1.3631597,-17.170519,-26.18777,-3.3549812,12.00642,0.5115881,-13.21867,-7.4598503,-4.1391106,null,15.143885,-6.8849845,1.0862042,15.824295,-3.8502893,-9.452961,2.5386186,13.54446,14.247345,-9.724037,-4.3113356,28.837933,10.681274,-11.262947,9.605003,9.983358,4.289586,15.091774,-6.6443176,-23.560354,0.7444086,6.1633434,-11.035558,-16.15319,-12.531265,1.3357387,1.6901512,-15.032413,-3.103489,4.46733,-19.452463,-14.581763,2.9459524,0.36892557,9.05402,1.4967813,-13.47986,14.341858,20.818886,1.7890873,20.130636,8.569481,-33.186535,-16.462261,8.987781,7.250291,13.821626,4.621696,1.184937,30.66145,36.474655,22.178284,16.877354,4.0553684,-0.601315,-2.9501667,-17.906626,-7.324257,10.862869,-3.2961402,-14.204663,-4.942282,-2.3726702,-13.470121,-17.419031,4.1039124,10.895161,-22.22415,-28.611305,2.0928376,1.1631374,-21.30386,-20.00518,-3.130206,7.4034324,-5.9188275,-19.670483,5.813319,17.15985,-17.6327,-13.424648,21.77528,6.9721766,-7.6888704,7.062955,-1.9183958,-1.9314003,16.25461,0.30532706,-12.079819,2.3376207,2.6995423,-3.046689,-1.9025669,2.314222,4.772423,-8.471855,-7.598448,13.372452,8.800301,null,18.331665,-1.1656731,-19.657166,6.5168257,13.724157,-8.331282,-4.5900035,6.6949816,0.8810363,-9.284607,-5.891276,12.014323,-2.150766,-25.99924,5.517275,24.580807,-3.3134875,-5.102198,2.9316864,3.8095398,24.401625,14.703678,-15.819094,-5.067835,1.1134359,-11.974533,-0.8416929,-4.0509243,-27.158098,-14.318411,3.807555,-5.4282703,-0.41179228,12.9025345,-0.021779537,-11.457092,-0.78866005,1.9037595,-15.960424,-28.33505,-17.681282,2.555823,12.547673,7.4639187,0.07950592,5.340036,9.462236,-2.6097078,-7.9227867,0.22405148,-2.853749,-11.911502,-8.681637,3.5018592,13.135833,1.0155678,-23.477943,-13.73395,15.673876,3.8342314,-27.037413,-25.047781,-12.813082,-8.4755125,3.3420944,2.648249,-15.956368,-15.489044,6.5141745,22.327076,18.09187,2.201614,1.3070624,12.080243,7.7502565,-1.0148697,-3.6560404,-9.655267,-6.431691,-1.5496454,-16.308876,-20.099207,-5.76346,-6.1463003,2.3800454,20.948198,1.5687206,-13.383714,14.621097,20.417469,-4.186245,-6.9885383,9.037983,15.871362,-2.1439686,-13.568311,11.429572,16.430328,-5.622762,2.5278952,null,-1.1557791,3.5376666,19.091564,4.2081566,-6.448734,7.3259706,6.5812707,-5.682024,-9.663251,0.57955,6.995137,-16.229609,-20.3857,12.283571,5.1323957,-20.596716,1.4447174,12.777252,-7.1886616,3.446043,10.601499,-13.324864,-2.8863535,18.141867,-2.7129917,-5.757569,16.50214,7.168268,-6.0747766,1.9406242,2.8559022,-1.7831631,7.2584558,26.958887,23.255163,-13.991109,-27.178894,-1.5876751,9.716239,1.4933176,-1.5593667,-4.6088524,-15.583355,-24.996586,-13.176921,18.250004,33.91935,17.031128,-1.2378516,-0.7707386,-2.3738117,3.0109024,27.388447,14.78965,-30.405966,-29.177607,-2.9116383,-2.9869719,-6.8427377,-5.8813763,-0.793982,12.167219,9.034774,-5.3779254,-8.489605,-2.135377,5.9811687,-1.8694153,-13.959725,-6.0047274,-9.7753525,-18.491106,0.7847686,-6.1907015,-32.18947,-3.0811257,17.637215,-18.442194,-24.89778,0.776989,-0.9004488,-9.616161,-12.365226,-16.766632,-9.510914,-4.8660192,-15.580898,-18.46295,-4.8936386,-0.6706095,-14.801054,-12.468226,3.0233994,-9.176286,-18.522116,3.803329,11.817536,-4.6925683,-10.130368,-0.9896414,null,-7.457963,5.7022176,0.9870024,-19.801342,-2.5157819,4.358426,1.4831414,11.6462145,-5.944065,-9.040094,14.4189,-3.551504,-13.899023,14.999995,6.886451,-17.539326,-0.15683842,19.882235,9.325647,-13.393905,-22.730368,-8.209326,4.931873,-4.5418377,-12.331695,-1.392313,1.4471531,-9.063868,-2.5319128,-1.8977056,-29.51408,-24.270721,9.812204,1.8013649,-12.636402,2.3065314,4.969946,4.000334,11.262541,-1.9182968,-27.59629,-38.941986,-17.679655,12.452473,1.1976166,-17.65319,-0.14092255,13.464666,5.9266157,-0.4155345,-3.7185845,-2.5161285,7.2733707,17.297306,13.999842,10.569183,22.543592,14.069063,-18.467482,-26.393806,-11.968384,4.948021,15.083363,2.9317627,-6.641259,1.037549,5.1327868,9.1056,9.6667185,1.1714058,1.1500778,11.768357,24.36623,20.876768,0.00095415115,0.16721535,12.429611,1.4280925,-1.7529497,18.290009,14.01387,-5.0464535,21.786076,47.24617,5.7723427,-11.47636,29.406578,21.132088,-10.3351555,11.018783,30.415113,21.845608,13.558212,6.0744905,4.490658,7.135682,7.0424232,4.1900063,-0.40974092,0.89916134,null,15.403158,10.278505,-4.7531805,0.10553312,6.8507156,-1.2915063,3.3957167,11.2648735,4.10236,4.509501,-4.4872217,-2.0877066,29.222395,6.1190176,-21.2807,24.959846,25.987888,-18.79139,-3.5110488,15.000722,6.8117657,10.829301,2.6537333,-9.527298,1.5562129,13.308207,9.0252285,-6.983642,-17.404486,1.1041708,32.766636,18.468641,-33.4002,-28.713337,23.950266,29.044498,-6.000043,-23.541445,-7.394761,21.289448,20.24223,6.275195,9.008206,-1.0014658,-19.54374,-18.087002,-3.8993893,4.611685,-9.306268,-18.464136,5.5261555,22.25014,11.039353,-5.4222126,-7.563278,10.961502,8.87269,-21.592705,-17.136673,15.396896,17.978004,-5.2523403,-11.9769535,18.820885,45.888805,21.380745,-14.879147,-6.80865,19.622305,13.77867,-8.624722,-6.286414,7.069343,12.823294,13.919493,-4.557474,-19.630291,0.8541837,18.736095,12.620384,-0.22772217,-8.023045,9.245995,17.132042,-11.223267,-9.443779,11.512174,-2.6823287,-4.7624435,3.4121943,-4.1483307,4.325211,-5.584153,-15.845512,22.386803,14.402504,-18.316885,13.809326,9.819871,-21.376547,null,-29.045769,16.178347,0.67557955,-30.068699,12.003967,7.059307,-28.257359,-2.0090313,10.794833,-4.4397216,-1.306994,2.7585764,5.6110177,-3.516508,-18.098488,1.2944613,15.1200695,-6.854395,-14.119356,3.7384615,13.6124115,-3.2387085,-22.400972,2.1301699,23.277807,-5.183948,-7.43266,15.980749,-0.060317993,1.0336237,23.395111,-6.7960005,-29.941578,2.0261092,13.524612,-9.936899,-13.786944,10.063255,32.744083,33.75432,12.061225,-19.684336,-31.922354,-11.067413,8.444822,2.33903,-8.160736,-0.0735054,6.2414474,-20.64856,-39.89072,-12.43136,11.303942,8.801279,6.915518,1.9197149,-5.671653,-15.055376,-30.52555,-22.121023,16.063807,33.02929,2.3458295,-21.527939,5.074651,22.989815,-2.2278223,-12.24469,3.2932796,-3.7791295,-29.658703,-23.109503,4.1339583,-3.0941324,-7.393157,7.052146,-12.748974,-12.971884,7.468521,-19.36927,-9.952368,19.683739,-16.143793,-7.1720915,25.650599,-17.773806,-23.67044,9.578763,-5.9289722,-4.616068,11.149595,-0.59264314,1.4663858,2.4658575,-8.002475,5.0960536,11.358765,-7.0132484,0.06899452,20.752268,null,2.725106,-14.385468,0.46926332,14.66677,-0.06702423,-10.690241,0.7100625,8.232931,2.2787137,0.43787384,5.002412,7.4747562,-1.7136531,-3.5814567,16.348179,2.496128,-18.267372,20.820312,22.164108,-17.008232,10.133518,17.59898,-10.349723,18.12164,13.533603,-26.998446,4.710023,34.923347,7.5965796,-13.082041,-4.36175,19.211151,18.297197,-13.159248,-14.057559,23.472576,49.113426,38.48992,10.050965,-3.891074,-0.5911484,9.922276,18.407299,10.881151,-5.3344965,-21.230314,-28.064983,-10.584339,6.612835,1.2975492,-6.0048423,-11.094546,-20.533705,-22.683987,-14.121485,-3.8451443,2.767006,10.653492,21.860245,17.956182,-5.9091644,-5.040476,32.1714,25.208466,-32.582485,-29.63643,21.280056,14.142223,-19.100033,-16.700832,-6.2779665,3.022758,8.628973,-14.325053,-29.33131,-3.8538094,11.064558,-3.3836946,-10.247107,-4.5078406,9.170769,12.750274,-5.0549564,4.4086614,22.024242,-3.7410069,-8.969276,14.190617,7.568138,2.4722607,4.5307984,2.398599,12.013667,0.6043582,-8.821665,2.9709704,-13.722652,-9.629356,19.692558,-2.678365,null,4.645358,1.7474718,-25.226355,13.157514,17.35568,-15.265116,10.221684,11.414568,-12.779913,1.1643281,3.614275,2.3134346,1.4435568,-9.923457,9.176618,7.1552343,-23.09879,-7.308996,10.415289,1.2235727,-3.5189354,-0.5334873,22.19122,19.376968,-18.118408,-6.8926287,17.11557,-3.239007,-14.069059,-6.1881084,2.6481924,15.580505,6.0853806,-10.587611,10.659055,39.607674,24.836597,-5.132532,2.2681127,29.846842,36.46423,16.48757,-9.4042845,-8.985463,10.465168,16.009308,21.169365,30.88298,14.889446,-7.5628986,0.43527126,17.109636,17.67633,16.110283,13.542408,-1.4381285,-16.479467,-12.29163,19.012035,54.381744,48.45227,3.4153886,-22.228653,7.2162704,33.770027,-5.2662277,-37.027874,-10.280711,5.751912,6.65232,0.9579487,-23.84554,-4.8840437,14.469263,-17.855446,-2.1414046,14.518204,-23.180332,2.8851357,25.774574,-22.882486,-7.0696735,24.056435,-14.001057,-8.652384,23.625935,-0.36552715,-13.11208,8.217232,8.092874,-8.292323,-9.291013,8.697596,14.116899,-8.07126,-7.059058,16.173716,2.483767,-5.079783,20.300106,null,6.006642,-13.32852,-2.1507483,17.84895,10.141098,5.716926,9.194005,5.1030006,-4.657899,-1.4664412,18.470627,11.859453,-7.77265,11.554301,11.933479,-14.712217,19.876945,34.439777,-24.327513,-9.103603,33.823154,-10.779279,-18.788845,6.399645,-24.40827,-12.226552,14.476198,-24.051537,-22.82557,8.416264,-7.0373745,-16.761614,-9.923918,-4.2647133,-0.25033045,-21.288254,-23.973333,15.482442,28.430733,6.3152122,-2.4701195,6.764728,8.719843,-6.8791046,-16.501953,-8.5681305,-7.5623827,-16.647074,-19.000944,-20.471127,-20.417109,-11.136534,-18.31091,-39.107784,-29.113228,-3.7480536,7.3002386,17.681297,15.524654,9.068331,39.24202,58.17614,3.8522654,-44.138763,-4.5109744,27.064922,-15.09483,-28.723078,1.0090456,9.579595,13.170007,-4.359684,-24.4091,7.371869,16.946514,-2.6330013,3.590198,-8.111378,-13.682457,-4.1629877,-19.243315,-1.3551216,11.209444,-18.057287,0.5639181,17.82452,-2.6562195,1.1605749,-1.9197302,-0.08894968,9.686434,-7.416962,8.822289,9.66091,-29.211819,5.991611,23.291061,-26.855701,-2.5495229,23.230125,null,25.825016,-0.49404573,-18.142466,21.477814,10.675722,-15.196329,10.03988,6.069311,-9.919313,-0.3748951,-4.792259,-8.020351,-8.636278,-2.5284023,6.9891825,-12.649865,4.283928,28.567995,-20.819557,-18.930138,24.29009,-12.419464,-25.564785,11.832518,10.360275,-7.714733,-21.880796,-10.686727,18.681786,6.6529446,-8.831921,-1.0961108,3.7079859,9.438222,-23.086166,-59.44606,-16.416937,18.578726,-14.868309,-17.601656,36.53765,63.301346,29.138739,-4.2482185,2.9749503,9.869322,2.2400627,4.7321377,11.129406,18.018536,28.962166,22.706394,5.9242344,11.010464,11.005356,-14.977523,-9.18935,34.141262,54.26729,34.38896,-3.1549597,1.4259186,52.81826,46.154366,-16.702723,-32.085888,1.3418856,21.825682,1.7426963,-6.559787,28.883854,22.756222,-6.9779277,12.989934,4.2404118,-12.951556,29.461926,20.392197,-18.117414,20.128899,25.83635,-17.836323,8.042249,30.05022,-8.998362,-3.718586,30.371605,13.36294,-6.7505836,4.399412,11.773247,6.4441442,-0.0033705235,2.8894873,6.5452294,4.3413534,8.922115,1.5475881,-9.369907,4.980016,null,2.0787969,7.816844,5.071253,-10.219039,1.274328,11.585045,3.3256621,4.9300327,4.796604,5.221758,2.7468147,-5.5245647,11.855715,11.717758,-14.587006,8.547974,18.802383,-29.257872,-16.484592,29.731544,-6.012437,-28.042662,22.15455,23.269485,-12.27805,-0.16111231,3.7022057,-14.000779,-6.908412,-1.4570243,1.2306857,15.020319,8.293087,-17.892918,-24.188168,4.6225204,8.838525,-33.54844,-15.987371,52.060173,49.72103,15.774655,12.327551,8.447829,6.6855516,6.2409043,-5.2776546,-11.215576,-16.042534,-29.968723,-42.916607,-39.269104,-20.68644,-6.9647145,4.4345093,11.301947,-0.79307365,-9.287191,10.654749,37.241325,14.412988,-36.57081,-14.851411,33.789486,5.3216305,-26.363272,0.86743355,30.029182,29.471857,5.661347,-3.7070332,22.883535,32.67266,-0.7758322,-17.688133,19.82122,32.60985,-11.395856,-9.831538,15.023706,-10.937753,-12.774332,5.1662884,-8.160404,-3.3916903,6.003765,0.7485285,-0.12762785,-11.974206,-9.058332,-4.7937927,-18.511791,3.8948288,10.705091,-18.933834,2.3279266,14.886478,-20.581455,-14.725641,6.8439198,null,9.656492,-1.2105074,3.1972375,11.994726,-9.824456,-18.463028,3.6357841,-9.13933,-12.280943,19.681244,8.008934,-7.671561,1.755702,-10.584763,-9.980273,-2.9927697,-18.597075,-15.933871,-0.6081209,7.286044,-1.276516,-20.06014,3.0611324,24.666351,-2.7272205,3.788957,35.61712,20.91069,6.757045,22.623756,32.80355,30.95282,14.564554,-1.6409272,20.63863,34.151165,-16.231808,-34.540234,20.733896,27.6701,-10.888629,5.1531153,43.24299,43.744682,19.80924,9.943323,21.291756,10.394767,-20.908962,-38.51928,-47.279472,-39.42576,-15.092457,6.6177874,16.929035,10.855335,22.692245,41.54567,16.031828,2.4265156,15.904442,-10.536673,-38.20039,-23.787506,8.478368,28.750587,3.9981914,-17.583405,6.3714457,11.732001,-7.75915,-16.16528,-16.557207,3.293252,8.029026,-21.54423,-6.352586,27.14988,-1.0767937,-3.3335652,41.686157,11.627043,-24.156315,26.109661,31.24976,-15.48166,-4.575134,12.695736,8.198285,6.6192894,-5.8542666,1.1243948,5.988405,-7.5142813,11.003955,10.394068,-11.893204,5.51708,0.7742231,-16.120537,null,-14.731,5.977069,9.745738,-8.937982,12.896362,8.667902,-9.382544,16.079922,18.276844,-4.797141,-6.8281236,6.1482143,18.385803,2.2787886,-4.4315166,22.61647,14.294451,-2.175992,19.812368,17.366434,-1.3835254,11.445537,13.147052,-8.402374,-2.9524927,16.57943,10.664392,3.2765503,6.713115,9.314674,13.936436,-5.199492,-16.2998,24.979244,32.262695,1.806881,17.421602,20.522434,-12.016102,-9.705297,16.170568,31.99965,25.101505,14.316187,35.884583,39.232975,-12.038997,-60.53363,-67.138115,-47.08542,-46.50548,-62.2323,-39.715485,5.758828,33.186928,30.47689,7.4379597,13.693991,20.439674,-21.948223,-20.430672,34.661423,16.31316,-26.406797,16.957302,56.346886,24.343925,5.816547,18.188305,22.37378,20.280476,-1.9563141,-10.744416,21.136538,16.790922,-10.666134,4.403749,10.003422,-8.463011,-8.696218,1.6444042,6.100546,-0.46179867,1.3336568,4.365278,-13.672608,-7.080492,3.5966148,-19.161125,-6.387044,11.844276,-11.998945,-3.5066402,15.378063,-3.7146037,-8.832088,5.8191166,7.0409985,-2.4612787,2.3690395,null,-4.0241466,-6.750914,3.0874991,6.9470434,-10.607585,-8.833635,7.1874685,-8.338884,-3.000053,12.088345,-14.824112,-6.556999,18.639242,0.6498065,0.23630905,1.0079899,-7.9397893,9.519502,2.910655,-9.202011,0.28237486,-7.023228,3.0179787,10.961575,-5.5222454,13.911072,19.68563,-3.0696087,14.05265,16.677513,-5.957879,1.1366796,0.8004298,-6.3043604,4.59128,1.7168913,4.0735598,26.998526,15.431601,-25.609838,-34.719894,-17.649078,-6.1854506,-4.7768917,-15.2514305,-9.568231,11.281824,-0.67884195,-10.797022,10.335963,11.708902,-0.49314356,-2.375082,-3.9204807,-4.2717514,-10.186256,-6.0099297,-0.30838203,-19.504143,-15.017273,-1.4067011,-19.872147,-11.478525,3.193842,-10.8413925,1.6184254,16.766857,11.59526,11.574605,-3.1394615,-10.932567,-1.3548412,-12.330099,-16.84163,-3.5799046,-3.1849809,-2.2777567,5.818425,2.002131,-7.594417,-3.5793934,0.3827672,-8.769384,-3.9766788,7.1667724,1.7112794,0.071824074,-0.11876774,-5.623205,-3.9486942,3.8129334,12.932395,-0.89440084,-11.0561075,17.55894,4.563525,-30.27051,4.9230947,21.68556,-5.226918,null,-3.29356,19.72291,0.33028817,-18.14321,2.4231482,3.7391357,-9.544624,-4.0818253,-4.4621887,-6.596306,3.4023623,2.8982968,-11.323853,-13.574875,-2.0932312,-1.3834314,-5.331232,1.9978065,5.6222796,-0.99508286,-8.394039,-3.3935862,7.0617676,-2.483873,-7.1899366,8.238455,12.435509,13.448641,12.767759,1.2842436,-2.1925106,-1.3388491,9.304332,17.11837,10.551437,27.561445,11.516448,-32.847683,4.1664486,7.071889,-55.881268,-15.589109,15.171019,-29.443316,23.917276,78.86254,7.0684314,-60.848885,-75.365234,-85.22828,-89.518936,-84.87749,-50.545727,26.730852,69.998,25.223698,0.4597435,33.75482,6.4839973,-32.341972,0.18567133,6.281708,-8.097036,14.779573,16.48115,-1.6745806,-4.812126,3.1892247,16.321226,14.981988,9.060251,7.877323,13.323351,24.782297,3.4189682,-7.056941,17.1045,-3.8618937,-14.891389,15.184096,3.2223206,-4.0083466,4.582347,-8.325449,2.8798094,1.0428057,-11.118294,7.5924816,-9.598825,-17.940523,12.142714,-8.126945,-20.938831,0.16375113,-10.43829,-7.5894194,7.5271335,0.32089424,0.93949604,-0.8731467,null,4.8295794,-3.3842669,-9.805147,6.0099983,-5.2041717,-6.261303,9.877658,-6.065201,-4.5232267,1.3366873,-11.177204,2.9656491,-1.4027605,-14.686657,-0.75695133,-4.1090894,7.487553,9.404476,-22.860607,2.2575932,10.820864,-24.74639,7.844796,15.712166,-23.81374,-0.6878519,20.344374,3.9087353,-6.3449955,-9.149771,4.3194714,14.433163,14.745216,8.384919,8.350347,33.976013,8.233575,-14.065119,39.849106,7.5890408,-27.783325,42.10347,9.014477,-0.79370594,112.5854,33.932297,-111.57656,-21.197805,122.54709,161.57855,171.09123,142.14043,1.0960789,-97.26454,28.410194,105.335724,-2.31637,1.4036751,37.63652,-29.791689,1.6827812,40.306587,-12.798165,13.423135,53.929543,22.11617,6.8949366,1.306417,-14.278931,-9.23351,12.963222,18.095303,4.675634,20.556604,22.754128,-13.741507,-2.3474197,16.599976,-1.4922004,6.620903,5.0141134,-11.935536,0.8094454,-3.085227,-5.7307687,10.802677,-2.7811394,-0.41622782,22.783108,3.2519615,-11.079862,8.76675,11.573826,-1.892993,-3.868514,5.023661,5.8291607,-2.409853,0.2176423,-0.4621153,null,16.023516,-7.441518,-16.917912,5.867875,2.6219156,-9.929704,-6.1288958,11.20304,12.145657,-18.142443,-13.6838875,0.49944878,-20.004025,-2.3765125,10.377243,-10.8537445,5.9185715,-11.479061,-38.07438,6.5832148,0.7668381,-20.175472,18.747421,3.951398,-17.807274,-1.3726759,-19.557,-18.805862,3.1761236,-0.2975502,-4.200614,-2.2328837,11.814131,-4.730335,-25.950804,11.983404,-1.1613109,-25.37611,9.831751,-16.786934,-17.89326,-2.101345,-47.840397,30.481733,34.19033,-104.13619,21.454573,131.70447,-36.34658,-129.68546,-135.7175,-20.15274,160.76788,25.06068,-84.248795,65.26646,32.89406,-41.08615,7.7299213,-38.36312,-28.828926,35.73992,-6.8231316,-16.954777,0.14293003,-24.035976,-22.030851,-5.50903,-3.1193657,-16.336657,-8.886835,7.104988,-17.626019,-5.539652,1.8138521,-38.15614,5.6042337,25.93612,-22.323864,17.098934,14.865669,-34.379444,13.954447,8.930284,-37.61729,-5.7080393,-0.30045986,-8.267717,7.810153,-1.0796261,4.2922297,8.799764,-1.2441912,0.63232875,-18.063404,-17.732376,4.803867,-10.028825,-8.561083,7.3448734,null,14.504159,1.155633,-9.752617,7.044714,-10.472651,-7.4225845,14.188169,4.2565784,-3.411725,-7.460741,-0.6090698,-3.2791948,-19.704529,20.675774,23.865345,-17.967037,28.540066,22.139479,-35.309315,15.919271,20.121916,-10.393809,34.740105,9.914879,-19.053228,17.94281,-5.805912,-23.818113,5.2814817,13.804644,10.3802595,0.6170769,1.5112896,-6.2849207,-7.169937,16.944876,-9.922977,10.3557,52.48031,-13.387241,9.471777,29.745579,-22.257355,74.489655,-0.85108185,-52.852287,225.12125,-19.360691,-251.36584,412.87537,440.9388,-233.52682,-42.9994,214.06812,-59.903156,-10.74508,66.06388,-64.68365,-13.512619,18.385372,0.46704888,36.841488,10.832284,16.852957,19.047546,-29.655346,-4.0244913,15.746543,-6.5934734,-5.2597847,0.3839774,15.632412,13.993292,1.4691792,-0.41440678,-15.862023,5.758278,12.320108,-25.84408,9.250885,21.100128,-29.921118,-4.324418,8.284344,-20.910122,-4.581993,-15.367432,-27.659943,1.0203667,-3.565486,-11.77512,-3.2834578,-2.8672915,-0.43431568,-9.699593,-0.47789,13.62405,-10.017826,-0.38168335,16.608795,null,11.389376,4.850032,-0.49122238,17.805931,-0.31787705,4.101136,21.574877,0.88736916,-12.31905,-8.71443,12.419067,14.911056,-10.109823,17.392942,19.135798,-14.75444,25.362217,10.751971,-34.509964,24.408844,25.885511,-4.0255356,37.633972,14.957214,-9.483982,26.728905,20.025837,8.678179,11.31716,9.88464,9.397441,-6.538971,9.135124,18.235668,8.304302,33.236008,25.954758,42.537533,70.47853,33.599663,66.941025,38.70021,-1.3938866,117.96115,4.146599,21.381844,289.21146,-124.343506,89.11301,1674.5652,1672.9104,92.03,-122.52324,283.38025,23.522179,5.316971,109.97644,1.626976,44.96671,62.875908,33.69577,72.805626,39.245552,25.16865,34.469727,9.036901,17.770416,5.8703394,-4.93215,12.736007,7.298462,11.496731,9.836838,17.813318,29.924023,-7.5917435,11.833164,40.118256,-4.001917,20.278519,24.98226,-33.28374,9.21154,26.618263,-15.245449,17.733286,17.077717,-12.128077,15.8245325,12.41814,-12.1386175,-7.9933176,6.3320365,20.14905,5.977931,0.93129826,14.438426,0.91622305,6.935867,11.323648,null,14.999101,2.9947057,-4.0536823,11.680208,-1.0568852,-9.706591,-6.1223707,-1.1613593,0.59917927,-14.997807,-2.3429232,2.3267508,-27.654507,-8.400496,-6.587972,-28.035488,14.566874,-2.2563276,-34.487144,23.678421,4.7432804,-32.76994,15.762423,4.47215,-18.356432,2.8409147,0.004266739,15.481576,18.516975,-2.7586622,-0.45160484,-4.270036,9.282452,1.8703556,-28.605377,8.929136,22.999138,13.116001,27.076342,4.4887357,18.082026,-19.041073,-59.457325,58.60965,-13.539636,-47.05523,200.15631,-51.267647,-211.65431,433.5619,399.16748,-234.48549,-24.121143,210.33482,-42.135704,-0.39517975,68.19519,-17.551529,25.103432,7.541767,-8.816002,47.672142,13.390008,-5.368409,8.990204,-3.9570885,0.67699146,-4.037841,1.0834789,12.441792,10.240656,8.988901,-23.284386,-9.473576,23.726034,-19.006666,3.1221704,38.57483,-6.8093643,17.849102,17.599503,-35.594906,19.09315,29.200111,-16.124058,26.989014,21.449942,-23.452938,-1.5229187,2.2847376,-11.816317,-4.749462,5.818538,10.851864,-9.05109,-8.7129545,7.45751,-11.129405,-2.4251184,14.2446995,null,6.468538,-10.443574,-15.17331,6.9155226,-12.238218,-19.77552,2.347519,0.3642702,0.2639928,1.3519974,3.5540226,7.6235056,-9.42587,-0.4876356,-3.506647,-32.452354,7.656517,11.7780075,-33.065357,11.236113,17.758558,-18.260643,21.341522,5.7663364,-35.52886,-4.994011,-4.9049406,-13.884819,0.9607115,-8.507309,-14.096048,-8.851497,-4.2470837,-18.871414,-25.314444,3.4509501,-16.86829,-8.65037,38.344578,-32.926422,-38.812077,14.848694,-48.909004,29.368988,80.64909,-91.7852,1.1842365,169.19154,1.2201118,-133.88658,-122.28712,-9.485523,143.50662,3.3522873,-111.577354,52.229465,30.401785,-64.004196,3.2014027,-13.743342,-27.132334,12.746756,-22.304016,-8.468245,13.582004,-25.329992,-8.852791,14.443847,-2.191217,-2.9662852,5.349396,0.9361572,-18.846376,-16.06975,-3.801014,-14.913542,4.978756,11.531363,-19.511988,-1.2023678,-0.38453865,-32.635044,-10.39764,-0.6217499,-6.669546,11.191992,-6.986595,-16.052816,1.9693618,-15.590119,-16.462502,13.196339,15.638771,-5.1953006,-18.179037,2.567472,10.918667,-17.551767,-4.0902367,19.553644,null,1.2808409,2.9890432,-6.167459,7.150922,6.7102594,-10.188135,-0.9375094,16.029959,5.207824,-11.265518,5.543647,21.747215,1.9365993,-2.9680052,5.9730167,-7.1856637,-4.7016573,1.7364345,-6.2624574,4.778223,5.015215,1.006434,16.057621,-2.9332209,-14.71237,19.469378,22.637398,3.0493736,10.34599,17.683178,-2.7639124,-21.12517,-0.62711716,11.117304,17.732628,50.7054,17.338829,-13.0109415,35.915634,0.7556877,-27.724192,37.849197,-0.06892395,-0.2316246,108.10267,26.824303,-92.85554,12.947262,140.17453,151.27164,142.96487,117.83895,-13.088448,-109.13049,24.439167,115.24956,8.014671,2.14719,42.294044,-17.890713,1.5173845,36.477913,-6.244152,5.4990754,32.8672,15.057621,7.482007,13.759865,14.370255,0.2792008,-7.112223,-6.012212,-2.0622241,21.426239,0.04442644,-28.038595,17.044392,8.261478,-26.049152,16.005001,4.1239395,-26.596676,8.758392,7.827627,-1.1879563,3.6833591,-17.245329,-3.4765797,5.2766604,-13.5063,-0.6365285,-4.8398266,-10.671869,10.750515,-1.1995913,-6.026257,6.9804068,-10.453682,-11.739236,4.0012894,null,2.0780673,-2.8245516,0.7896482,8.44371,-7.4557323,-9.019053,-4.737874,-23.406809,-5.6754293,8.307778,-16.125309,-2.5059853,2.9881792,-14.25017,4.2386284,-0.9800441,-9.808879,7.113577,-5.6555257,6.937805,20.084068,-16.043129,-0.87296295,17.384937,-12.955737,5.4142804,25.392756,7.404193,9.688368,10.506243,11.840647,18.33115,1.3754413,-7.075483,4.0527477,12.680766,8.026295,-0.8681879,7.345618,-6.8810387,-28.201399,9.653906,28.333395,1.02561,29.687756,70.308945,27.367126,-46.89532,-80.77704,-88.91628,-89.1295,-72.84391,-47.631767,10.41399,70.324875,28.424402,-24.222353,4.2319536,-13.1465645,-44.073307,-2.6347866,-3.2368088,-26.866209,6.5651784,24.203484,14.849802,12.45211,7.2561936,0.53574896,-6.0303373,4.3736763,14.605607,4.5735235,12.932442,12.881448,-11.420051,-2.4788604,7.809654,-7.270986,-5.898231,0.92490005,4.2107396,5.7423477,-5.9899435,-6.0010166,-1.9036808,-16.66074,-13.618147,7.1195908,3.3514714,-6.976796,-1.0286999,-3.9900458,-7.9136095,4.2024746,-3.3232813,-17.77549,3.6597173,18.288656,0.05573225,null,-0.8858931,18.040953,4.3960648,-22.341206,2.9265242,11.187505,-8.959272,1.5911584,10.369394,0.43214798,-4.9926996,-3.6553698,2.2531629,2.5001173,3.7691727,6.4578648,-3.3633127,-5.651509,0.61928976,-4.892206,-9.51545,-1.4703317,7.0453835,0.6514454,-7.0891714,-5.4747562,-13.643811,-15.982865,-4.978299,-5.4756317,-2.6925821,6.295793,14.229654,18.60785,-3.075509,-6.4214315,10.909273,-19.241821,-26.215279,8.449854,-15.377798,-33.39524,4.0220814,9.687731,-10.343748,-15.621718,-14.149024,-4.652405,5.917633,14.511093,10.594052,-6.5952916,-2.73871,3.641921,-12.693702,-10.650443,7.2058563,-5.32917,-31.99019,-33.84307,-15.807133,8.556055,24.05321,10.954189,-1.7858706,5.105797,0.6778369,-5.282798,-1.317544,0.872097,11.847894,10.320419,2.2603168,16.816744,11.071884,-3.4901972,7.3317747,3.890479,-1.7495279,0.91430116,-4.577614,4.0660267,3.0236015,-4.286203,4.524826,-6.3000255,2.5995135,22.583662,-11.239363,-13.289228,15.912428,-6.7606287,-10.684342,6.8309293,-8.999846,-8.862381,4.8829403,1.8660045,-3.8783946,-7.26249,null,4.9713564,-1.1347334,3.938446,8.484523,-3.3369908,-2.7896347,13.652241,-7.6341763,-14.113003,13.800264,-5.67768,-16.243027,6.7983384,-10.770775,-13.606661,10.080817,0.76732826,-1.9034967,6.3286915,-1.8836818,-8.956201,-7.7674484,6.0944605,3.6788402,-10.982944,15.518207,24.833921,-10.922531,-2.747459,28.023602,23.487226,14.362252,10.513348,24.105194,53.2034,25.943329,-23.811188,5.619375,36.07012,-12.15527,-32.131065,8.416066,25.090742,20.46245,23.400478,25.428307,8.222904,-37.65602,-56.784363,-36.827835,-44.984566,-65.695496,-51.229557,-10.938926,25.34661,28.40187,25.962296,35.420723,21.264608,4.8622074,-0.2748742,-5.503314,10.290363,15.331852,9.535931,31.60199,22.347311,-14.002588,-3.7916684,15.251028,12.393635,8.723733,1.7293091,9.059999,19.871204,-0.9918051,-10.4501705,12.658293,8.80746,-3.842874,20.532352,18.929953,-4.6214294,18.051012,22.399084,-5.7334137,7.5026736,18.955446,3.608418,-4.268042,-4.151955,17.484135,18.094555,-8.617502,8.412972,11.250954,-10.3185215,14.733658,9.602333,-16.83564,null,-16.29851,1.5752255,7.011245,-11.18737,7.64091,7.892019,-7.965619,5.9063263,-0.59807634,-8.168455,7.41746,11.814327,14.998598,-3.2302094,-17.243866,26.029224,27.824324,-18.73315,9.427711,42.682728,3.3231688,-5.4569016,20.309822,-2.9128475,-21.12339,4.6733685,3.5820937,-19.736721,-16.398634,-1.557189,10.103033,6.0289335,-10.652788,-1.5608916,21.338951,16.882097,-20.265594,-45.832195,-12.047066,16.733803,-2.2330093,13.981432,44.1071,19.21656,1.208889,16.089773,15.363836,-9.741549,-36.83002,-43.284256,-36.819622,-19.820665,13.96688,23.124313,4.689501,10.1456585,40.56438,48.652206,7.5306168,-16.228703,22.87592,21.403389,-34.073174,-18.996056,35.311462,25.922205,-1.15903,13.566278,35.03319,34.91358,21.665487,9.794243,22.074825,31.866196,4.742514,0.021263123,21.312859,-0.4471817,-19.370106,0.39632702,5.4548845,-6.445327,-17.175262,-15.286791,-2.2683449,-5.9863815,-4.862023,1.3335786,-7.2004113,8.203828,15.266378,-13.90753,-13.295851,-1.9753485,-11.781658,-3.5779104,7.45112,0.35975456,-2.7271636,7.2987037,null,3.69487,-12.6805,-15.110074,9.72328,4.344603,-12.58372,4.6775436,3.2945352,-14.3360815,-7.686365,-4.847066,-8.522847,-6.6899486,0.036709785,3.6914225,-10.558121,-5.251762,4.9752035,-18.690577,-6.1622252,17.54883,-13.416832,-8.914229,29.557241,13.942065,-14.45893,-4.372547,27.220537,30.627472,-3.904964,-1.1659746,37.01784,32.49103,-8.179192,-23.885696,10.496771,28.617413,-17.835203,-33.687485,15.909379,33.759373,7.1302834,-4.530964,4.1911907,8.652779,4.359043,-2.567553,-20.685308,-42.519974,-42.668667,-26.792358,-15.215951,-8.9607115,0.6987896,5.3069706,2.3427715,13.957967,20.891703,17.64875,46.21359,49.262978,-12.602947,-34.388958,1.9123268,11.1390705,-16.551336,-29.497318,3.5054507,24.644663,-1.4863462,-5.7570486,0.3007598,-16.577772,-5.555704,0.3010249,-11.618796,21.448996,22.144728,-30.366644,-4.6066303,34.750153,-17.282604,-28.613934,23.302029,7.170969,-18.287254,11.33146,12.882273,-4.1843243,3.4370646,6.5307217,4.992772,1.7191455,3.2427177,12.088769,-4.9291334,-13.18329,9.076943,8.897673,1.4816518,null,0.37934756,-7.257143,2.5301943,6.0412593,5.7494626,7.6280184,1.8331108,2.5938675,5.6673136,6.9758067,4.6953526,-5.9439936,13.764869,35.402077,-3.4075913,-14.314823,30.697016,10.626361,-19.599567,25.9771,23.284296,-18.037441,17.82946,30.020628,-10.814402,2.162444,10.176383,-6.88978,21.177917,27.19101,-2.9957948,2.7121754,12.769201,-1.2102256,-18.156752,-14.531103,28.311892,52.471855,19.23715,-3.9502773,20.943266,53.88791,43.461445,-1.0367823,-12.78084,6.6067123,5.631466,1.6443033,19.920696,30.057022,18.443193,6.9657936,0.3086853,-0.09879875,10.227583,8.23237,3.2255077,33.30497,59.1985,27.154696,-14.899091,-1.7146852,14.658449,-30.739155,-54.69084,-13.142133,1.5147991,-4.745715,4.6689897,-6.3443418,-1.3740101,18.950504,-5.056511,-28.402987,-10.749393,15.219041,3.5398974,-30.354445,-3.279594,21.85738,-22.825943,-13.994241,25.212097,-1.2448521,-9.646351,3.3571272,-7.2007647,-8.083232,-9.162736,-2.6569793,0.043225765,-15.123954,7.539396,10.9089575,-20.243076,13.142008,23.961845,-21.660221,1.2376127,25.838932,null,21.711483,2.6687536,-28.142038,21.197023,13.571241,-25.888088,5.8348155,5.321329,-10.967131,12.92817,7.057439,-2.4512985,0.65303993,-0.7632189,15.491839,1.3397598,-15.218052,8.625252,-4.501061,-20.7094,-3.0708697,-11.497338,-11.4139805,2.4022336,1.0108147,14.114212,5.447204,-20.189869,-6.2535353,12.182918,16.85311,1.0944695,-32.94713,-8.9734535,31.003555,-10.959668,-45.216965,9.198787,58.69998,36.467163,5.8713474,14.911544,23.115257,10.272521,-7.1252174,-32.053368,-40.25832,-16.59518,-8.162125,-20.275091,-16.555252,-14.090956,-22.437435,-14.319288,-9.5218315,-23.503033,-13.713826,15.583237,15.209458,-5.684683,-0.7211628,28.42007,21.417229,-22.115513,-24.63235,2.6685872,1.1253605,-14.066679,-20.68512,-4.6645794,7.0089855,-26.054342,-26.871496,9.156313,-12.525469,-22.140997,3.9678335,-19.911707,-12.4686775,31.66797,-2.919662,-20.80337,29.11063,20.006432,-11.559055,10.980996,13.577058,-5.730118,9.323735,18.108059,-0.7737169,-7.281038,3.2865717,9.933344,6.935711,10.546067,16.87685,-1.5368147,-10.761473,5.5957804,null,16.693478,2.3157578,3.6043072,10.366682,-4.7102156,-8.155039,9.783581,13.132437,-9.83093,-16.491821,10.923785,11.924114,-15.843427,3.2021532,24.46278,-13.103963,-10.408116,25.7241,-10.318876,-18.789454,27.473751,-2.4253325,-21.732533,20.23404,-2.8569853,-21.031776,17.25482,-1.0220039,-27.2719,0.5560994,15.737246,8.390982,-15.521387,-36.30872,-2.7528963,33.88859,13.822842,-13.241201,2.111268,40.68396,54.164036,29.073639,-3.930027,-18.296146,-7.7123833,7.871599,11.966273,21.189842,25.88276,5.8449516,-0.2243967,25.050852,34.53296,20.529938,12.209199,3.3516026,-6.669398,1.4423943,21.613413,34.24272,21.801344,-4.24736,1.4103346,31.107422,32.039345,6.29897,-5.047228,4.9205694,10.302923,5.981642,-1.9061689,-13.011145,1.5729918,19.713816,-9.140122,-16.818037,20.228376,19.768345,-0.06892967,-3.6986842,0.13082647,12.442556,-9.6943655,-27.094707,11.958321,12.510256,-13.430602,3.3896856,6.5439487,3.488247,4.1101074,-11.91943,4.943233,9.516363,-11.8465,16.489563,16.638819,-20.972614,-1.5438251,4.820509,null,-5.091586,20.637197,-6.2183585,-16.248434,2.916663,-4.3329263,-0.558836,9.5341,3.2720087,4.8105736,4.748669,9.681095,11.578234,-10.359677,-4.157096,20.389648,7.6618843,-3.3235807,6.7279854,7.347275,-4.3494115,-18.505571,-6.8134346,15.094228,-8.369702,-32.250477,-5.626233,8.895803,-5.600335,-1.9116566,-6.550971,-22.833195,5.7858686,25.949633,-20.617096,-36.259117,16.743347,33.30097,-1.9950924,-9.133669,16.357815,23.166962,7.501653,-0.3949585,-0.9104986,-11.633997,-23.727398,-20.173801,-9.011881,-4.2077827,2.1273842,7.7445803,-6.856434,-24.727911,-19.117645,-3.3011713,7.42729,13.265805,9.795613,-2.4649792,-4.81617,15.607085,39.557182,45.3481,24.974758,-7.3651505,-6.3990297,14.765112,9.592034,2.7613957,0.46693993,1.1808815,25.522453,10.93629,-23.431536,8.373197,18.48626,-8.833187,11.467707,6.706783,-11.143198,26.61255,17.870106,-19.538326,6.1417294,16.206758,-4.756317,2.7675238,9.518251,5.1101847,4.4631753,1.0858636,4.485261,1.8660731,-13.796133,-2.6852007,18.383001,-0.31202507,-12.028208,10.482485,null,20.504047,-2.3793259,-8.875836,11.28981,5.400935,-6.3186088,5.160116,3.9357488,-4.0976753,4.214715,-2.628697,-4.172265,4.305137,-21.454056,-16.658945,18.285862,-6.4446926,-15.775365,14.705706,-2.7649117,-13.220568,3.066927,-10.318007,-9.972797,3.2031403,-5.7696967,-4.9548264,-5.0001945,-20.613487,-20.888216,-8.811363,-6.417445,-8.863269,5.4409046,20.47201,1.0995417,-16.108196,6.132024,25.825094,10.403952,-18.18041,-27.366302,-14.967621,-2.597475,2.3699641,2.5435505,6.9480066,10.17516,-14.937845,-38.120125,-18.443851,1.7283134,-4.314171,-6.8771963,2.3270562,7.098934,-10.830479,-35.157803,-22.192606,14.7881775,32.449783,30.461346,13.996247,-14.143998,-15.227146,15.125328,10.594543,-23.624283,-10.199226,21.488161,11.819994,2.0891142,5.6460366,-2.986814,1.6537828,11.402767,-4.2721453,-15.65068,-4.6938295,9.089498,6.2329645,-15.766425,-11.955658,17.441196,2.8325157,-24.034378,-4.504656,8.5729265,-0.42280948,0.33104205,1.6879363,5.8053064,-4.5529704,-19.75683,7.7331915,9.7719555,-24.550026,1.2976315,13.999303,-25.633808,null,-19.705784,10.926948,8.885162,-15.064729,17.905544,15.960228,-16.430782,-3.301986,-0.058153152,-0.84934044,13.643269,-3.0639944,-6.9654117,7.5642877,-12.2113495,-11.608062,15.904204,7.126291,-5.913523,2.9521794,11.409406,17.438766,2.5560408,-20.005339,-6.111845,16.07615,13.966023,6.1782827,-2.6890726,-6.5901318,7.8106093,16.04715,-3.9678583,-17.267403,11.42947,41.155457,25.313942,-3.641596,-5.3959217,9.785061,9.300402,-14.450189,-16.78724,11.226742,13.350964,-9.835413,-11.491451,10.553009,22.86178,1.1321647,-22.510542,-12.774728,-1.6026859,-10.59453,-21.871342,-18.624748,4.51132,18.14936,13.793354,17.762701,11.174177,-12.8997345,-16.583975,6.225878,28.707275,12.491808,-30.249367,-24.861666,19.252563,25.801836,1.2835593,-9.703829,-6.619552,3.5072484,14.912857,3.6484575,-12.636442,4.4636602,14.038179,4.169635,15.719682,1.0775561,-20.677654,21.61288,25.664494,-19.588606,6.730521,29.064827,-4.9133873,-3.731169,8.061654,0.7540548,10.054893,7.4832287,-4.905457,4.780322,4.0862255,-8.534817,8.034329,19.325607,null,6.208308,1.8752732,1.3373666,10.885726,9.179785,2.026719,8.501447,16.45723,17.957748,24.232964,9.717247,-9.970013,17.856106,29.96766,-6.6137295,2.826891,40.991646,23.716682,-1.6265235,10.560364,15.635774,2.2527237,0.66343164,5.297208,4.4103518,10.091558,14.966679,11.737172,11.637562,6.9975924,0.7247715,5.0640182,7.031414,6.169293,4.4118423,-0.93121266,6.5475206,15.485253,5.9363213,-11.638899,-25.296621,-12.139294,18.84635,19.172626,5.588314,11.777602,13.619919,2.024706,-4.9282265,-2.2042823,3.115,7.6422086,11.457024,-3.2419624,-20.956766,-0.42886543,14.864798,-15.999539,-36.933384,-23.234884,-6.1938477,4.123827,10.4072895,12.880566,0.3739462,-16.231709,-2.2784882,8.668357,-18.720875,-28.899895,-7.176553,-2.5517619,-6.4456167,-0.4291649,-5.226741,-12.35339,-2.8035316,3.2181473,-8.563409,-20.1773,-13.8985,9.491682,20.43032,-3.9760916,-17.391243,7.6323323,6.649699,-16.94093,3.1194506,16.53712,-8.504108,-4.2485027,8.255658,-1.8981023,2.9446673,-2.0510333,-12.416139,5.12492,1.0827687,-7.3919363,null,2.8335705,-7.186805,-7.5784717,7.377834,6.0181856,-14.601825,-10.97991,3.913641,-9.423977,-19.547508,0.39029503,5.4500856,-21.867126,-23.68673,2.4619584,-6.0649605,-23.249577,-9.004284,-7.338676,-11.945409,-1.822382,-15.446739,-19.620039,11.165556,5.6276646,-20.903141,-9.858216,-0.97341967,-6.8532047,-3.6348867,-12.228597,-17.72852,1.802207,8.501749,-5.2620916,-10.161616,-3.1320968,6.1580653,6.836748,-0.55983543,-4.942812,-5.4176345,-1.0289993,-7.171608,-31.243631,-25.628979,15.130814,27.945274,9.440176,0.9309864,3.4020014,5.7688065,14.46852,27.73012,18.733704,-15.669244,-30.25056,-12.693527,0.36253452,-0.5025244,3.2263937,8.505968,-5.9071674,-23.557838,-6.101279,23.265507,24.9061,10.679651,-2.6094847,-4.77668,3.9424653,5.2003126,5.379925,4.7630024,-2.6976666,10.5226345,18.95121,-9.822491,-10.678968,15.641166,-1.311376,-11.121673,14.535913,-0.81501484,-21.532946,8.7279415,10.410038,-22.234543,-12.671423,6.8221455,-2.505283,-10.545405,-5.7021666,6.3493023,6.053706,-5.0220327,6.4280376,15.109847,4.5736866,7.472354,null,5.69121,-3.5035,12.995346,11.5897045,-12.334577,0.6716045,19.225239,9.253394,-5.129822,-4.0911074,18.442667,18.716187,-11.675974,-0.43122125,24.81342,2.2599468,-10.304574,-2.826292,-18.862074,-16.81913,1.6367998,-9.756181,-11.244316,4.405607,-2.5785599,-1.3288848,13.14846,7.884467,8.998942,20.87077,17.89808,10.251221,-5.4054294,-18.05431,-0.64865017,9.421173,-2.3360796,-5.359359,-20.81065,-34.329525,-2.2379775,15.094136,-15.280764,-21.798931,2.3196526,10.377894,2.8093338,-10.564409,-14.117659,-0.8255477,-2.232851,-11.805901,0.31433487,9.152334,1.7515254,0.15629959,3.710661,8.44751,5.6382656,-18.795334,-35.151726,-16.417793,5.7071095,0.6117811,-12.160202,-1.9378393,12.945512,2.3493195,-5.200216,1.0723343,-14.342244,-22.741898,-1.6115751,-4.490338,-13.220761,5.703743,-6.6314583,-25.058754,9.842076,24.495304,1.054759,-1.7749863,-4.3895974,1.8052368,23.87122,1.3855991,-22.845898,1.1091897,8.303349,-7.011637,-8.235884,-2.7143202,5.3526993,-1.7826676,-8.144377,13.834015,9.384165,-17.695393,-1.2573307,17.000187,null,9.727394,13.643984,-12.097904,-8.197037,4.4490337,-1.0306482,-1.917242,-3.6944077,1.7222961,7.8341866,-4.636667,-0.2934296,8.430617,-6.6635942,-3.0680068,5.071804,-3.437869,12.879587,18.280382,-13.155916,-11.238534,14.767662,4.929454,-14.060329,-8.622845,2.7098618,-2.244173,-20.526913,-23.147467,-3.0605817,1.4234593,-16.229378,-13.287926,6.489853,-1.1456661,-20.841959,-10.913744,6.931973,-3.0261078,-16.391487,-3.8107018,6.982172,-4.6068993,-9.904724,-1.1994414,2.8840818,4.3373213,7.6005707,19.700949,37.72327,28.465614,3.3129609,3.8054037,13.860262,14.806978,6.8216887,-16.408577,-18.015026,11.220917,13.589941,0.6532254,11.377071,11.755267,-2.4846878,1.4454899,7.2965946,0.15940809,-4.812737,-5.1178217,-5.0727587,-3.9902005,-3.7828655,-4.6447177,-2.566411,-1.2727237,-8.753822,-14.002171,-5.624979,1.4816594,-3.9420595,-11.8354,-8.636435,4.793116,9.674356,2.4712286,-1.0303249,2.7306385,11.231868,13.80949,1.6339765,-3.4632778,6.5528607,9.861828,1.667677,-5.891276,1.3485918,11.786123,0.68955135,-5.3897066,6.914222,null,-3.5512972,-0.014838219,-12.647404,-5.7204156,10.805395,0.36069238,-19.56546,-15.086998,-3.304709,-9.040707,-16.926212,-9.082024,2.2750187,-2.61695,-13.288023,-9.23419,-6.7752085,-15.208187,-12.549148,-5.54061,-7.7068715,-7.8648357,-5.154584,3.300356,11.832056,0.3264799,-5.5583334,10.3465805,7.183755,-10.1034775,-5.0506873,3.8151054,1.5251064,7.0393624,12.640655,-0.8400116,-15.670376,-12.294714,-2.3513212,7.1866283,13.389282,6.504172,2.1826177,4.6607504,-2.443985,2.4517078,14.910007,-3.450735,-20.55389,-8.424799,0.8081999,4.4893017,2.1671848,-14.857203,-13.107546,8.536091,16.316038,18.609781,19.424774,1.7270155,-16.921204,-10.104944,7.7682858,7.731731,-2.7556372,-2.8727217,2.645277,9.538384,10.932899,-5.069035,-13.28668,0.23394728,2.058301,-11.455385,-13.89886,-4.3852987,5.5509267,4.0540104,-10.062017,-14.392209,-2.7653446,1.6948957,-5.250201,-7.3975706,-4.9322815,-0.56331134,6.3315825,-0.7812158,-14.257348,-3.5118928,12.522675,5.1524463,-7.1930723,-6.049448,3.4168158,2.9730558,-5.595421,4.615665,8.381929,-14.802105,null,-14.441041,-0.52507806,2.9665418,-7.0365753,0.91553414,7.4738235,3.8957205,2.0323029,-6.0580273,-7.9687977,1.3980193,-0.2142725,0.5409212,14.064476,17.51502,17.923746,16.355492,-7.677939,-16.59269,15.659621,25.884924,-9.012519,-20.227024,12.398677,22.632277,-10.740963,-21.885931,7.990206,12.152348,-18.721828,-24.058151,-0.98596895,6.999659,-6.496435,-14.452691,-2.6003556,8.552739,2.9403784,-6.0055394,-9.973541,-6.760181,0.6461344,-0.64498186,-0.67514133,3.836701,-0.7129774,6.598381,24.25529,19.997509,11.214617,6.947125,-1.4017876,13.594127,28.8913,7.9918265,-2.0339928,6.7005725,-8.440491,-20.001068,-7.159712,-5.8744235,-16.716702,-14.883129,-3.711091,2.6206238,-2.6543317,-9.468827,-3.5310373,0.007419586,-9.692894,-1.6819062,24.469297,17.983202,-13.833509,-11.480429,15.680384,14.043776,-9.494871,-14.477812,-5.1804934,-7.447711,-16.839611,-18.09783,-7.347968,7.5411077,4.701437,-9.897377,-5.4874034,4.0849104,0.45662475,4.002246,5.202669,-9.75037,-6.8015223,11.078621,1.6740723,-15.300313,-4.6865263,2.2199244,-11.400368,null,-6.9472804,-2.0498817,8.213651,1.7413936,-5.984311,0.4231081,2.048424,-4.360141,-1.7400122,0.4989469,0.8777101,7.082041,3.475928,-5.2752657,-7.082718,-8.80017,-1.3904063,5.777815,-6.219805,-6.31641,13.646108,14.700259,1.0355501,1.1923547,6.9600763,1.7835715,-6.387662,-5.3287206,0.094712734,3.00535,2.1349401,-2.1102223,-1.4329674,4.891066,10.771893,16.516943,8.9451,-10.75979,-8.072515,11.945407,11.393618,-3.3668404,-10.221104,-14.413267,-18.090683,-11.611332,-1.7764735,-6.404406,-18.336254,-15.493562,-6.436557,-10.40442,-15.249244,-13.609675,-22.907372,-31.732235,-12.598562,13.976627,15.843102,4.2740855,-1.5205379,-1.3993025,2.5849047,7.0590706,5.6781936,-3.1253226,-13.732681,-15.90797,-6.893571,-0.11931372,-7.125103,-16.318485,-12.237488,-1.8518167,1.687191,-4.0333195,-10.41144,-1.7695222,11.316078,0.27209473,-17.115463,-7.6070957,7.6817627,3.5987883,-2.5080388,-2.5910907,-6.9785137,-4.1035595,11.533939,15.039375,2.357704,-2.4608927,3.158273,3.801516,-3.3650684,-6.980627,-0.7888913,2.0318484,-2.2801132,3.88709,null,0.19113016,-7.6515927,-11.530752,4.9954047,5.0833507,-12.171994,-5.6861095,10.385211,8.699558,2.59481,-2.8210924,-8.1602545,-6.7802696,-4.6841416,-4.8158493,-11.380006,-20.475723,-7.8844194,4.6829605,-15.172914,-22.634068,6.828987,20.996992,-2.1842327,-27.280804,-20.929482,4.015548,3.2644377,-17.046448,-12.079494,7.714412,8.09912,2.2679842,5.844969,3.4339907,-3.5716004,0.8883561,7.146558,0.99026084,-15.595176,-27.87281,-12.28824,12.724258,2.3689954,-17.177319,-6.043402,3.2109337,-1.968102,2.406907,-2.6099138,-16.37064,-2.3203535,16.063934,7.890504,-0.79115295,-1.55163,-5.7109604,-7.0252333,-11.398577,-18.944626,-15.037699,-8.5260935,-7.595599,-2.990032,3.17204,2.871612,-0.23105979,4.115803,11.326726,4.534136,-10.099075,-9.1227255,9.751542,16.956535,-2.475336,-8.936783,10.365305,13.909637,4.989004,-2.1306114,-14.172119,-1.1705872,17.195398,-8.7330885,-24.180296,3.7892306,14.799154,-0.34300613,-3.2596843,9.581529,11.639083,-3.601675,-4.3113313,2.7125406,-6.948502,-2.1738417,10.132054,-4.7080126,-11.21347,2.8735418,null,25.135933,2.4158678,-19.266403,5.986127,11.0556,-2.7530098,4.6643953,0.37049675,-9.176613,6.1917405,10.548315,-11.210087,-13.262336,11.6077,11.496659,-11.232575,-5.147196,9.578188,2.4689884,1.2737379,4.0525117,0.37470055,10.450755,18.080532,-1.1565723,-22.661293,-12.644934,14.590514,13.390693,-8.670026,-12.969338,-9.529966,-8.6771965,-0.7308531,-1.462934,-17.393589,-20.8299,2.396003,17.108349,-0.3514179,-2.5913515,22.614311,22.854603,9.512766,6.67648,-10.06773,-15.129693,7.887434,8.18643,-2.7930927,14.756855,24.057566,7.712432,-3.0874104,-8.903523,-8.803479,3.6152973,-3.371193,-26.334423,-20.528526,5.024268,15.382155,5.5105195,-8.757148,-3.0087738,8.945335,-4.687017,-18.607594,-11.959286,-9.330101,-5.971694,6.575873,0.076146126,-15.904535,-6.2839127,7.1165657,-0.071959496,-5.2276316,-3.1223917,1.9632988,13.745323,1.4251499,-25.509602,-10.963354,13.622199,5.1243896,0.642787,4.3995466,-4.3333583,-8.409182,-4.7235026,-0.9020872,-6.7126904,-23.988659,-13.693468,11.397154,-3.9494305,-18.110283,2.7612517,0.7115283,null,1.3087077,14.458133,-2.028348,-14.772179,2.737209,10.829809,-1.751367,-4.499652,6.1990457,13.264021,11.107954,4.4592547,-4.803481,-11.06222,-5.299,2.5340464,3.2550898,2.31057,-2.963986,-5.6532373,3.266446,5.260253,-4.430085,-3.9892914,8.593806,10.485726,-4.2535477,-9.414217,-0.45650482,2.713223,5.7434845,0.72706485,-21.021574,-16.794407,11.996702,12.942506,-3.9579258,-7.459939,-3.9023724,-1.7031147,-3.3063097,-3.8847387,5.193792,15.663204,12.631029,-1.5926538,-6.529776,2.5115914,3.1787148,-7.8276854,-6.72501,4.881383,-2.2863786,-15.881895,-2.0387278,5.8760586,-11.295414,-2.1857967,14.528899,-8.419271,-21.380161,-0.115290165,6.258194,-7.8833623,-7.88285,7.8631086,7.3534713,-5.244141,4.037449,17.337965,12.690237,3.628734,-8.152235,-4.735382,15.719704,10.294828,-6.296984,2.975397,17.421108,18.631119,8.079527,-0.66292846,5.353916,2.6176643,-12.016063,-13.494102,-11.713997,-11.632992,-5.986591,-11.019358,-15.971355,2.3095796,12.084345,-5.966123,-6.742708,11.937349,-0.64577687,-18.38979,0.38019305,7.7045317,null,-3.2149224,-1.0395069,2.5098376,1.8979053,-0.030189514,-6.577924,-6.0150642,10.731106,9.944697,-10.511283,-9.689781,0.35539603,-4.3916492,-8.337638,-9.306719,-8.325121,-1.6182945,1.3901542,1.3177092,-5.778234,-11.876915,4.2961693,9.708876,-8.285463,-6.5014195,3.980299,4.534135,4.8232527,-8.5197315,-15.238223,-2.4574902,-5.422561,-9.035927,-1.0149834,-11.384554,-20.326527,-7.01517,-1.1356859,-18.775002,-31.897549,-13.06552,-0.46081305,-22.471754,-24.671268,0.47722346,2.5483007,-2.5560756,13.089201,19.072937,-3.1732774,-15.910425,2.1858182,8.548664,-7.8891478,-5.1210036,10.208979,8.429897,1.2060577,2.3288589,1.7599916,-7.811217,-12.536399,-8.600079,-6.6818438,-1.7386291,-2.736145,-8.395778,8.659655,16.420542,-5.021391,-6.0441365,5.844721,3.3221855,-1.3100338,-15.481579,-14.967533,16.409512,21.401846,-0.2543552,-6.3807907,-5.1868467,2.0203195,7.8377643,-1.7454023,-0.0014669895,7.969852,-0.7291205,-3.7318149,-3.8797836,-11.158456,0.1165033,12.195396,4.6030235,6.945496,6.440383,-10.024548,-0.37276077,14.850614,-2.5510998,-9.424435,null,5.269335,-9.883303,4.5876207,13.759869,-1.206305,-10.374261,-8.99136,2.7136545,6.9504213,-8.416166,-1.6715744,17.411987,-0.50734687,-15.08674,2.155407,7.061208,-1.9030207,-11.22554,-14.903674,8.296959,15.689558,-11.729603,-7.4866505,9.085503,-5.6644216,-8.495617,0.2993021,1.1428239,6.779028,-3.5307913,-17.637857,-6.855901,-0.03135872,-4.0991483,-7.216342,-10.733994,0.007296562,12.977026,11.157555,11.102755,9.147027,-0.49481106,3.7580786,22.810062,25.744213,3.2410908,-7.069372,7.1242886,10.745958,3.573792,7.7498264,13.879356,6.2744145,-7.448195,-3.0939322,11.278259,10.427496,11.783138,17.74568,5.8087845,-6.55915,-3.7446494,6.10422,9.089947,-3.6509376,-5.9874244,1.5493703,-9.279308,-14.12082,-6.77915,-3.5190868,11.700506,10.49828,-20.104473,-23.285734,-4.7200923,-2.480198,-4.37251,-3.7252688,0.6936445,9.13246,6.6391807,-3.817049,-10.939528,-6.047674,8.263262,4.1544514,-11.35828,-6.6202307,1.681684,-3.140923,-5.9781137,-1.523087,6.427042,4.937605,-4.7524076,3.1507242,11.238904,-0.5378884,2.062448,null,5.1850142,-0.96177673,-4.2163644,-6.9397416,-9.832699,-6.599306,-3.5535233,-3.1020393,-4.49557,-5.3623543,-0.5466957,0.686925,-2.4645731,3.3285773,3.3006546,-7.446519,-0.47730088,10.085317,-2.5104914,-5.873781,11.033695,2.9319172,-23.469776,-12.186621,18.187325,12.806223,-0.39592648,8.117947,5.7179556,-1.4448271,7.8603363,9.926082,3.3189998,1.288296,-0.8603065,2.8625793,10.068646,8.243781,-0.9354181,-9.709722,-9.6598015,-5.2708364,-4.504654,-4.1914215,-8.043204,-10.643122,-2.9551764,3.781539,8.824827,12.843641,4.3405967,-9.336882,-14.878825,-8.897795,0.7723856,2.4547753,2.4453554,-0.20701432,-6.270198,1.3219486,8.156626,1.7755504,0.403754,-0.8442588,-0.22853994,7.31653,-2.7044165,-16.19922,-4.4591017,11.097395,7.853924,-8.403909,-12.657674,3.8274517,9.941816,-1.2274156,-7.004976,-4.106336,3.733611,4.982386,-4.718475,-3.3890529,7.907565,10.30507,6.342462,-4.041831,-18.126585,-13.971746,6.217904,11.833021,0.9909364,-1.6882548,5.9759827,9.940519,6.11576,-0.6372404,-6.536806,-10.388696,1.5127249,20.386326,null,4.641741,15.0666,5.34637,-11.523785,-5.049756,4.1172647,1.0671606,-3.6050262,-6.8378944,-2.4682245,-4.625146,-17.432373,-9.90463,8.545225,10.951106,4.4252653,-3.905828,-2.387888,9.598236,6.2523484,-4.7459435,1.2051711,10.538153,6.420069,-2.4549267,-6.652746,-7.741418,-7.0631666,-3.1730776,5.96871,16.641502,13.375743,-0.80536175,-5.413488,-4.240011,-2.1534486,1.8067485,-4.257641,-8.525927,-6.2770844,-16.52798,-14.338278,7.362644,4.985748,-2.7583234,16.98562,22.410503,0.55131626,-2.8576875,11.387089,11.048643,6.862737,10.604866,4.806199,-3.6369128,4.0178223,16.709394,17.516954,2.258195,-14.39109,-11.512026,0.37565517,-0.09018278,-9.148525,-12.257769,-5.5677595,1.7341146,6.370154,4.6079593,-13.180915,-21.169785,1.1276016,12.545216,-2.4534783,-5.5944986,3.1072426,0.29469466,0.228158,6.338167,-6.9079294,-19.12407,1.6167843,15.884667,-0.56094074,-7.8823338,0.75753725,4.47466,3.139538,-7.023282,-19.50938,-13.633016,3.0127609,3.0879521,-10.924437,-9.192993,1.1860209,-5.5802794,-5.9325857,11.251219,11.437395,null,-10.41536,-6.377495,-8.184844,0.98229575,5.4151373,-5.8526363,-0.38477516,9.780573,2.208766,-4.445734,-6.9914455,-9.141938,-2.4465008,8.92079,10.067036,-4.0387383,-11.009769,0.7163069,7.493164,3.9582417,2.906846,2.473291,-1.9271553,-9.534311,-11.914599,-8.145389,-4.0499573,7.269457,13.38728,1.2726779,-3.4015532,3.886788,5.343894,5.0466323,1.6067705,-2.1003978,6.288498,11.94001,3.039865,-5.270419,-2.7265072,5.88432,12.73323,12.784107,-0.037697315,-17.603386,-15.019051,-1.7076459,-4.9919977,-7.0207787,4.9767675,5.663321,1.0123343,10.776362,14.176847,6.124441,9.15029,13.303617,7.6010876,7.466503,11.394171,13.895004,17.94174,9.084936,-12.335985,-17.025208,1.2571688,14.372116,4.3169045,-9.188727,-1.6991739,14.406586,13.901139,2.105041,1.1583824,6.1579967,-1.7152634,-13.6952305,-11.447109,5.9318795,16.858822,2.5643272,-2.4514923,17.006899,9.880844,-9.513061,2.7510595,7.7142954,-5.8236923,-5.060527,1.4851866,3.4805555,-3.4797766,-12.643396,-3.1261072,5.2616167,5.0456276,11.193722,2.2506876,-8.021233,null,4.5412855,-2.114464,-1.3723962,-2.6066484,3.4119673,3.5784178,6.8076406,12.88843,-1.6268833,-8.251847,-0.2722602,-4.7515182,-2.019836,1.818794,-8.356467,0.27215815,14.0765505,4.5528674,-2.9539008,-1.0681448,-0.20218086,1.7838573,-1.336462,-4.102173,2.9551296,5.182581,-2.360708,-1.8153917,8.513618,12.094669,7.6469755,5.2756844,5.772897,3.1397362,-5.577607,-7.822911,1.4265213,-3.8185797,-21.550735,-15.983278,1.5927525,-0.30156326,-9.613211,-6.664639,2.8359663,-0.11101651,-16.962534,-18.645824,-4.567967,-6.259386,-8.459766,7.2549276,5.1051893,-12.66088,-7.3087177,-1.1197705,-16.504063,-17.632528,3.6890001,6.339482,-17.560358,-24.642078,-3.9206626,4.297498,-3.82825,-4.7463984,-5.234204,-6.430228,-5.3047204,-7.9603,-6.5326014,-7.9708433,-10.036316,10.98764,24.219944,2.5960588,-12.555209,-4.1823897,3.070647,-0.95619833,-5.7668366,2.0502996,7.890414,-2.2716112,-4.781298,8.076105,10.686325,0.65171885,3.42869,11.931839,-0.7641971,-6.846751,8.938356,0.666235,-16.484226,-1.8400538,6.064618,-7.24162,-7.007345,0.08665323,null,10.259968,3.695947,-1.9438446,2.9180365,2.2765856,-4.2192802,5.996054,11.231604,-3.195862,-4.7957706,2.8849602,0.5785308,-0.6160196,1.6540568,4.624359,5.889928,0.32565212,2.7039287,14.248957,9.067659,-4.01916,4.7021484,16.189129,4.5538588,-6.8166747,-6.1220436,-7.3919215,-4.7745476,-2.7226415,-6.5687685,1.437336,9.407881,5.0764813,4.2782717,-2.297316,-10.102042,4.7778707,14.380468,-0.028177738,-5.1054077,4.769189,2.587459,-11.005259,-8.606655,8.852467,6.683982,-7.9644403,2.350752,17.514954,6.7821565,-3.1616511,3.115481,2.7186007,-2.7699838,4.8252077,13.007733,-2.5035002,-27.589863,-21.61096,7.113942,12.665717,2.723339,7.5243454,10.866934,-0.5924103,-11.697878,-14.852318,-7.8134713,7.0589466,13.70756,4.451412,-5.739931,-3.269833,5.2543497,9.240713,4.0657415,-4.1395626,-1.4468703,0.24187827,-8.737951,-5.1090126,1.0373392,-11.779122,-14.126893,4.414972,14.542536,4.028463,-9.222731,0.9238446,9.7073965,-13.272955,-20.57809,1.3719203,0.34171867,-12.316684,-4.114771,3.4593506,1.2953601,5.9279556,8.590937,null,3.1393383,-4.3916283,-4.583441,4.966171,-0.90199566,-10.717624,-2.8849177,5.537845,-0.5378642,-3.981523,1.7664855,5.661864,1.0469875,-4.6740265,3.2226295,10.612404,3.4051015,1.5871953,4.379673,0.52757144,-0.39203072,-4.2444916,-10.55761,-2.97487,12.01488,22.870796,24.42948,15.53818,5.553253,-1.2414031,-0.4097526,6.4952126,3.6575413,-5.3938904,-7.42955,-2.560529,2.2921624,-1.7700968,3.1097121,26.077091,23.479301,-3.907989,-2.8620014,14.193827,7.7493596,-7.4486494,-6.41246,2.925423,-1.1191657,-9.670997,2.7886512,14.558087,-1.3501997,-15.052,-6.5646715,2.74467,6.8350635,12.182399,12.454729,3.1275513,-5.5225906,2.5006871,12.255735,-2.5319915,-13.840398,0.57655907,4.841305,-1.539093,8.350562,12.531006,3.0424137,6.2680306,16.41514,14.940203,5.201669,-1.5627589,0.83290577,2.4667935,-1.7225747,6.1116385,16.34097,-1.7313671,-16.368402,8.495144,21.281296,-1.3055906,-2.7031639,15.704393,9.366713,-6.4658284,-3.4522986,7.426953,5.4931674,-1.8007164,3.3033907,7.5127945,3.3040843,-0.9403485,-11.935673,-13.354361,null,-0.617188,-2.0894728,4.8757772,8.22658,8.940062,1.1148925,-7.8545656,-4.1591463,7.6796346,8.562524,-4.0312705,1.9167147,19.508244,6.7403502,-8.5382595,5.054824,11.576722,1.0229781,-5.7207313,-5.498556,3.7057357,8.752538,-4.4858174,-15.712298,-8.393201,4.6211357,3.0626965,-14.132698,-20.668343,-8.451535,-4.2044864,-9.76709,-3.3699894,2.891303,-5.9240007,-5.7362013,7.1316576,2.2328353,-12.008674,-10.153706,-6.5881205,-9.8244915,-7.406684,-3.8243887,-1.4494382,2.8951178,4.5236635,11.319617,17.636707,3.6474714,-8.559521,0.396919,5.109153,-1.7079129,-4.403677,-2.2516766,-3.4671414,-12.572193,-19.915552,-24.166677,-33.643375,-28.848158,-7.2364726,3.2491603,4.7518053,3.7845254,1.4921594,10.2502,14.776251,7.044323,2.2785747,-6.3748784,-11.183735,-0.044967532,6.8435926,3.8875449,-1.4216149,0.10579586,11.757236,5.701297,-8.753792,2.218113,9.217241,-5.3359,-14.421488,-10.740848,5.5116405,14.911715,-3.9867086,-15.59694,0.8368299,10.051675,2.0220194,0.11580944,7.828211,11.676186,7.7356186,-1.0902805,-3.7580492,10.183922,null,-5.235212,1.2360862,11.360048,6.7452736,0.8400183,-1.7337189,-4.981898,-10.51706,-6.579728,4.5087714,1.7406173,-1.863728,5.92906,8.534735,4.4403887,-3.118063,-3.0783882,6.939028,-4.963722,-19.600893,-3.662498,1.4352765,-10.911564,-6.4162235,0.63575673,1.5401611,0.2819252,-8.698366,-13.66286,-12.261431,-7.114359,-0.9798269,-8.61286,-10.567706,3.6468985,1.3541293,-5.7554684,4.969191,8.365864,3.1781406,8.169809,10.8920145,2.4417887,-1.6315782,5.2777357,8.6393585,4.2281575,0.45185864,-6.826533,-13.480182,-8.915813,-3.3169012,-1.8416271,-2.8679297,-8.104635,-4.232377,4.201572,-1.065053,0.62013614,18.487812,20.161251,5.6042585,3.731244,5.3820567,-12.089084,-21.770353,2.5837717,14.785674,-7.5768347,-9.300489,9.363716,2.1192539,-11.815217,-10.774793,-7.662973,-4.077676,-4.663995,-4.1501694,1.9765775,-4.3460283,-3.5809624,16.19393,12.455037,-6.4814167,-2.1439352,9.080615,6.612416,-4.7268095,-4.7520704,13.459842,16.484802,3.417221,5.2399397,10.996265,12.466284,13.429491,2.911843,-2.2650766,5.5611496,1.7954068,null,-4.7421856,3.2567196,-4.436183,-1.4802918,1.4668431,-7.79893,-2.4527764,2.754847,-6.6750193,-2.0147321,10.585674,5.1092725,-10.115218,-9.253187,9.664816,10.600611,-5.896549,-1.6843274,7.0718317,1.4476758,-1.1229944,-4.2737384,-2.288455,10.72858,10.190887,2.452307,1.5744474,0.8601825,7.198785,5.0149755,-10.822793,-0.71704054,18.02446,6.8667784,-0.9679432,11.438933,13.553041,1.5722106,-5.3602386,-0.5522181,2.7706542,0.7038574,9.267064,14.02538,-1.8621509,-7.371756,5.684728,9.549998,7.1296234,6.765932,-1.2337496,-10.367916,-6.333468,6.629915,11.943693,4.041645,-4.781412,-4.6980963,0.18003881,0.5520277,-2.1944537,-4.080226,-15.663535,-25.377996,-8.6916685,8.565601,5.914565,7.5319786,11.138991,5.5673084,3.2073977,3.2392902,1.6520381,-0.023902178,1.8823466,8.914133,-0.38640273,-16.415852,-3.5057018,9.556772,-4.6539474,-14.981703,-8.55469,3.4772046,6.9345465,-2.884819,-3.0897098,4.0107203,1.7055936,2.37072,1.4475243,-3.397163,5.802314,11.687685,-0.22156942,-9.017111,-3.9069948,7.0042057,3.0209286,-14.898934,null,10.283018,0.8920187,-1.6491284,9.355472,10.989518,5.547328,2.5720427,-1.4592304,2.9986491,6.5153,-4.84943,-0.42485642,16.162098,3.3820343,-14.076973,-5.6923723,1.1630373,-1.3140843,2.7482815,7.2144003,2.6055367,-4.9569387,-4.1967325,0.015088081,-0.56433487,2.4074414,5.330557,1.7543494,4.8087683,8.429093,0.29074478,-1.1490359,10.938103,14.582715,2.7675447,-4.952852,3.4378204,11.597605,6.458294,-0.33435106,-0.44566905,-0.002820015,-6.1756144,-15.815252,-13.4984665,-0.18098807,0.702556,-11.655432,-12.148814,0.22162533,2.5310173,-1.4825599,5.192669,6.2736645,-4.9810867,-3.0061107,5.442047,1.4433775,-1.5396464,-2.293001,-1.0604112,15.204346,25.175484,16.271988,8.702146,-0.7209859,-6.0383673,6.153345,7.41453,-5.1605997,-5.7629995,-3.4761095,-0.47416115,5.1444273,-3.4699783,-10.69634,-2.2475553,0.07573557,-4.9200487,-3.5150104,-0.68806744,-3.8045497,-7.459109,-2.791018,-0.90688324,-8.950488,-6.339593,6.9927177,9.556871,-0.6596556,-11.112642,-8.096062,-2.5244462,-10.354527,-7.870947,7.7496204,8.690872,3.9860826,1.673538,-0.53459,null,2.576356,-3.4900312,0.4255457,5.512959,8.71982,8.4534,2.8349872,-3.6326842,0.1394974,9.617882,7.367602,1.35535,0.78295755,-4.61336,-4.7525167,5.711512,4.2300215,-2.9644926,2.8060927,-0.43755174,-19.72362,-16.746632,5.7446475,3.7882814,-8.379193,-0.73468447,0.17777681,-9.076662,-3.9196196,-1.0397737,-4.4487877,1.894289,3.7464256,0.69047356,0.569026,-8.404111,-11.505857,-0.8432045,-1.5907118,-4.9502196,6.1490583,15.22126,18.563019,17.646852,4.112253,-5.5651917,0.9832659,3.6521125,-5.171679,-8.696913,-0.7737055,6.4544864,6.8722267,10.606348,16.992382,11.57494,2.6413336,8.598144,18.614777,14.095375,2.9962463,2.0126963,6.8322463,3.6902573,-3.108931,-2.1791682,2.0239997,0.17638063,-3.3286176,2.946153,12.368806,7.1547832,-1.2806575,4.4827595,5.912958,-1.2320054,6.248428,11.606493,-7.610064,-17.887728,-0.35437572,9.926308,1.0851998,-2.7665813,0.33651114,0.80952764,4.7704434,7.702053,1.5780613,2.9728556,14.216779,11.586309,-0.4185865,-3.60147,-2.0553567,6.1484694,14.249569,-0.34744382,-13.332645,2.0694218,null,-5.833741,1.6903512,3.8360069,-3.2748532,-5.4401755,2.9687016,7.357159,3.6421995,-1.5749512,-5.0049467,-0.9015801,6.787447,4.8925085,-1.1159916,0.7018595,-0.7583971,-13.480745,-16.705387,-3.3780227,4.6569366,6.9002457,11.426243,1.7198503,-12.119362,-2.8423858,5.905117,-5.9007196,-11.027414,-4.817205,-2.9613461,2.2575665,8.991485,5.344817,0.31849217,-2.4334505,-11.281225,-17.997612,-14.730389,-12.363341,-13.141962,-11.571965,-20.413124,-36.558132,-27.497292,-4.6393595,-9.542957,-22.622921,-14.124119,-10.917625,-19.126534,-12.445137,-3.5253503,-7.924369,-9.085767,-4.6042695,-3.7674294,-5.166296,-7.852646,-6.2421618,0.9138684,1.1349673,-2.4574108,1.7631931,7.526775,8.990297,7.6691213,3.8275805,1.1511288,0.86798465,2.2867239,2.3714542,-7.812516,-16.418924,-6.3731365,1.881526,-2.1634545,1.9815345,2.2820835,-12.834322,-7.8494043,13.268977,4.1801786,-14.266305,-1.1016798,11.97674,0.0692513,-7.0351615,-1.7013094,0.9487205,3.6856616,4.482521,0.33728504,0.90447474,1.3465548,-6.19605,-9.392862,-3.8803587,-0.20529985,3.074223,8.497333,null,-0.1381042,-5.1929693,0.7588984,2.2395132,-3.5654256,0.8783617,3.194072,-4.965396,-7.159387,-3.8186562,1.3015344,9.066492,7.2650113,-2.388427,-3.7836175,-0.9550097,-3.8223255,-2.9311576,6.665925,7.820401,-2.186574,-1.9995778,6.433702,3.0293336,-4.1281643,2.879972,14.691234,14.076175,6.535711,4.804863,2.998693,-3.429627,-4.3336463,-2.9789596,-6.0318108,-0.61120224,10.437139,8.210148,4.368699,13.5228615,17.237427,7.2268343,-0.82895947,1.134851,10.571346,10.639709,-7.5057154,-11.808472,5.08529,2.9193797,-8.631481,2.854012,8.687722,-2.3047352,2.5478313,8.920278,-4.7783995,-6.228136,11.381922,11.955172,0.41070032,4.107379,7.543485,-3.1138759,-2.9370499,10.16147,8.4736595,-4.3893423,-11.463995,-16.124496,-13.09373,-0.45350242,1.2874856,-4.0478287,-0.5241885,-3.4503245,-9.890192,2.2866206,10.299776,-2.1795297,-4.502035,6.466013,7.8796244,3.1132379,-1.6925898,-6.2740927,-5.6581864,-3.2565546,1.0036142,7.485971,4.0086107,-5.428028,-5.658784,1.3869159,6.8781605,2.453579,-5.2501297,3.2391899,13.578545,3.0712514,null,-0.585372,-3.5662856,-0.31028748,4.4315476,0.95989656,-2.0747304,4.1629763,-1.5924051,-7.711131,6.709844,7.3735037,-5.8430243,1.7726223,10.762577,5.137542,-0.6241543,-3.506709,5.5527077,16.565796,2.1854055,-15.00424,-7.6375403,3.6639686,3.0426946,-2.7660925,-5.7899256,-2.3618543,-0.14041042,0.2885952,11.128905,20.449242,8.707243,-3.978126,-0.4441334,-2.7898705,-8.596298,4.625959,12.866524,0.5060952,-2.015289,6.178023,1.349453,-9.140767,-8.216984,1.6345212,5.70992,5.246574,11.392455,8.05625,-6.9563313,-2.2267513,11.35934,3.2441158,-10.053935,-11.689003,-8.80724,-4.232604,-2.371263,-3.3367677,-1.4301541,-3.5089784,-7.741884,-0.7979429,6.0326247,1.2478204,1.3149192,5.752179,0.83355093,2.0967789,12.284657,8.201192,-3.1801248,-5.8920007,-8.347363,-9.431689,1.8250546,16.816528,16.977356,1.8530796,-10.480011,-7.4909916,9.108583,19.863686,6.7235384,-6.9726076,-1.0663364,0.6027228,-6.538496,-4.0135202,4.6396704,8.358311,1.7112489,-1.3080478,10.399874,9.194961,-4.400775,-1.1012967,2.5082173,-3.2300563,-1.5236058,null,18.12538,5.8767614,4.56087,6.331863,1.5135739,3.0058422,3.5450397,1.770433,4.5920177,2.6628034,-4.0581946,-4.1529665,7.763455,15.522062,0.67989206,-11.578449,-3.652349,-0.5959625,-3.138369,1.3608813,1.321002,-6.2382183,-11.455105,-7.762709,1.7925339,6.486681,4.659848,-1.1834421,-3.9384506,2.8269465,4.83318,-0.19430518,-0.022974014,-1.8037896,-1.7764684,5.876851,2.9320946,-2.0572205,10.298712,17.787745,4.659628,-6.4023347,-0.5636172,5.891096,-2.5011497,-12.010685,-5.6095476,1.4388266,-9.737516,-19.403515,-12.269757,-14.398139,-25.176903,-16.810665,-6.9991713,-8.861824,-4.9121995,-7.337086,-15.168563,-4.373153,4.976227,-3.995205,-11.806893,-13.16595,-11.138786,-4.846045,-1.0083349,-2.8796134,-7.1735935,-11.658789,-18.274868,-19.230085,-0.3183179,17.649418,6.378892,-13.156506,-13.382018,-3.5872202,0.21674407,3.9223228,12.219483,3.152958,-16.436264,-8.870321,3.7448986,-4.676136,-3.3722174,2.986586,-1.442455,2.8638234,1.3264517,-7.404945,6.303981,14.551075,-0.8069526,-5.054427,2.4341493,0.546304,-9.593993,-10.561936,null,-7.6610923,-0.73634005,-1.2080784,-1.4666424,3.4088573,-1.1091964,-8.422771,-2.5997534,12.013644,10.569253,-6.906413,-4.884349,7.177319,-3.916119,-10.479701,5.6057568,11.450234,4.6042213,3.0364213,-0.64621425,-5.748253,1.5754542,10.290904,0.67922163,-10.259724,-3.730692,-0.7789787,-3.777122,3.473173,-0.5624846,-16.042208,-11.499803,-0.77555346,-0.9102826,4.6562414,10.976262,4.026793,-0.41508818,8.955918,6.85941,-12.932325,-6.9297905,18.285715,11.598137,-0.1913836,13.155861,11.134098,-1.7191565,9.823929,17.718233,0.62837017,-8.890592,3.7379308,13.749626,11.627659,11.473929,10.743508,1.142139,-6.311264,-0.8524405,8.129585,1.2525108,-8.628502,3.962554,12.661683,2.7602606,5.5019264,9.301083,-3.6098208,-6.3636303,1.972407,5.600362,7.4383507,3.8640053,-4.392377,-5.364933,3.4272757,6.256057,-5.9519653,-8.555307,1.0434848,-4.977521,-9.75817,1.4276495,1.2239113,-5.6244984,1.6419532,10.0558815,7.001475,1.5528102,2.4840717,0.45351958,-5.6069536,-1.1099329,3.330112,-1.2163653,-0.84480715,-2.5466855,-9.714346,-5.3895903,null,-15.011336,4.678344,8.839375,-15.301615,-21.28092,1.1061292,8.699984,-0.4126817,-3.5257068,-5.086493,-7.9074388,-8.376356,-9.473707,-9.62628,-3.5946088,2.3777673,-2.807061,-3.1094956,10.022498,2.443716,-18.335625,-7.3016205,14.893241,10.889362,-5.9276423,-15.09934,-13.996142,-10.004174,-3.8733957,5.0364075,3.6422772,-1.5480771,1.8236291,1.3501961,-2.0152483,-3.224852,-6.928971,-1.8693366,9.565618,11.270145,4.9394574,-2.775197,-4.5525274,-4.5429163,-8.247076,1.3267922,13.624859,3.4117527,-7.023987,0.05275917,6.100757,0.23967648,-7.733895,-4.798213,-3.0160642,-11.401788,-5.9742537,7.3384476,3.2959774,-0.031307936,7.2199674,7.4031734,4.804727,6.660241,0.66808724,-12.876343,-11.443455,4.5801244,6.943075,1.2761983,4.1387653,-3.8598385,-13.667463,1.6878252,16.203506,13.804771,10.95394,-1.455581,-16.32104,-5.1520247,13.063005,11.25835,1.2830887,-5.163577,-5.6042075,3.8791273,15.5573015,14.844561,0.46796417,-7.629767,2.4738705,8.042788,-4.9389257,-12.150773,-1.4498022,4.243465,-5.263452,-8.162403,2.7319412,6.6761346,null,-1.0512934,-5.4179306,-1.267725,0.69406176,-5.274295,1.5669827,11.109009,8.691111,3.144086,0.2960601,5.0462294,5.7565584,-7.5390368,-9.870982,1.7759948,4.2020383,-1.0228453,-6.8697653,-5.3921785,7.798752,13.291287,9.914733,7.2342143,-7.074637,-15.766928,2.2147062,11.959885,-3.4548578,-16.442331,-20.14413,-18.194576,-7.0814934,4.9466233,11.092219,11.670723,7.5222344,1.5987854,-5.915866,-9.425048,-1.5448225,9.093308,9.084535,-0.7272625,-2.220901,7.946124,3.5438159,-10.921977,-7.079789,2.5961537,1.4298816,-5.2873926,-11.811722,-5.2840085,4.9591417,0.9008055,-0.053226948,3.3450632,-1.5414193,0.42324018,7.96771,7.8021693,0.11785579,-14.79434,-16.708458,4.5747685,16.45584,4.5427027,-8.541148,-6.7472157,0.99493885,-0.79940414,-3.9323297,4.095677,14.145684,13.88813,-0.04746771,-13.016161,-8.657836,0.031080365,1.5766597,3.174221,2.8575997,-4.5079303,-13.542835,-12.757059,-1.3745794,3.984032,-0.788187,-6.0193486,-8.5380335,-5.8304005,-3.1736379,-4.984164,-2.1240926,0.6497885,-3.8994198,-4.9867773,-1.8820217,1.1701932,7.468755,null,3.0482545,-15.439012,-12.133268,9.885055,10.352894,-4.3208103,-9.548241,-6.4001656,1.2413805,7.281618,5.551197,1.2735844,0.34010315,0.5505252,-1.8717246,-1.6462202,1.1288445,-3.8677168,-11.6881075,-11.092053,0.5638133,15.465242,11.633325,-3.9429827,-1.153662,6.4204006,0.67447436,-0.2729826,5.673273,7.9265065,9.161903,4.0699215,-6.404869,-3.4327157,8.491475,7.230559,-0.12550378,-0.3790779,-0.47941327,2.3150501,6.337865,-1.1866598,-6.493978,-2.3644166,-1.9048436,2.3250198,7.6974673,0.08237666,-4.004117,7.2507744,20.289856,20.068005,4.9767766,-1.7824996,6.982838,4.7403693,-7.088385,-5.7959843,0.35434437,-2.810295,-2.7094636,10.359615,15.699132,2.0450573,-5.752059,-0.46766996,-2.573358,-7.9401274,0.30042648,13.494188,12.13693,-1.2250102,-5.581738,-3.2144399,-11.722616,-15.552499,-0.071755886,10.503659,3.9277391,-4.766551,-4.205931,7.220544,11.571368,-0.5786035,-5.1013384,-1.2826729,-5.678424,-6.4629955,-4.4225,-5.5094433,0.4003141,0.87273777,-3.2266312,2.9044724,0.11303425,-6.640446,0.08288872,-0.8652934,-5.332484,-0.7153461,null,4.090625,-2.6533175,-6.8421116,-7.6669455,-7.5038767,1.2524748,2.061018,-5.2481956,-0.026760101,2.2910311,-3.5222192,-0.5765568,1.231811,0.3230126,1.1937946,-10.169912,-15.759613,2.7864156,12.656248,3.662911,-0.681828,-5.250085,-9.893847,2.9701552,19.596012,17.499514,-1.0101986,-17.197502,-12.358593,1.6354289,2.4738278,-1.1733731,-0.055922985,0.0987494,-1.4249191,-4.30099,-2.1593275,6.809277,5.123849,-6.220536,-1.928566,16.050598,17.14229,0.039910316,-4.4433303,1.106519,-6.5348706,-10.931545,0.6948142,3.0388227,-9.639564,-13.282157,-1.5018225,7.2587385,5.0837193,3.0494103,2.696946,2.5707555,7.867813,10.389087,9.388439,13.855429,8.445862,-7.93134,-5.9081764,9.906065,13.136223,8.849269,5.2066383,-2.5877998,-6.9110003,-6.316476,-6.6298723,1.3995156,8.087626,-1.3160129,-2.5471182,5.7814035,-3.6615086,-10.217378,5.350399,11.769079,0.29444873,-2.51424,2.0324059,-4.1556826,-8.80734,-3.730713,-7.2501526,-12.002499,-7.2380767,-7.078967,-1.9076746,7.690565,-0.17405438,-5.5252976,2.0171976,4.094298,6.1322155,3.6772807,null,-5.3129773,-4.42959,-4.192199,-4.741515,-5.337023,1.6093731,0.8855095,-4.747159,5.2719817,2.276329,-12.329624,1.1841593,10.617296,-4.55537,-1.764962,6.766467,-9.527722,-14.88223,5.3278227,9.920853,-1.2840354,3.747716,8.651235,-2.071478,-2.7078216,7.3852477,13.03399,17.885332,14.650192,3.925189,-1.0788558,-8.25139,-9.488813,11.078835,19.344065,-3.975174,-17.223476,-5.7720494,1.5875616,-0.9031615,-4.7602787,-9.636391,-8.87208,-0.10404587,6.94514,5.6052217,1.1829691,1.8425092,1.7641507,-0.45384002,3.8260694,4.660792,2.2751923,9.549582,5.7075577,-11.778516,-7.4574423,11.628185,12.539476,-0.9150088,-6.708933,-2.1186981,0.108685136,2.3000293,7.0051737,3.7216249,3.4051366,7.9121165,-0.98516035,-3.978883,10.962147,15.293203,3.9707825,-5.8461266,-4.5648727,0.59938097,-5.575493,-2.1999872,19.585363,16.406326,-8.181118,-12.503965,-4.675205,3.3977356,14.128904,10.23434,-4.393554,-7.214389,-1.8804541,0.1384964,-3.9379375,-7.4505615,0.19591975,4.0554795,-6.555423,-7.0191207,3.108327,0.12988853,-7.7710514,-5.6195097,null,-3.6901455,-3.0969846,2.2607257,8.324577,-0.44237566,-9.047874,-2.5373511,-4.02569,-10.004781,-2.110481,0.41589546,-3.6137714,3.052125,6.5270567,0.2447874,-4.9933205,-3.6353948,7.8722434,10.854667,-4.192216,-11.618151,-8.061182,-0.8927481,11.095146,8.673322,-4.3913918,-5.436876,-1.0099202,3.55796,3.6071823,-3.41255,-2.2582004,-4.800685,-18.302723,-15.650818,-2.110765,4.020707,5.824065,1.4712253,-1.9267247,2.5157626,6.852601,6.5186577,-2.4837303,-8.350361,-0.75591564,1.1977463,-0.76855326,3.669588,-0.10652733,-1.9429555,7.0954237,3.9209285,-4.0708475,2.473625,5.8164015,-4.1950874,-8.562989,0.3150189,7.8219943,6.659691,3.3901975,-1.0010223,-5.7218027,-4.8596683,-3.8829231,-9.568293,-12.602293,-7.454212,-2.3617196,2.0017376,7.3892803,4.6893187,-2.3158574,-0.22854841,3.9117122,1.7413249,1.3331356,4.376819,4.7878456,3.9251504,2.9582262,0.828907,4.7384863,9.821843,0.37273914,-4.9038076,6.592062,3.3964274,-5.93774,6.758978,8.814406,-9.210549,-9.631686,2.614493,5.352146,2.916356,-0.75413394,-7.925322,-10.657763,null,-5.432595,5.9575553,5.557121,-3.2911253,0.93666697,11.143315,8.372087,1.9706783,2.573022,-0.26605988,-2.4716067,0.26185274,-5.2181025,-10.495776,-6.2706747,-4.504798,-1.4549768,5.1018434,3.6121178,2.0450366,4.185789,-2.8997366,-10.6716,-3.7490742,8.401433,8.787012,-3.0407825,-9.008759,-2.938286,-6.077722,-15.767954,-4.0449452,13.989164,10.338905,0.069159746,-3.0192146,-5.1336575,-7.699135,-9.006031,-3.2548776,3.5613253,-3.7900884,-12.533065,-9.003308,-5.1689844,-3.2622309,2.1611183,1.2804542,-11.421397,-16.350527,-0.8358867,8.3768635,-2.5289078,-8.270636,-2.169981,3.492072,4.6977053,0.21202707,-1.7568784,0.040894985,-3.6136556,-7.045131,-2.6415057,8.43627,12.838149,0.6706151,-5.1428595,-0.38104177,-6.0940666,-8.292865,-3.2431006,-7.569634,-10.68997,-11.573714,-12.100638,0.2226646,11.389749,5.654788,-9.200254,-13.000222,5.370743,12.400364,-4.6370444,-8.019241,-2.045531,-1.7821045,6.4111953,6.4109554,-2.8626509,2.3371835,5.313781,-0.6443509,0.9736967,1.069627,-0.3814702,2.5619984,-2.1247277,-2.5638742,10.03213,7.5103807,null],"type":"scatter","name":"Im{S(t)}","hovertemplate":"(%{x:.4f} ms, %{y:.3f} a.u.)","x":[16.394000000000002,16.404000000000003,16.414,16.424000000000003,16.434,16.444000000000003,16.454,16.464000000000002,16.474,16.484,16.494000000000003,16.504,16.514000000000003,16.524,16.534000000000002,16.544,16.554000000000002,16.564000000000004,16.574,16.584000000000003,16.594,16.604000000000003,16.614,16.624000000000002,16.634,16.644000000000002,16.654000000000003,16.664,16.674000000000003,16.684,16.694000000000003,16.704,16.714000000000002,16.724,16.734,16.744000000000003,16.754,16.764000000000003,16.774,16.784000000000002,16.794,16.804000000000002,16.814000000000004,16.824,16.834000000000003,16.844,16.854000000000003,16.864,16.874000000000002,16.884,16.894000000000002,16.904000000000003,16.914,16.924000000000003,16.934,16.944000000000003,16.954,16.964000000000002,16.974,16.984,16.994000000000003,17.004,17.014000000000003,17.024,17.034000000000002,17.044,17.054000000000002,17.064000000000004,17.074,17.084000000000003,17.094,17.104000000000003,17.114,17.124000000000002,17.134,17.144000000000002,17.154000000000003,17.164,17.174000000000003,17.184,17.194000000000003,17.204,17.214000000000002,17.224,17.234,17.244000000000003,17.254,17.264000000000003,17.274,17.284000000000002,17.294,17.304000000000002,17.314000000000004,17.324,17.334000000000003,17.344,17.354000000000003,17.364,17.374000000000002,17.384,17.384,18.074,18.084000000000003,18.094,18.104000000000003,18.114,18.124000000000002,18.134,18.144000000000002,18.154,18.164,18.174000000000003,18.184,18.194000000000003,18.204,18.214000000000002,18.224,18.234,18.244000000000003,18.254,18.264000000000003,18.274,18.284000000000002,18.294,18.304000000000002,18.314,18.324,18.334000000000003,18.344,18.354000000000003,18.364,18.374000000000002,18.384,18.394000000000002,18.404,18.414,18.424000000000003,18.434,18.444000000000003,18.454,18.464000000000002,18.474,18.484,18.494000000000003,18.504,18.514000000000003,18.524,18.534000000000002,18.544,18.554000000000002,18.564,18.574,18.584000000000003,18.594,18.604000000000003,18.614,18.624000000000002,18.634,18.644000000000002,18.654,18.664,18.674000000000003,18.684,18.694000000000003,18.704,18.714000000000002,18.724,18.734,18.744000000000003,18.754,18.764000000000003,18.774,18.784000000000002,18.794,18.804000000000002,18.814,18.824,18.834000000000003,18.844,18.854000000000003,18.864,18.874000000000002,18.884,18.894000000000002,18.904,18.914,18.924000000000003,18.934,18.944000000000003,18.954,18.964000000000002,18.974,18.984,18.994000000000003,19.004,19.014000000000003,19.024,19.034000000000002,19.044,19.054000000000002,19.064,19.064,19.754,19.764000000000003,19.774,19.784000000000002,19.794,19.804000000000002,19.814,19.824,19.834,19.844,19.854000000000003,19.864,19.874000000000002,19.884,19.894000000000002,19.904,19.914,19.924000000000003,19.934,19.944000000000003,19.954,19.964000000000002,19.974,19.984,19.994,20.004,20.014000000000003,20.024,20.034000000000002,20.044,20.054000000000002,20.064,20.074,20.084,20.094,20.104000000000003,20.114,20.124000000000002,20.134,20.144000000000002,20.154,20.164,20.174000000000003,20.184,20.194000000000003,20.204,20.214000000000002,20.224,20.234,20.244,20.254,20.264000000000003,20.274,20.284000000000002,20.294,20.304000000000002,20.314,20.324,20.334,20.344,20.354000000000003,20.364,20.374000000000002,20.384,20.394000000000002,20.404,20.414,20.424000000000003,20.434,20.444000000000003,20.454,20.464000000000002,20.474,20.484,20.494,20.504,20.514000000000003,20.524,20.534000000000002,20.544,20.554000000000002,20.564,20.574,20.584,20.594,20.604000000000003,20.614,20.624000000000002,20.634,20.644000000000002,20.654,20.664,20.674000000000003,20.684,20.694000000000003,20.704,20.714000000000002,20.724,20.734,20.744,20.744,21.434,21.444000000000003,21.454,21.464000000000002,21.474,21.484,21.494,21.504,21.514,21.524,21.534000000000002,21.544,21.554000000000002,21.564,21.574,21.584,21.594,21.604000000000003,21.614,21.624000000000002,21.634,21.644000000000002,21.654,21.664,21.674,21.684,21.694000000000003,21.704,21.714000000000002,21.724,21.734,21.744,21.754,21.764,21.774,21.784000000000002,21.794,21.804000000000002,21.814,21.824,21.834,21.844,21.854000000000003,21.864,21.874000000000002,21.884,21.894000000000002,21.904,21.914,21.924,21.934,21.944000000000003,21.954,21.964000000000002,21.974,21.984,21.994,22.004,22.014,22.024,22.034000000000002,22.044,22.054000000000002,22.064,22.074,22.084,22.094,22.104000000000003,22.114,22.124000000000002,22.134,22.144000000000002,22.154,22.164,22.174,22.184,22.194000000000003,22.204,22.214000000000002,22.224,22.234,22.244,22.254,22.264,22.274,22.284000000000002,22.294,22.304000000000002,22.314,22.324,22.334,22.344,22.354000000000003,22.364,22.374000000000002,22.384,22.394000000000002,22.404,22.414,22.424,22.424,23.114,23.124000000000002,23.134,23.144000000000002,23.154,23.164,23.174,23.184,23.194,23.204,23.214000000000002,23.224,23.234,23.244,23.254,23.264,23.274,23.284000000000002,23.294,23.304000000000002,23.314,23.324,23.334,23.344,23.354,23.364,23.374000000000002,23.384,23.394000000000002,23.404,23.414,23.424,23.434,23.444,23.454,23.464000000000002,23.474,23.484,23.494,23.504,23.514,23.524,23.534000000000002,23.544,23.554000000000002,23.564,23.574,23.584,23.594,23.604,23.614,23.624000000000002,23.634,23.644000000000002,23.654,23.664,23.674,23.684,23.694,23.704,23.714000000000002,23.724,23.734,23.744,23.754,23.764,23.774,23.784000000000002,23.794,23.804000000000002,23.814,23.824,23.834,23.844,23.854,23.864,23.874000000000002,23.884,23.894000000000002,23.904,23.914,23.924,23.934,23.944,23.954,23.964000000000002,23.974,23.984,23.994,24.004,24.014,24.024,24.034000000000002,24.044,24.054000000000002,24.064,24.074,24.084,24.094,24.104,24.104,24.794,24.804000000000002,24.814,24.824,24.834,24.844,24.854,24.864,24.874,24.884,24.894000000000002,24.904,24.914,24.924,24.934,24.944,24.954,24.964000000000002,24.974,24.984,24.994,25.004,25.014,25.024,25.034,25.044,25.054000000000002,25.064,25.074,25.084,25.094,25.104,25.114,25.124,25.134,25.144000000000002,25.154,25.164,25.174,25.184,25.194,25.204,25.214000000000002,25.224,25.234,25.244,25.254,25.264,25.274,25.284,25.294,25.304000000000002,25.314,25.324,25.334,25.344,25.354,25.364,25.374,25.384,25.394000000000002,25.404,25.414,25.424,25.434,25.444,25.454,25.464000000000002,25.474,25.484,25.494,25.504,25.514,25.524,25.534,25.544,25.554000000000002,25.564,25.574,25.584,25.594,25.604,25.614,25.624,25.634,25.644000000000002,25.654,25.664,25.674,25.684,25.694,25.704,25.714000000000002,25.724,25.734,25.744,25.754,25.764,25.774,25.784,25.784,26.474,26.484,26.494,26.504,26.514,26.524,26.534,26.544,26.554,26.564,26.574,26.584,26.594,26.604,26.614,26.624,26.634,26.644000000000002,26.654,26.664,26.674,26.684,26.694,26.704,26.714,26.724,26.734,26.744,26.754,26.764,26.774,26.784,26.794,26.804,26.814,26.824,26.834,26.844,26.854,26.864,26.874,26.884,26.894000000000002,26.904,26.914,26.924,26.934,26.944,26.954,26.964,26.974,26.984,26.994,27.004,27.014,27.024,27.034,27.044,27.054,27.064,27.074,27.084,27.094,27.104,27.114,27.124,27.134,27.144000000000002,27.154,27.164,27.174,27.184,27.194,27.204,27.214,27.224,27.234,27.244,27.254,27.264,27.274,27.284,27.294,27.304,27.314,27.324,27.334,27.344,27.354,27.364,27.374,27.384,27.394000000000002,27.404,27.414,27.424,27.434,27.444,27.454,27.464,27.464,28.154,28.164,28.174,28.184,28.194,28.204,28.214,28.224,28.233999999999998,28.244,28.254,28.264,28.274,28.284,28.294,28.304,28.314,28.324,28.334,28.344,28.354,28.364,28.374,28.384,28.394,28.404,28.414,28.424,28.434,28.444,28.454,28.464,28.474,28.483999999999998,28.494,28.504,28.514,28.524,28.534,28.544,28.554,28.564,28.574,28.584,28.594,28.604,28.614,28.624,28.634,28.644,28.654,28.664,28.674,28.684,28.694,28.704,28.714,28.724,28.733999999999998,28.744,28.754,28.764,28.774,28.784,28.794,28.804,28.814,28.824,28.834,28.844,28.854,28.864,28.874,28.884,28.894,28.904,28.914,28.924,28.934,28.944,28.954,28.964,28.974,28.983999999999998,28.994,29.004,29.014,29.024,29.034,29.044,29.054,29.064,29.074,29.084,29.094,29.104,29.114,29.124,29.134,29.144,29.144,29.834,29.844,29.854,29.864,29.874,29.884,29.894,29.904,29.913999999999998,29.924,29.934,29.944,29.954,29.964,29.974,29.983999999999998,29.994,30.004,30.014,30.024,30.034,30.044,30.054,30.064,30.073999999999998,30.084,30.094,30.104,30.114,30.124,30.134,30.144,30.154,30.163999999999998,30.174,30.184,30.194,30.204,30.214,30.224,30.233999999999998,30.244,30.254,30.264,30.274,30.284,30.294,30.304,30.314,30.323999999999998,30.334,30.344,30.354,30.364,30.374,30.384,30.394,30.404,30.413999999999998,30.424,30.434,30.444,30.454,30.464,30.474,30.483999999999998,30.494,30.504,30.514,30.524,30.534,30.544,30.554,30.564,30.573999999999998,30.584,30.594,30.604,30.614,30.624,30.634,30.644,30.654,30.663999999999998,30.674,30.684,30.694,30.704,30.714,30.724,30.733999999999998,30.744,30.754,30.764,30.774,30.784,30.794,30.804,30.814,30.823999999999998,30.823999999999998,31.514,31.524,31.534,31.544,31.554,31.564,31.573999999999998,31.584,31.593999999999998,31.604,31.614,31.624,31.634,31.644,31.654,31.663999999999998,31.674,31.684,31.694,31.704,31.714,31.724,31.733999999999998,31.744,31.753999999999998,31.764,31.774,31.784,31.794,31.804,31.814,31.823999999999998,31.834,31.843999999999998,31.854,31.864,31.874,31.884,31.894,31.904,31.913999999999998,31.924,31.934,31.944,31.954,31.964,31.974,31.983999999999998,31.994,32.004,32.013999999999996,32.024,32.034,32.044,32.054,32.064,32.074,32.083999999999996,32.094,32.104,32.114,32.124,32.134,32.144,32.153999999999996,32.164,32.174,32.184,32.194,32.204,32.214,32.224,32.234,32.244,32.254,32.263999999999996,32.274,32.284,32.294,32.304,32.314,32.324,32.333999999999996,32.344,32.354,32.364,32.374,32.384,32.394,32.403999999999996,32.414,32.424,32.434,32.444,32.454,32.464,32.474,32.484,32.494,32.504,32.504,33.194,33.204,33.214000000000006,33.224000000000004,33.234,33.244,33.254000000000005,33.264,33.274,33.284000000000006,33.294000000000004,33.304,33.314,33.324000000000005,33.334,33.344,33.354,33.364000000000004,33.374,33.384,33.394000000000005,33.404,33.414,33.424,33.434000000000005,33.444,33.454,33.464000000000006,33.474000000000004,33.484,33.494,33.504000000000005,33.514,33.524,33.534000000000006,33.544000000000004,33.554,33.564,33.574000000000005,33.584,33.594,33.604,33.614000000000004,33.624,33.634,33.644000000000005,33.654,33.664,33.674,33.684000000000005,33.694,33.704,33.714000000000006,33.724000000000004,33.734,33.744,33.754000000000005,33.764,33.774,33.784000000000006,33.794000000000004,33.804,33.814,33.824000000000005,33.834,33.844,33.854,33.864000000000004,33.874,33.884,33.894000000000005,33.904,33.914,33.924,33.934000000000005,33.944,33.954,33.964000000000006,33.974000000000004,33.984,33.994,34.004000000000005,34.014,34.024,34.034000000000006,34.044000000000004,34.054,34.064,34.074000000000005,34.084,34.094,34.104,34.114000000000004,34.124,34.134,34.144000000000005,34.154,34.164,34.174,34.184000000000005,34.184000000000005,34.874,34.884,34.894000000000005,34.904,34.914,34.924,34.934000000000005,34.944,34.954,34.964000000000006,34.974000000000004,34.984,34.994,35.004000000000005,35.014,35.024,35.034,35.044000000000004,35.054,35.064,35.074000000000005,35.084,35.094,35.104,35.114000000000004,35.124,35.134,35.144000000000005,35.154,35.164,35.174,35.184000000000005,35.194,35.204,35.214000000000006,35.224000000000004,35.234,35.244,35.254000000000005,35.264,35.274,35.284,35.294000000000004,35.304,35.314,35.324000000000005,35.334,35.344,35.354,35.364000000000004,35.374,35.384,35.394000000000005,35.404,35.414,35.424,35.434000000000005,35.444,35.454,35.464000000000006,35.474000000000004,35.484,35.494,35.504000000000005,35.514,35.524,35.534,35.544000000000004,35.554,35.564,35.574000000000005,35.584,35.594,35.604,35.614000000000004,35.624,35.634,35.644000000000005,35.654,35.664,35.674,35.684000000000005,35.694,35.704,35.714000000000006,35.724000000000004,35.734,35.744,35.754000000000005,35.764,35.774,35.784,35.794000000000004,35.804,35.814,35.824000000000005,35.834,35.844,35.854,35.864000000000004,35.864000000000004,36.554,36.564,36.574000000000005,36.584,36.594,36.604,36.614000000000004,36.624,36.634,36.644000000000005,36.654,36.664,36.674,36.684000000000005,36.694,36.704,36.714,36.724000000000004,36.734,36.744,36.754000000000005,36.764,36.774,36.784,36.794000000000004,36.804,36.814,36.824000000000005,36.834,36.844,36.854,36.864000000000004,36.874,36.884,36.894000000000005,36.904,36.914,36.924,36.934000000000005,36.944,36.954,36.964,36.974000000000004,36.984,36.994,37.004000000000005,37.014,37.024,37.034,37.044000000000004,37.054,37.064,37.074000000000005,37.084,37.094,37.104,37.114000000000004,37.124,37.134,37.144000000000005,37.154,37.164,37.174,37.184000000000005,37.194,37.204,37.214,37.224000000000004,37.234,37.244,37.254000000000005,37.264,37.274,37.284,37.294000000000004,37.304,37.314,37.324000000000005,37.334,37.344,37.354,37.364000000000004,37.374,37.384,37.394000000000005,37.404,37.414,37.424,37.434000000000005,37.444,37.454,37.464,37.474000000000004,37.484,37.494,37.504000000000005,37.514,37.524,37.534,37.544000000000004,37.544000000000004,38.234,38.244,38.254000000000005,38.264,38.274,38.284,38.294000000000004,38.304,38.314,38.324000000000005,38.334,38.344,38.354,38.364000000000004,38.374,38.384,38.394,38.404,38.414,38.424,38.434000000000005,38.444,38.454,38.464,38.474000000000004,38.484,38.494,38.504000000000005,38.514,38.524,38.534,38.544000000000004,38.554,38.564,38.574000000000005,38.584,38.594,38.604,38.614000000000004,38.624,38.634,38.644,38.654,38.664,38.674,38.684000000000005,38.694,38.704,38.714,38.724000000000004,38.734,38.744,38.754000000000005,38.764,38.774,38.784,38.794000000000004,38.804,38.814,38.824000000000005,38.834,38.844,38.854,38.864000000000004,38.874,38.884,38.894,38.904,38.914,38.924,38.934000000000005,38.944,38.954,38.964,38.974000000000004,38.984,38.994,39.004000000000005,39.014,39.024,39.034,39.044000000000004,39.054,39.064,39.074000000000005,39.084,39.094,39.104,39.114000000000004,39.124,39.134,39.144,39.154,39.164,39.174,39.184000000000005,39.194,39.204,39.214,39.224000000000004,39.224000000000004,39.914,39.924,39.934000000000005,39.944,39.954,39.964,39.974000000000004,39.984,39.994,40.004000000000005,40.014,40.024,40.034,40.044000000000004,40.054,40.064,40.074,40.084,40.094,40.104,40.114000000000004,40.124,40.134,40.144,40.154,40.164,40.174,40.184000000000005,40.194,40.204,40.214,40.224000000000004,40.234,40.244,40.254000000000005,40.264,40.274,40.284,40.294000000000004,40.304,40.314,40.324,40.334,40.344,40.354,40.364000000000004,40.374,40.384,40.394,40.404,40.414,40.424,40.434000000000005,40.444,40.454,40.464,40.474000000000004,40.484,40.494,40.504000000000005,40.514,40.524,40.534,40.544000000000004,40.554,40.564,40.574,40.584,40.594,40.604,40.614000000000004,40.624,40.634,40.644,40.654,40.664,40.674,40.684000000000005,40.694,40.704,40.714,40.724000000000004,40.734,40.744,40.754000000000005,40.764,40.774,40.784,40.794000000000004,40.804,40.814,40.824,40.834,40.844,40.854,40.864000000000004,40.874,40.884,40.894,40.904,40.904,41.594,41.604,41.614000000000004,41.624,41.634,41.644,41.654,41.664,41.674,41.684000000000005,41.694,41.704,41.714,41.724000000000004,41.734,41.744,41.754,41.764,41.774,41.784,41.794000000000004,41.804,41.814,41.824,41.834,41.844,41.854,41.864000000000004,41.874,41.884,41.894,41.904,41.914,41.924,41.934000000000005,41.944,41.954,41.964,41.974000000000004,41.984,41.994,42.004,42.014,42.024,42.034,42.044000000000004,42.054,42.064,42.074,42.084,42.094,42.104,42.114000000000004,42.124,42.134,42.144,42.154,42.164,42.174,42.184000000000005,42.194,42.204,42.214,42.224000000000004,42.234,42.244,42.254,42.264,42.274,42.284,42.294000000000004,42.304,42.314,42.324,42.334,42.344,42.354,42.364000000000004,42.374,42.384,42.394,42.404,42.414,42.424,42.434000000000005,42.444,42.454,42.464,42.474000000000004,42.484,42.494,42.504,42.514,42.524,42.534,42.544000000000004,42.554,42.564,42.574,42.584,42.584,43.274,43.284,43.294000000000004,43.304,43.314,43.324,43.334,43.344,43.354,43.364000000000004,43.374,43.384,43.394,43.404,43.414,43.424,43.434,43.444,43.454,43.464,43.474000000000004,43.484,43.494,43.504,43.514,43.524,43.534,43.544000000000004,43.554,43.564,43.574,43.584,43.594,43.604,43.614000000000004,43.624,43.634,43.644,43.654,43.664,43.674,43.684,43.694,43.704,43.714,43.724000000000004,43.734,43.744,43.754,43.764,43.774,43.784,43.794000000000004,43.804,43.814,43.824,43.834,43.844,43.854,43.864000000000004,43.874,43.884,43.894,43.904,43.914,43.924,43.934,43.944,43.954,43.964,43.974000000000004,43.984,43.994,44.004,44.014,44.024,44.034,44.044000000000004,44.054,44.064,44.074,44.084,44.094,44.104,44.114000000000004,44.124,44.134,44.144,44.154,44.164,44.174,44.184,44.194,44.204,44.214,44.224000000000004,44.234,44.244,44.254,44.264,44.264,44.954,44.964,44.974000000000004,44.984,44.994,45.004,45.014,45.024,45.034,45.044000000000004,45.054,45.064,45.074,45.084,45.094,45.104,45.114,45.124,45.134,45.144,45.154,45.164,45.174,45.184,45.194,45.204,45.214,45.224000000000004,45.234,45.244,45.254,45.264,45.274,45.284,45.294000000000004,45.304,45.314,45.324,45.334,45.344,45.354,45.364,45.374,45.384,45.394,45.404,45.414,45.424,45.434,45.444,45.454,45.464,45.474000000000004,45.484,45.494,45.504,45.514,45.524,45.534,45.544000000000004,45.554,45.564,45.574,45.584,45.594,45.604,45.614,45.624,45.634,45.644,45.654,45.664,45.674,45.684,45.694,45.704,45.714,45.724000000000004,45.734,45.744,45.754,45.764,45.774,45.784,45.794000000000004,45.804,45.814,45.824,45.834,45.844,45.854,45.864,45.874,45.884,45.894,45.904,45.914,45.924,45.934,45.944,45.944,46.634,46.644,46.654,46.664,46.674,46.684,46.694,46.704,46.714,46.724000000000004,46.734,46.744,46.754,46.764,46.774,46.784,46.794,46.804,46.814,46.824,46.834,46.844,46.854,46.864,46.874,46.884,46.894,46.904,46.914,46.924,46.934,46.944,46.954,46.964,46.974000000000004,46.984,46.994,47.004,47.014,47.024,47.034,47.044,47.054,47.064,47.074,47.084,47.094,47.104,47.114,47.124,47.134,47.144,47.154,47.164,47.174,47.184,47.194,47.204,47.214,47.224000000000004,47.234,47.244,47.254,47.264,47.274,47.284,47.294,47.304,47.314,47.324,47.334,47.344,47.354,47.364,47.374,47.384,47.394,47.404,47.414,47.424,47.434,47.444,47.454,47.464,47.474000000000004,47.484,47.494,47.504,47.514,47.524,47.534,47.544,47.554,47.564,47.574,47.584,47.594,47.604,47.614,47.624,47.624,48.314,48.324,48.334,48.344,48.354,48.364,48.374,48.384,48.394,48.404,48.414,48.424,48.434,48.444,48.454,48.464,48.474,48.484,48.494,48.504,48.514,48.524,48.534,48.544,48.554,48.564,48.574,48.584,48.594,48.604,48.614,48.624,48.634,48.644,48.654,48.664,48.674,48.684,48.694,48.704,48.714,48.724,48.734,48.744,48.754,48.764,48.774,48.784,48.794,48.804,48.814,48.824,48.834,48.844,48.854,48.864,48.874,48.884,48.894,48.904,48.914,48.924,48.934,48.944,48.954,48.964,48.974,48.984,48.994,49.004,49.014,49.024,49.034,49.044,49.054,49.064,49.074,49.084,49.094,49.104,49.114,49.124,49.134,49.144,49.154,49.164,49.174,49.184,49.194,49.204,49.214,49.224,49.234,49.244,49.254,49.264,49.274,49.284,49.294,49.304,49.304,49.994,50.004,50.014,50.024,50.034,50.044,50.054,50.064,50.074,50.084,50.094,50.104,50.114,50.124,50.134,50.144,50.153999999999996,50.164,50.174,50.184,50.194,50.204,50.214,50.224,50.234,50.244,50.254,50.264,50.274,50.284,50.294,50.304,50.314,50.324,50.334,50.344,50.354,50.364,50.374,50.384,50.394,50.403999999999996,50.414,50.424,50.434,50.444,50.454,50.464,50.474,50.484,50.494,50.504,50.514,50.524,50.534,50.544,50.554,50.564,50.574,50.584,50.594,50.604,50.614,50.624,50.634,50.644,50.653999999999996,50.664,50.674,50.684,50.694,50.704,50.714,50.724,50.734,50.744,50.754,50.764,50.774,50.784,50.794,50.804,50.814,50.824,50.834,50.844,50.854,50.864,50.874,50.884,50.894,50.903999999999996,50.914,50.924,50.934,50.944,50.954,50.964,50.974,50.984,50.984,51.674,51.684,51.694,51.704,51.714,51.724,51.734,51.744,51.754,51.764,51.774,51.784,51.794,51.804,51.814,51.824,51.833999999999996,51.844,51.854,51.864,51.874,51.884,51.894,51.903999999999996,51.914,51.924,51.934,51.944,51.954,51.964,51.974,51.984,51.994,52.004,52.014,52.024,52.034,52.044,52.054,52.064,52.074,52.083999999999996,52.094,52.104,52.114,52.124,52.134,52.144,52.153999999999996,52.164,52.174,52.184,52.194,52.204,52.214,52.224,52.234,52.244,52.254,52.264,52.274,52.284,52.294,52.304,52.314,52.324,52.333999999999996,52.344,52.354,52.364,52.374,52.384,52.394,52.403999999999996,52.414,52.424,52.434,52.444,52.454,52.464,52.474,52.484,52.494,52.504,52.514,52.524,52.534,52.544,52.554,52.564,52.574,52.583999999999996,52.594,52.604,52.614,52.624,52.634,52.644,52.653999999999996,52.664,52.664,53.354,53.364,53.374,53.384,53.394,53.403999999999996,53.414,53.424,53.434,53.444,53.454,53.464,53.474,53.484,53.494,53.504,53.513999999999996,53.524,53.534,53.544,53.554,53.564,53.574,53.583999999999996,53.594,53.604,53.614,53.624,53.634,53.644,53.653999999999996,53.664,53.674,53.684,53.694,53.704,53.714,53.724,53.734,53.744,53.754,53.763999999999996,53.774,53.784,53.794,53.804,53.814,53.824,53.833999999999996,53.844,53.854,53.864,53.874,53.884,53.894,53.903999999999996,53.914,53.924,53.934,53.944,53.954,53.964,53.974,53.984,53.994,54.004,54.013999999999996,54.024,54.034,54.044,54.054,54.064,54.074,54.083999999999996,54.094,54.104,54.114,54.124,54.134,54.144,54.153999999999996,54.164,54.174,54.184,54.194,54.204,54.214,54.224,54.234,54.244,54.254,54.263999999999996,54.274,54.284,54.294,54.304,54.314,54.324,54.333999999999996,54.344,54.344,55.034,55.044,55.054,55.064,55.074,55.083999999999996,55.094,55.104,55.114,55.124,55.134,55.144,55.153999999999996,55.164,55.174,55.184,55.193999999999996,55.204,55.214,55.224,55.234,55.244,55.254,55.263999999999996,55.274,55.284,55.294,55.304,55.314,55.324,55.333999999999996,55.344,55.354,55.364,55.374,55.384,55.394,55.403999999999996,55.414,55.424,55.434,55.443999999999996,55.454,55.464,55.474,55.484,55.494,55.504,55.513999999999996,55.524,55.534,55.544,55.554,55.564,55.574,55.583999999999996,55.594,55.604,55.614,55.624,55.634,55.644,55.653999999999996,55.664,55.674,55.684,55.693999999999996,55.704,55.714,55.724,55.734,55.744,55.754,55.763999999999996,55.774,55.784,55.794,55.804,55.814,55.824,55.833999999999996,55.844,55.854,55.864,55.874,55.884,55.894,55.903999999999996,55.914,55.924,55.934,55.943999999999996,55.954,55.964,55.974,55.984,55.994,56.004,56.013999999999996,56.024,56.024,56.714,56.724,56.734,56.744,56.754,56.763999999999996,56.774,56.784,56.794,56.804,56.814,56.824,56.833999999999996,56.844,56.854,56.864,56.873999999999995,56.884,56.894,56.903999999999996,56.914,56.924,56.934,56.943999999999996,56.954,56.964,56.974,56.984,56.994,57.004,57.013999999999996,57.024,57.034,57.044,57.054,57.064,57.074,57.083999999999996,57.094,57.104,57.114,57.123999999999995,57.134,57.144,57.153999999999996,57.164,57.174,57.184,57.193999999999996,57.204,57.214,57.224,57.234,57.244,57.254,57.263999999999996,57.274,57.284,57.294,57.304,57.314,57.324,57.333999999999996,57.344,57.354,57.364,57.373999999999995,57.384,57.394,57.403999999999996,57.414,57.424,57.434,57.443999999999996,57.454,57.464,57.474,57.484,57.494,57.504,57.513999999999996,57.524,57.534,57.544,57.554,57.564,57.574,57.583999999999996,57.594,57.604,57.614,57.623999999999995,57.634,57.644,57.653999999999996,57.664,57.674,57.684,57.693999999999996,57.704,57.704,58.394,58.403999999999996,58.414,58.424,58.434,58.443999999999996,58.454,58.464,58.474,58.484,58.494,58.504,58.513999999999996,58.524,58.534,58.544,58.553999999999995,58.564,58.574,58.583999999999996,58.594,58.604,58.614,58.623999999999995,58.634,58.644,58.653999999999996,58.664,58.674,58.684,58.693999999999996,58.704,58.714,58.724,58.734,58.744,58.754,58.763999999999996,58.774,58.784,58.794,58.803999999999995,58.814,58.824,58.833999999999996,58.844,58.854,58.864,58.873999999999995,58.884,58.894,58.903999999999996,58.914,58.924,58.934,58.943999999999996,58.954,58.964,58.974,58.984,58.994,59.004,59.013999999999996,59.024,59.034,59.044,59.053999999999995,59.064,59.074,59.083999999999996,59.094,59.104,59.114,59.123999999999995,59.134,59.144,59.153999999999996,59.164,59.174,59.184,59.193999999999996,59.204,59.214,59.224,59.234,59.244,59.254,59.263999999999996,59.274,59.284,59.294,59.303999999999995,59.314,59.324,59.333999999999996,59.344,59.354,59.364,59.373999999999995,59.384,59.384,60.074,60.083999999999996,60.094,60.104,60.114,60.123999999999995,60.134,60.144,60.153999999999996,60.164,60.174,60.184,60.193999999999996,60.204,60.214,60.224,60.233999999999995,60.244,60.254,60.263999999999996,60.274,60.284,60.294,60.303999999999995,60.314,60.324,60.333999999999996,60.344,60.354,60.364,60.373999999999995,60.384,60.394,60.403999999999996,60.414,60.424,60.434,60.443999999999996,60.454,60.464,60.474,60.483999999999995,60.494,60.504,60.513999999999996,60.524,60.534,60.544,60.553999999999995,60.564,60.574,60.583999999999996,60.594,60.604,60.614,60.623999999999995,60.634,60.644,60.653999999999996,60.664,60.674,60.684,60.693999999999996,60.704,60.714,60.724,60.733999999999995,60.744,60.754,60.763999999999996,60.774,60.784,60.794,60.803999999999995,60.814,60.824,60.833999999999996,60.844,60.854,60.864,60.873999999999995,60.884,60.894,60.903999999999996,60.914,60.924,60.934,60.943999999999996,60.954,60.964,60.974,60.983999999999995,60.994,61.004,61.013999999999996,61.024,61.034,61.044,61.053999999999995,61.064,61.064,61.754,61.763999999999996,61.774,61.784,61.794,61.803999999999995,61.814,61.824,61.833999999999996,61.844,61.854,61.864,61.873999999999995,61.884,61.894,61.903999999999996,61.913999999999994,61.924,61.934,61.943999999999996,61.954,61.964,61.974,61.983999999999995,61.994,62.004,62.013999999999996,62.024,62.034,62.044,62.053999999999995,62.064,62.074,62.083999999999996,62.094,62.104,62.114,62.123999999999995,62.134,62.144,62.153999999999996,62.163999999999994,62.174,62.184,62.193999999999996,62.204,62.214,62.224,62.233999999999995,62.244,62.254,62.263999999999996,62.274,62.284,62.294,62.303999999999995,62.314,62.324,62.333999999999996,62.344,62.354,62.364,62.373999999999995,62.384,62.394,62.403999999999996,62.413999999999994,62.424,62.434,62.443999999999996,62.454,62.464,62.474,62.483999999999995,62.494,62.504,62.513999999999996,62.524,62.534,62.544,62.553999999999995,62.564,62.574,62.583999999999996,62.594,62.604,62.614,62.623999999999995,62.634,62.644,62.653999999999996,62.663999999999994,62.674,62.684,62.693999999999996,62.704,62.714,62.724,62.733999999999995,62.744,62.744,63.434000000000005,63.444,63.45400000000001,63.464000000000006,63.474000000000004,63.484,63.49400000000001,63.504000000000005,63.514,63.52400000000001,63.534000000000006,63.544000000000004,63.554,63.56400000000001,63.574000000000005,63.584,63.594,63.604000000000006,63.614000000000004,63.624,63.63400000000001,63.644000000000005,63.654,63.664,63.67400000000001,63.684000000000005,63.694,63.70400000000001,63.714000000000006,63.724000000000004,63.734,63.74400000000001,63.754000000000005,63.764,63.77400000000001,63.784000000000006,63.794000000000004,63.804,63.81400000000001,63.824000000000005,63.834,63.844,63.854000000000006,63.864000000000004,63.874,63.88400000000001,63.894000000000005,63.904,63.914,63.92400000000001,63.934000000000005,63.944,63.95400000000001,63.964000000000006,63.974000000000004,63.984,63.99400000000001,64.004,64.01400000000001,64.024,64.034,64.04400000000001,64.054,64.06400000000001,64.074,64.084,64.09400000000001,64.104,64.114,64.12400000000001,64.134,64.144,64.15400000000001,64.164,64.174,64.184,64.194,64.20400000000001,64.214,64.224,64.23400000000001,64.244,64.254,64.26400000000001,64.274,64.284,64.29400000000001,64.304,64.31400000000001,64.324,64.334,64.34400000000001,64.354,64.364,64.37400000000001,64.384,64.394,64.40400000000001,64.414,64.424,64.424,65.114,65.12400000000001,65.134,65.144,65.15400000000001,65.164,65.174,65.184,65.194,65.20400000000001,65.214,65.224,65.23400000000001,65.244,65.254,65.26400000000001,65.274,65.284,65.29400000000001,65.304,65.31400000000001,65.324,65.334,65.34400000000001,65.354,65.364,65.37400000000001,65.384,65.394,65.40400000000001,65.414,65.424,65.434,65.444,65.45400000000001,65.464,65.474,65.48400000000001,65.494,65.504,65.51400000000001,65.524,65.534,65.54400000000001,65.554,65.56400000000001,65.574,65.584,65.59400000000001,65.604,65.614,65.62400000000001,65.634,65.644,65.65400000000001,65.664,65.674,65.684,65.694,65.70400000000001,65.714,65.724,65.73400000000001,65.744,65.754,65.76400000000001,65.774,65.784,65.79400000000001,65.804,65.81400000000001,65.824,65.834,65.84400000000001,65.854,65.864,65.87400000000001,65.884,65.894,65.90400000000001,65.914,65.924,65.934,65.944,65.95400000000001,65.964,65.974,65.98400000000001,65.994,66.004,66.01400000000001,66.024,66.034,66.04400000000001,66.054,66.06400000000001,66.074,66.084,66.09400000000001,66.104,66.104,66.794,66.804,66.814,66.824,66.834,66.844,66.854,66.86399999999999,66.874,66.884,66.89399999999999,66.904,66.914,66.92399999999999,66.934,66.944,66.954,66.964,66.974,66.984,66.994,67.00399999999999,67.014,67.024,67.03399999999999,67.044,67.054,67.064,67.074,67.084,67.094,67.104,67.11399999999999,67.124,67.134,67.14399999999999,67.154,67.164,67.17399999999999,67.184,67.194,67.204,67.214,67.224,67.234,67.244,67.25399999999999,67.264,67.274,67.28399999999999,67.294,67.304,67.314,67.324,67.334,67.344,67.354,67.36399999999999,67.374,67.384,67.39399999999999,67.404,67.414,67.42399999999999,67.434,67.444,67.454,67.464,67.474,67.484,67.494,67.50399999999999,67.514,67.524,67.53399999999999,67.544,67.554,67.564,67.574,67.584,67.594,67.604,67.61399999999999,67.624,67.634,67.64399999999999,67.654,67.664,67.67399999999999,67.684,67.694,67.704,67.714,67.724,67.734,67.744,67.75399999999999,67.764,67.774,67.78399999999999,67.78399999999999,68.474,68.48400000000001,68.494,68.504,68.51400000000001,68.524,68.534,68.544,68.554,68.56400000000001,68.574,68.584,68.59400000000001,68.604,68.614,68.62400000000001,68.634,68.644,68.65400000000001,68.664,68.674,68.684,68.694,68.70400000000001,68.714,68.724,68.73400000000001,68.744,68.754,68.76400000000001,68.774,68.784,68.794,68.804,68.81400000000001,68.824,68.834,68.84400000000001,68.854,68.864,68.87400000000001,68.884,68.894,68.90400000000001,68.914,68.924,68.934,68.944,68.95400000000001,68.964,68.974,68.98400000000001,68.994,69.004,69.01400000000001,69.024,69.034,69.044,69.054,69.06400000000001,69.074,69.084,69.09400000000001,69.104,69.114,69.12400000000001,69.134,69.144,69.15400000000001,69.164,69.174,69.184,69.194,69.20400000000001,69.214,69.224,69.23400000000001,69.244,69.254,69.26400000000001,69.274,69.284,69.294,69.304,69.31400000000001,69.324,69.334,69.34400000000001,69.354,69.364,69.37400000000001,69.384,69.394,69.40400000000001,69.414,69.424,69.434,69.444,69.45400000000001,69.464,69.464,70.154,70.164,70.17399999999999,70.184,70.194,70.204,70.214,70.22399999999999,70.234,70.244,70.25399999999999,70.264,70.274,70.28399999999999,70.294,70.304,70.314,70.324,70.334,70.344,70.354,70.36399999999999,70.374,70.384,70.39399999999999,70.404,70.414,70.42399999999999,70.434,70.444,70.454,70.464,70.47399999999999,70.484,70.494,70.50399999999999,70.514,70.524,70.53399999999999,70.544,70.554,70.564,70.574,70.584,70.594,70.604,70.61399999999999,70.624,70.634,70.64399999999999,70.654,70.664,70.67399999999999,70.684,70.694,70.704,70.714,70.72399999999999,70.734,70.744,70.75399999999999,70.764,70.774,70.78399999999999,70.794,70.804,70.814,70.824,70.834,70.844,70.854,70.86399999999999,70.874,70.884,70.89399999999999,70.904,70.914,70.92399999999999,70.934,70.944,70.954,70.964,70.97399999999999,70.984,70.994,71.00399999999999,71.014,71.024,71.03399999999999,71.044,71.054,71.064,71.074,71.084,71.094,71.104,71.11399999999999,71.124,71.134,71.14399999999999,71.14399999999999,71.834,71.84400000000001,71.854,71.864,71.87400000000001,71.884,71.894,71.904,71.914,71.924,71.934,71.944,71.95400000000001,71.964,71.974,71.98400000000001,71.994,72.004,72.01400000000001,72.024,72.034,72.044,72.054,72.06400000000001,72.074,72.084,72.09400000000001,72.104,72.114,72.12400000000001,72.134,72.144,72.154,72.164,72.174,72.184,72.194,72.20400000000001,72.214,72.224,72.23400000000001,72.244,72.254,72.26400000000001,72.274,72.284,72.294,72.304,72.31400000000001,72.324,72.334,72.34400000000001,72.354,72.364,72.37400000000001,72.384,72.394,72.404,72.414,72.424,72.434,72.444,72.45400000000001,72.464,72.474,72.48400000000001,72.494,72.504,72.51400000000001,72.524,72.534,72.544,72.554,72.56400000000001,72.574,72.584,72.59400000000001,72.604,72.614,72.62400000000001,72.634,72.644,72.654,72.664,72.674,72.684,72.694,72.70400000000001,72.714,72.724,72.73400000000001,72.744,72.754,72.76400000000001,72.774,72.784,72.794,72.804,72.81400000000001,72.824,72.824,73.514,73.524,73.53399999999999,73.544,73.554,73.564,73.574,73.58399999999999,73.594,73.604,73.61399999999999,73.624,73.634,73.64399999999999,73.654,73.664,73.67399999999999,73.684,73.694,73.704,73.714,73.72399999999999,73.734,73.744,73.75399999999999,73.764,73.774,73.78399999999999,73.794,73.804,73.814,73.824,73.83399999999999,73.844,73.854,73.86399999999999,73.874,73.884,73.89399999999999,73.904,73.914,73.92399999999999,73.934,73.944,73.954,73.964,73.97399999999999,73.984,73.994,74.00399999999999,74.014,74.024,74.03399999999999,74.044,74.054,74.064,74.074,74.08399999999999,74.094,74.104,74.11399999999999,74.124,74.134,74.14399999999999,74.154,74.164,74.17399999999999,74.184,74.194,74.204,74.214,74.22399999999999,74.234,74.244,74.25399999999999,74.264,74.274,74.28399999999999,74.294,74.304,74.314,74.324,74.33399999999999,74.344,74.354,74.36399999999999,74.374,74.384,74.39399999999999,74.404,74.414,74.42399999999999,74.434,74.444,74.454,74.464,74.47399999999999,74.484,74.494,74.50399999999999,74.50399999999999,75.194,75.20400000000001,75.214,75.224,75.23400000000001,75.244,75.254,75.264,75.274,75.284,75.294,75.304,75.31400000000001,75.324,75.334,75.34400000000001,75.354,75.364,75.37400000000001,75.384,75.394,75.404,75.414,75.424,75.434,75.444,75.45400000000001,75.464,75.474,75.48400000000001,75.494,75.504,75.514,75.524,75.534,75.544,75.554,75.56400000000001,75.574,75.584,75.59400000000001,75.604,75.614,75.62400000000001,75.634,75.644,75.654,75.664,75.674,75.684,75.694,75.70400000000001,75.714,75.724,75.73400000000001,75.744,75.754,75.764,75.774,75.784,75.794,75.804,75.81400000000001,75.824,75.834,75.84400000000001,75.854,75.864,75.87400000000001,75.884,75.894,75.904,75.914,75.924,75.934,75.944,75.95400000000001,75.964,75.974,75.98400000000001,75.994,76.004,76.014,76.024,76.034,76.044,76.054,76.06400000000001,76.074,76.084,76.09400000000001,76.104,76.114,76.12400000000001,76.134,76.144,76.154,76.164,76.174,76.184,76.184,76.874,76.884,76.89399999999999,76.904,76.914,76.92399999999999,76.934,76.94399999999999,76.954,76.964,76.97399999999999,76.984,76.994,77.00399999999999,77.014,77.024,77.03399999999999,77.044,77.054,77.064,77.074,77.08399999999999,77.094,77.104,77.11399999999999,77.124,77.134,77.14399999999999,77.154,77.164,77.17399999999999,77.184,77.19399999999999,77.204,77.214,77.22399999999999,77.234,77.244,77.25399999999999,77.264,77.274,77.28399999999999,77.294,77.304,77.314,77.324,77.33399999999999,77.344,77.354,77.36399999999999,77.374,77.384,77.39399999999999,77.404,77.414,77.42399999999999,77.434,77.44399999999999,77.454,77.464,77.47399999999999,77.484,77.494,77.50399999999999,77.514,77.524,77.53399999999999,77.544,77.554,77.564,77.574,77.58399999999999,77.594,77.604,77.61399999999999,77.624,77.634,77.64399999999999,77.654,77.664,77.67399999999999,77.684,77.69399999999999,77.704,77.714,77.72399999999999,77.734,77.744,77.75399999999999,77.764,77.774,77.78399999999999,77.794,77.804,77.814,77.824,77.83399999999999,77.844,77.854,77.86399999999999,77.86399999999999,78.554,78.56400000000001,78.574,78.584,78.59400000000001,78.604,78.614,78.624,78.634,78.644,78.654,78.664,78.674,78.684,78.694,78.70400000000001,78.714,78.724,78.73400000000001,78.744,78.754,78.764,78.774,78.784,78.794,78.804,78.81400000000001,78.824,78.834,78.84400000000001,78.854,78.864,78.874,78.884,78.894,78.904,78.914,78.924,78.934,78.944,78.95400000000001,78.964,78.974,78.98400000000001,78.994,79.004,79.014,79.024,79.034,79.044,79.054,79.06400000000001,79.074,79.084,79.09400000000001,79.104,79.114,79.124,79.134,79.144,79.154,79.164,79.174,79.184,79.194,79.20400000000001,79.214,79.224,79.23400000000001,79.244,79.254,79.264,79.274,79.284,79.294,79.304,79.31400000000001,79.324,79.334,79.34400000000001,79.354,79.364,79.374,79.384,79.394,79.404,79.414,79.424,79.434,79.444,79.45400000000001,79.464,79.474,79.48400000000001,79.494,79.504,79.514,79.524,79.534,79.544,79.544,80.234,80.244,80.25399999999999,80.264,80.274,80.28399999999999,80.294,80.30399999999999,80.314,80.324,80.33399999999999,80.344,80.354,80.36399999999999,80.374,80.384,80.39399999999999,80.404,80.414,80.42399999999999,80.434,80.44399999999999,80.454,80.464,80.47399999999999,80.484,80.494,80.50399999999999,80.514,80.524,80.53399999999999,80.544,80.55399999999999,80.564,80.574,80.58399999999999,80.594,80.604,80.61399999999999,80.624,80.634,80.64399999999999,80.654,80.664,80.67399999999999,80.684,80.69399999999999,80.704,80.714,80.72399999999999,80.734,80.744,80.75399999999999,80.764,80.774,80.78399999999999,80.794,80.80399999999999,80.814,80.824,80.83399999999999,80.844,80.854,80.86399999999999,80.874,80.884,80.89399999999999,80.904,80.914,80.92399999999999,80.934,80.94399999999999,80.954,80.964,80.97399999999999,80.984,80.994,81.00399999999999,81.014,81.024,81.03399999999999,81.044,81.05399999999999,81.064,81.074,81.08399999999999,81.094,81.104,81.11399999999999,81.124,81.134,81.14399999999999,81.154,81.164,81.17399999999999,81.184,81.19399999999999,81.204,81.214,81.22399999999999,81.22399999999999,81.914,81.924,81.934,81.944,81.95400000000001,81.964,81.974,81.984,81.994,82.004,82.014,82.024,82.034,82.044,82.054,82.06400000000001,82.074,82.084,82.09400000000001,82.104,82.114,82.124,82.134,82.144,82.154,82.164,82.174,82.184,82.194,82.20400000000001,82.214,82.224,82.234,82.244,82.254,82.264,82.274,82.284,82.294,82.304,82.31400000000001,82.324,82.334,82.34400000000001,82.354,82.364,82.374,82.384,82.394,82.404,82.414,82.424,82.434,82.444,82.45400000000001,82.464,82.474,82.484,82.494,82.504,82.514,82.524,82.534,82.544,82.554,82.56400000000001,82.574,82.584,82.59400000000001,82.604,82.614,82.624,82.634,82.644,82.654,82.664,82.674,82.684,82.694,82.70400000000001,82.714,82.724,82.734,82.744,82.754,82.764,82.774,82.784,82.794,82.804,82.81400000000001,82.824,82.834,82.84400000000001,82.854,82.864,82.874,82.884,82.894,82.904,82.904,83.59400000000001,83.60400000000001,83.614,83.62400000000001,83.63400000000001,83.644,83.65400000000001,83.664,83.674,83.68400000000001,83.694,83.70400000000001,83.71400000000001,83.724,83.73400000000001,83.74400000000001,83.754,83.76400000000001,83.77400000000002,83.784,83.79400000000001,83.804,83.81400000000001,83.82400000000001,83.834,83.84400000000001,83.85400000000001,83.864,83.87400000000001,83.88400000000001,83.894,83.90400000000001,83.914,83.924,83.93400000000001,83.944,83.95400000000001,83.96400000000001,83.974,83.98400000000001,83.99400000000001,84.004,84.01400000000001,84.02400000000002,84.034,84.04400000000001,84.054,84.06400000000001,84.07400000000001,84.084,84.09400000000001,84.10400000000001,84.114,84.12400000000001,84.13400000000001,84.144,84.15400000000001,84.164,84.174,84.18400000000001,84.194,84.20400000000001,84.21400000000001,84.224,84.23400000000001,84.24400000000001,84.254,84.26400000000001,84.27400000000002,84.284,84.29400000000001,84.304,84.31400000000001,84.32400000000001,84.334,84.34400000000001,84.35400000000001,84.364,84.37400000000001,84.38400000000001,84.394,84.40400000000001,84.414,84.424,84.43400000000001,84.444,84.45400000000001,84.46400000000001,84.474,84.48400000000001,84.49400000000001,84.504,84.51400000000001,84.52400000000002,84.534,84.54400000000001,84.554,84.56400000000001,84.57400000000001,84.584,84.584,85.274,85.284,85.294,85.304,85.31400000000001,85.324,85.334,85.344,85.354,85.364,85.374,85.384,85.394,85.404,85.414,85.424,85.434,85.444,85.45400000000001,85.464,85.474,85.484,85.494,85.504,85.514,85.524,85.534,85.544,85.554,85.56400000000001,85.574,85.584,85.594,85.604,85.614,85.624,85.634,85.644,85.654,85.664,85.674,85.684,85.694,85.70400000000001,85.714,85.724,85.734,85.744,85.754,85.764,85.774,85.784,85.794,85.804,85.81400000000001,85.824,85.834,85.844,85.854,85.864,85.874,85.884,85.894,85.904,85.914,85.924,85.934,85.944,85.95400000000001,85.964,85.974,85.984,85.994,86.004,86.014,86.024,86.034,86.044,86.054,86.06400000000001,86.074,86.084,86.094,86.104,86.114,86.124,86.134,86.144,86.154,86.164,86.174,86.184,86.194,86.20400000000001,86.214,86.224,86.234,86.244,86.254,86.264,86.264,86.95400000000001,86.96400000000001,86.974,86.98400000000001,86.99400000000001,87.004,87.01400000000001,87.024,87.034,87.04400000000001,87.054,87.06400000000001,87.07400000000001,87.084,87.09400000000001,87.10400000000001,87.114,87.12400000000001,87.13400000000001,87.144,87.15400000000001,87.164,87.174,87.18400000000001,87.194,87.20400000000001,87.21400000000001,87.224,87.23400000000001,87.24400000000001,87.254,87.26400000000001,87.274,87.284,87.29400000000001,87.304,87.31400000000001,87.32400000000001,87.334,87.34400000000001,87.35400000000001,87.364,87.37400000000001,87.38400000000001,87.394,87.40400000000001,87.414,87.424,87.43400000000001,87.444,87.45400000000001,87.46400000000001,87.474,87.48400000000001,87.49400000000001,87.504,87.51400000000001,87.524,87.534,87.54400000000001,87.554,87.56400000000001,87.57400000000001,87.584,87.59400000000001,87.60400000000001,87.614,87.62400000000001,87.63400000000001,87.644,87.65400000000001,87.664,87.674,87.68400000000001,87.694,87.70400000000001,87.71400000000001,87.724,87.73400000000001,87.74400000000001,87.754,87.76400000000001,87.774,87.784,87.79400000000001,87.804,87.81400000000001,87.82400000000001,87.834,87.84400000000001,87.85400000000001,87.864,87.87400000000001,87.88400000000001,87.894,87.90400000000001,87.914,87.924,87.93400000000001,87.944,87.944,88.634,88.644,88.654,88.664,88.674,88.684,88.694,88.704,88.714,88.724,88.734,88.744,88.754,88.764,88.774,88.784,88.794,88.804,88.81400000000001,88.824,88.834,88.844,88.854,88.864,88.874,88.884,88.894,88.904,88.914,88.924,88.934,88.944,88.954,88.964,88.974,88.984,88.994,89.004,89.014,89.024,89.034,89.044,89.054,89.06400000000001,89.074,89.084,89.094,89.104,89.114,89.124,89.134,89.144,89.154,89.164,89.174,89.184,89.194,89.204,89.214,89.224,89.234,89.244,89.254,89.264,89.274,89.284,89.294,89.304,89.31400000000001,89.324,89.334,89.344,89.354,89.364,89.374,89.384,89.394,89.404,89.414,89.424,89.434,89.444,89.454,89.464,89.474,89.484,89.494,89.504,89.514,89.524,89.534,89.544,89.554,89.56400000000001,89.574,89.584,89.594,89.604,89.614,89.624,89.624,90.31400000000001,90.32400000000001,90.334,90.34400000000001,90.35400000000001,90.364,90.37400000000001,90.384,90.394,90.40400000000001,90.414,90.424,90.43400000000001,90.444,90.45400000000001,90.46400000000001,90.474,90.48400000000001,90.49400000000001,90.504,90.51400000000001,90.524,90.534,90.54400000000001,90.554,90.56400000000001,90.57400000000001,90.584,90.59400000000001,90.60400000000001,90.614,90.62400000000001,90.634,90.644,90.65400000000001,90.664,90.674,90.68400000000001,90.694,90.70400000000001,90.71400000000001,90.724,90.73400000000001,90.74400000000001,90.754,90.76400000000001,90.774,90.784,90.79400000000001,90.804,90.81400000000001,90.82400000000001,90.834,90.84400000000001,90.85400000000001,90.864,90.87400000000001,90.884,90.894,90.90400000000001,90.914,90.924,90.93400000000001,90.944,90.95400000000001,90.96400000000001,90.974,90.98400000000001,90.99400000000001,91.004,91.01400000000001,91.024,91.034,91.04400000000001,91.054,91.06400000000001,91.07400000000001,91.084,91.09400000000001,91.10400000000001,91.114,91.12400000000001,91.134,91.144,91.15400000000001,91.164,91.174,91.18400000000001,91.194,91.20400000000001,91.21400000000001,91.224,91.23400000000001,91.24400000000001,91.254,91.26400000000001,91.274,91.284,91.29400000000001,91.304,91.304,91.994,92.004,92.014,92.024,92.034,92.044,92.054,92.064,92.074,92.084,92.094,92.104,92.114,92.124,92.134,92.144,92.154,92.164,92.174,92.184,92.194,92.204,92.214,92.224,92.234,92.244,92.254,92.264,92.274,92.284,92.294,92.304,92.314,92.324,92.334,92.344,92.354,92.364,92.374,92.384,92.394,92.404,92.414,92.424,92.434,92.444,92.454,92.464,92.474,92.484,92.494,92.504,92.514,92.524,92.534,92.544,92.554,92.564,92.574,92.584,92.594,92.604,92.614,92.624,92.634,92.644,92.654,92.664,92.674,92.684,92.694,92.704,92.714,92.724,92.734,92.744,92.754,92.764,92.774,92.784,92.794,92.804,92.814,92.824,92.834,92.844,92.854,92.864,92.874,92.884,92.894,92.904,92.914,92.924,92.934,92.944,92.954,92.964,92.974,92.984,92.984,93.674,93.68400000000001,93.694,93.70400000000001,93.71400000000001,93.724,93.73400000000001,93.744,93.754,93.76400000000001,93.774,93.784,93.79400000000001,93.804,93.81400000000001,93.82400000000001,93.834,93.84400000000001,93.85400000000001,93.864,93.87400000000001,93.884,93.894,93.90400000000001,93.914,93.924,93.93400000000001,93.944,93.95400000000001,93.96400000000001,93.974,93.98400000000001,93.994,94.004,94.01400000000001,94.024,94.034,94.04400000000001,94.054,94.06400000000001,94.07400000000001,94.084,94.09400000000001,94.10400000000001,94.114,94.12400000000001,94.134,94.144,94.15400000000001,94.164,94.174,94.18400000000001,94.194,94.20400000000001,94.21400000000001,94.224,94.23400000000001,94.244,94.254,94.26400000000001,94.274,94.284,94.29400000000001,94.304,94.31400000000001,94.32400000000001,94.334,94.34400000000001,94.35400000000001,94.364,94.37400000000001,94.384,94.394,94.40400000000001,94.414,94.424,94.43400000000001,94.444,94.45400000000001,94.46400000000001,94.474,94.48400000000001,94.494,94.504,94.51400000000001,94.524,94.534,94.54400000000001,94.554,94.56400000000001,94.57400000000001,94.584,94.59400000000001,94.60400000000001,94.614,94.62400000000001,94.634,94.644,94.65400000000001,94.664,94.664,95.354,95.364,95.374,95.384,95.394,95.404,95.414,95.42399999999999,95.434,95.444,95.454,95.464,95.474,95.484,95.494,95.504,95.514,95.524,95.534,95.544,95.554,95.564,95.574,95.584,95.594,95.604,95.614,95.624,95.634,95.644,95.654,95.664,95.67399999999999,95.684,95.694,95.704,95.714,95.724,95.734,95.744,95.754,95.764,95.774,95.784,95.794,95.804,95.814,95.824,95.834,95.844,95.854,95.864,95.874,95.884,95.894,95.904,95.914,95.92399999999999,95.934,95.944,95.954,95.964,95.974,95.984,95.994,96.004,96.014,96.024,96.034,96.044,96.054,96.064,96.074,96.084,96.094,96.104,96.114,96.124,96.134,96.144,96.154,96.164,96.17399999999999,96.184,96.194,96.204,96.214,96.224,96.234,96.244,96.254,96.264,96.274,96.284,96.294,96.304,96.314,96.324,96.334,96.344,96.344,97.034,97.04400000000001,97.054,97.06400000000001,97.07400000000001,97.084,97.09400000000001,97.104,97.114,97.12400000000001,97.134,97.144,97.15400000000001,97.164,97.174,97.18400000000001,97.194,97.20400000000001,97.21400000000001,97.224,97.23400000000001,97.244,97.254,97.26400000000001,97.274,97.284,97.29400000000001,97.304,97.31400000000001,97.32400000000001,97.334,97.34400000000001,97.354,97.364,97.37400000000001,97.384,97.394,97.40400000000001,97.414,97.424,97.43400000000001,97.444,97.45400000000001,97.46400000000001,97.474,97.48400000000001,97.494,97.504,97.51400000000001,97.524,97.534,97.54400000000001,97.554,97.56400000000001,97.57400000000001,97.584,97.59400000000001,97.604,97.614,97.62400000000001,97.634,97.644,97.65400000000001,97.664,97.674,97.68400000000001,97.694,97.70400000000001,97.71400000000001,97.724,97.73400000000001,97.744,97.754,97.76400000000001,97.774,97.784,97.79400000000001,97.804,97.81400000000001,97.82400000000001,97.834,97.84400000000001,97.854,97.864,97.87400000000001,97.884,97.894,97.90400000000001,97.914,97.924,97.93400000000001,97.944,97.95400000000001,97.96400000000001,97.974,97.98400000000001,97.994,98.004,98.01400000000001,98.024,98.024,98.714,98.724,98.734,98.744,98.754,98.764,98.774,98.78399999999999,98.794,98.804,98.814,98.824,98.834,98.844,98.854,98.864,98.874,98.884,98.894,98.904,98.914,98.92399999999999,98.934,98.944,98.954,98.964,98.974,98.984,98.994,99.004,99.014,99.024,99.03399999999999,99.044,99.054,99.064,99.074,99.084,99.094,99.104,99.114,99.124,99.134,99.144,99.154,99.164,99.17399999999999,99.184,99.194,99.204,99.214,99.224,99.234,99.244,99.254,99.264,99.274,99.28399999999999,99.294,99.304,99.314,99.324,99.334,99.344,99.354,99.364,99.374,99.384,99.394,99.404,99.414,99.42399999999999,99.434,99.444,99.454,99.464,99.474,99.484,99.494,99.504,99.514,99.524,99.53399999999999,99.544,99.554,99.564,99.574,99.584,99.594,99.604,99.614,99.624,99.634,99.644,99.654,99.664,99.67399999999999,99.684,99.694,99.704,99.704,100.394,100.40400000000001,100.414,100.424,100.43400000000001,100.444,100.45400000000001,100.464,100.474,100.48400000000001,100.494,100.504,100.51400000000001,100.524,100.534,100.54400000000001,100.554,100.56400000000001,100.57400000000001,100.584,100.59400000000001,100.604,100.614,100.62400000000001,100.634,100.644,100.65400000000001,100.664,100.674,100.68400000000001,100.694,100.70400000000001,100.714,100.724,100.73400000000001,100.744,100.754,100.76400000000001,100.774,100.784,100.79400000000001,100.804,100.81400000000001,100.82400000000001,100.834,100.84400000000001,100.854,100.864,100.87400000000001,100.884,100.894,100.90400000000001,100.914,100.924,100.93400000000001,100.944,100.95400000000001,100.964,100.974,100.98400000000001,100.994,101.004,101.01400000000001,101.024,101.034,101.04400000000001,101.054,101.06400000000001,101.07400000000001,101.084,101.09400000000001,101.104,101.114,101.12400000000001,101.134,101.144,101.15400000000001,101.164,101.174,101.18400000000001,101.194,101.20400000000001,101.214,101.224,101.23400000000001,101.244,101.254,101.26400000000001,101.274,101.284,101.29400000000001,101.304,101.31400000000001,101.32400000000001,101.334,101.34400000000001,101.354,101.364,101.37400000000001,101.384,101.384,102.074,102.084,102.094,102.104,102.114,102.124,102.134,102.14399999999999,102.154,102.164,102.17399999999999,102.184,102.194,102.204,102.214,102.224,102.234,102.244,102.254,102.264,102.274,102.28399999999999,102.294,102.304,102.314,102.324,102.334,102.344,102.354,102.364,102.374,102.384,102.39399999999999,102.404,102.414,102.42399999999999,102.434,102.444,102.454,102.464,102.474,102.484,102.494,102.504,102.514,102.524,102.53399999999999,102.544,102.554,102.564,102.574,102.584,102.594,102.604,102.614,102.624,102.634,102.64399999999999,102.654,102.664,102.67399999999999,102.684,102.694,102.704,102.714,102.724,102.734,102.744,102.754,102.764,102.774,102.78399999999999,102.794,102.804,102.814,102.824,102.834,102.844,102.854,102.864,102.874,102.884,102.89399999999999,102.904,102.914,102.92399999999999,102.934,102.944,102.954,102.964,102.974,102.984,102.994,103.004,103.014,103.024,103.03399999999999,103.044,103.054,103.064,103.064,103.754,103.76400000000001,103.774,103.784,103.79400000000001,103.804,103.81400000000001,103.824,103.834,103.84400000000001,103.854,103.864,103.87400000000001,103.884,103.894,103.90400000000001,103.914,103.924,103.93400000000001,103.944,103.95400000000001,103.964,103.974,103.98400000000001,103.994,104.004,104.01400000000001,104.024,104.034,104.04400000000001,104.054,104.06400000000001,104.074,104.084,104.09400000000001,104.104,104.114,104.12400000000001,104.134,104.144,104.15400000000001,104.164,104.174,104.18400000000001,104.194,104.20400000000001,104.214,104.224,104.23400000000001,104.244,104.254,104.26400000000001,104.274,104.284,104.29400000000001,104.304,104.31400000000001,104.324,104.334,104.34400000000001,104.354,104.364,104.37400000000001,104.384,104.394,104.40400000000001,104.414,104.424,104.43400000000001,104.444,104.45400000000001,104.464,104.474,104.48400000000001,104.494,104.504,104.51400000000001,104.524,104.534,104.54400000000001,104.554,104.56400000000001,104.574,104.584,104.59400000000001,104.604,104.614,104.62400000000001,104.634,104.644,104.65400000000001,104.664,104.674,104.68400000000001,104.694,104.70400000000001,104.714,104.724,104.73400000000001,104.744,104.744,105.434,105.444,105.454,105.464,105.474,105.484,105.494,105.50399999999999,105.514,105.524,105.53399999999999,105.544,105.554,105.564,105.574,105.584,105.594,105.604,105.614,105.624,105.634,105.64399999999999,105.654,105.664,105.67399999999999,105.684,105.694,105.704,105.714,105.724,105.734,105.744,105.75399999999999,105.764,105.774,105.78399999999999,105.794,105.804,105.814,105.824,105.834,105.844,105.854,105.864,105.874,105.884,105.89399999999999,105.904,105.914,105.92399999999999,105.934,105.944,105.954,105.964,105.974,105.984,105.994,106.00399999999999,106.014,106.024,106.03399999999999,106.044,106.054,106.064,106.074,106.084,106.094,106.104,106.114,106.124,106.134,106.14399999999999,106.154,106.164,106.17399999999999,106.184,106.194,106.204,106.214,106.224,106.234,106.244,106.25399999999999,106.264,106.274,106.28399999999999,106.294,106.304,106.314,106.324,106.334,106.344,106.354,106.364,106.374,106.384,106.39399999999999,106.404,106.414,106.42399999999999,106.42399999999999,107.114,107.12400000000001,107.134,107.144,107.15400000000001,107.164,107.174,107.184,107.194,107.20400000000001,107.214,107.224,107.23400000000001,107.244,107.254,107.26400000000001,107.274,107.284,107.29400000000001,107.304,107.31400000000001,107.324,107.334,107.34400000000001,107.354,107.364,107.37400000000001,107.384,107.394,107.40400000000001,107.414,107.424,107.434,107.444,107.45400000000001,107.464,107.474,107.48400000000001,107.494,107.504,107.51400000000001,107.524,107.534,107.54400000000001,107.554,107.56400000000001,107.574,107.584,107.59400000000001,107.604,107.614,107.62400000000001,107.634,107.644,107.65400000000001,107.664,107.674,107.684,107.694,107.70400000000001,107.714,107.724,107.73400000000001,107.744,107.754,107.76400000000001,107.774,107.784,107.79400000000001,107.804,107.81400000000001,107.824,107.834,107.84400000000001,107.854,107.864,107.87400000000001,107.884,107.894,107.90400000000001,107.914,107.924,107.934,107.944,107.95400000000001,107.964,107.974,107.98400000000001,107.994,108.004,108.01400000000001,108.024,108.034,108.04400000000001,108.054,108.06400000000001,108.074,108.084,108.09400000000001,108.104,108.104,108.794,108.804,108.814,108.824,108.834,108.844,108.854,108.86399999999999,108.874,108.884,108.89399999999999,108.904,108.914,108.92399999999999,108.934,108.944,108.954,108.964,108.974,108.984,108.994,109.00399999999999,109.014,109.024,109.03399999999999,109.044,109.054,109.064,109.074,109.084,109.094,109.104,109.11399999999999,109.124,109.134,109.14399999999999,109.154,109.164,109.17399999999999,109.184,109.194,109.204,109.214,109.224,109.234,109.244,109.25399999999999,109.264,109.274,109.28399999999999,109.294,109.304,109.314,109.324,109.334,109.344,109.354,109.36399999999999,109.374,109.384,109.39399999999999,109.404,109.414,109.42399999999999,109.434,109.444,109.454,109.464,109.474,109.484,109.494,109.50399999999999,109.514,109.524,109.53399999999999,109.544,109.554,109.564,109.574,109.584,109.594,109.604,109.61399999999999,109.624,109.634,109.64399999999999,109.654,109.664,109.67399999999999,109.684,109.694,109.704,109.714,109.724,109.734,109.744,109.75399999999999,109.764,109.774,109.78399999999999,109.78399999999999,110.474,110.48400000000001,110.494,110.504,110.51400000000001,110.524,110.534,110.544,110.554,110.56400000000001,110.574,110.584,110.59400000000001,110.604,110.614,110.62400000000001,110.634,110.644,110.65400000000001,110.664,110.674,110.684,110.694,110.70400000000001,110.714,110.724,110.73400000000001,110.744,110.754,110.76400000000001,110.774,110.784,110.794,110.804,110.81400000000001,110.824,110.834,110.84400000000001,110.854,110.864,110.87400000000001,110.884,110.894,110.90400000000001,110.914,110.924,110.934,110.944,110.95400000000001,110.964,110.974,110.98400000000001,110.994,111.004,111.01400000000001,111.024,111.034,111.044,111.054,111.06400000000001,111.074,111.084,111.09400000000001,111.104,111.114,111.12400000000001,111.134,111.144,111.15400000000001,111.164,111.174,111.184,111.194,111.20400000000001,111.214,111.224,111.23400000000001,111.244,111.254,111.26400000000001,111.274,111.284,111.294,111.304,111.31400000000001,111.324,111.334,111.34400000000001,111.354,111.364,111.37400000000001,111.384,111.394,111.40400000000001,111.414,111.424,111.434,111.444,111.45400000000001,111.464,111.464,112.154,112.164,112.17399999999999,112.184,112.194,112.204,112.214,112.22399999999999,112.234,112.244,112.25399999999999,112.264,112.274,112.28399999999999,112.294,112.304,112.314,112.324,112.334,112.344,112.354,112.36399999999999,112.374,112.384,112.39399999999999,112.404,112.414,112.42399999999999,112.434,112.444,112.454,112.464,112.47399999999999,112.484,112.494,112.50399999999999,112.514,112.524,112.53399999999999,112.544,112.554,112.564,112.574,112.584,112.594,112.604,112.61399999999999,112.624,112.634,112.64399999999999,112.654,112.664,112.67399999999999,112.684,112.694,112.704,112.714,112.72399999999999,112.734,112.744,112.75399999999999,112.764,112.774,112.78399999999999,112.794,112.804,112.814,112.824,112.834,112.844,112.854,112.86399999999999,112.874,112.884,112.89399999999999,112.904,112.914,112.92399999999999,112.934,112.944,112.954,112.964,112.97399999999999,112.984,112.994,113.00399999999999,113.014,113.024,113.03399999999999,113.044,113.054,113.064,113.074,113.084,113.094,113.104,113.11399999999999,113.124,113.134,113.14399999999999,113.14399999999999,113.834,113.84400000000001,113.854,113.864,113.87400000000001,113.884,113.894,113.904,113.914,113.924,113.934,113.944,113.95400000000001,113.964,113.974,113.98400000000001,113.994,114.004,114.01400000000001,114.024,114.034,114.044,114.054,114.06400000000001,114.074,114.084,114.09400000000001,114.104,114.114,114.12400000000001,114.134,114.144,114.154,114.164,114.174,114.184,114.194,114.20400000000001,114.214,114.224,114.23400000000001,114.244,114.254,114.26400000000001,114.274,114.284,114.294,114.304,114.31400000000001,114.324,114.334,114.34400000000001,114.354,114.364,114.37400000000001,114.384,114.394,114.404,114.414,114.424,114.434,114.444,114.45400000000001,114.464,114.474,114.48400000000001,114.494,114.504,114.51400000000001,114.524,114.534,114.544,114.554,114.56400000000001,114.574,114.584,114.59400000000001,114.604,114.614,114.62400000000001,114.634,114.644,114.654,114.664,114.674,114.684,114.694,114.70400000000001,114.714,114.724,114.73400000000001,114.744,114.754,114.76400000000001,114.774,114.784,114.794,114.804,114.81400000000001,114.824,114.824,115.514,115.524,115.53399999999999,115.544,115.554,115.564,115.574,115.58399999999999,115.594,115.604,115.61399999999999,115.624,115.634,115.64399999999999,115.654,115.664,115.67399999999999,115.684,115.694,115.704,115.714,115.72399999999999,115.734,115.744,115.75399999999999,115.764,115.774,115.78399999999999,115.794,115.804,115.814,115.824,115.83399999999999,115.844,115.854,115.86399999999999,115.874,115.884,115.89399999999999,115.904,115.914,115.92399999999999,115.934,115.944,115.954,115.964,115.97399999999999,115.984,115.994,116.00399999999999,116.014,116.024,116.03399999999999,116.044,116.054,116.064,116.074,116.08399999999999,116.094,116.104,116.11399999999999,116.124,116.134,116.14399999999999,116.154,116.164,116.17399999999999,116.184,116.194,116.204,116.214,116.22399999999999,116.234,116.244,116.25399999999999,116.264,116.274,116.28399999999999,116.294,116.304,116.314,116.324,116.33399999999999,116.344,116.354,116.36399999999999,116.374,116.384,116.39399999999999,116.404,116.414,116.42399999999999,116.434,116.444,116.454,116.464,116.47399999999999,116.484,116.494,116.50399999999999,116.50399999999999,117.194,117.20400000000001,117.214,117.224,117.23400000000001,117.244,117.254,117.264,117.274,117.284,117.294,117.304,117.31400000000001,117.324,117.334,117.34400000000001,117.354,117.364,117.37400000000001,117.384,117.394,117.404,117.414,117.424,117.434,117.444,117.45400000000001,117.464,117.474,117.48400000000001,117.494,117.504,117.514,117.524,117.534,117.544,117.554,117.56400000000001,117.574,117.584,117.59400000000001,117.604,117.614,117.62400000000001,117.634,117.644,117.654,117.664,117.674,117.684,117.694,117.70400000000001,117.714,117.724,117.73400000000001,117.744,117.754,117.764,117.774,117.784,117.794,117.804,117.81400000000001,117.824,117.834,117.84400000000001,117.854,117.864,117.87400000000001,117.884,117.894,117.904,117.914,117.924,117.934,117.944,117.95400000000001,117.964,117.974,117.98400000000001,117.994,118.004,118.014,118.024,118.034,118.044,118.054,118.06400000000001,118.074,118.084,118.09400000000001,118.104,118.114,118.12400000000001,118.134,118.144,118.154,118.164,118.174,118.184,118.184,118.87400000000001,118.88400000000001,118.894,118.90400000000001,118.91400000000002,118.924,118.93400000000001,118.944,118.95400000000001,118.96400000000001,118.974,118.98400000000001,118.99400000000001,119.004,119.01400000000001,119.02400000000002,119.034,119.04400000000001,119.05400000000002,119.06400000000001,119.07400000000001,119.084,119.09400000000001,119.10400000000001,119.114,119.12400000000001,119.13400000000001,119.144,119.15400000000001,119.16400000000002,119.174,119.18400000000001,119.194,119.20400000000001,119.21400000000001,119.224,119.23400000000001,119.24400000000001,119.254,119.26400000000001,119.27400000000002,119.284,119.29400000000001,119.30400000000002,119.31400000000001,119.32400000000001,119.334,119.34400000000001,119.35400000000001,119.364,119.37400000000001,119.38400000000001,119.394,119.40400000000001,119.41400000000002,119.424,119.43400000000001,119.444,119.45400000000001,119.46400000000001,119.474,119.48400000000001,119.49400000000001,119.504,119.51400000000001,119.52400000000002,119.534,119.54400000000001,119.55400000000002,119.56400000000001,119.57400000000001,119.584,119.59400000000001,119.60400000000001,119.614,119.62400000000001,119.63400000000001,119.644,119.65400000000001,119.66400000000002,119.674,119.68400000000001,119.694,119.70400000000001,119.71400000000001,119.724,119.73400000000001,119.74400000000001,119.754,119.76400000000001,119.77400000000002,119.784,119.79400000000001,119.80400000000002,119.81400000000001,119.82400000000001,119.834,119.84400000000001,119.85400000000001,119.864,119.864,120.554,120.56400000000001,120.574,120.584,120.59400000000001,120.604,120.614,120.624,120.634,120.644,120.654,120.664,120.674,120.684,120.694,120.70400000000001,120.714,120.724,120.73400000000001,120.744,120.754,120.764,120.774,120.784,120.794,120.804,120.81400000000001,120.824,120.834,120.84400000000001,120.854,120.864,120.874,120.884,120.894,120.904,120.914,120.924,120.934,120.944,120.95400000000001,120.964,120.974,120.98400000000001,120.994,121.004,121.014,121.024,121.034,121.044,121.054,121.06400000000001,121.074,121.084,121.09400000000001,121.104,121.114,121.124,121.134,121.144,121.154,121.164,121.174,121.184,121.194,121.20400000000001,121.214,121.224,121.23400000000001,121.244,121.254,121.264,121.274,121.284,121.294,121.304,121.31400000000001,121.324,121.334,121.34400000000001,121.354,121.364,121.374,121.384,121.394,121.404,121.414,121.424,121.434,121.444,121.45400000000001,121.464,121.474,121.48400000000001,121.494,121.504,121.514,121.524,121.534,121.544,121.544,122.23400000000001,122.24400000000001,122.254,122.26400000000001,122.27400000000002,122.284,122.29400000000001,122.304,122.31400000000001,122.32400000000001,122.334,122.34400000000001,122.35400000000001,122.364,122.37400000000001,122.38400000000001,122.394,122.40400000000001,122.41400000000002,122.424,122.43400000000001,122.444,122.45400000000001,122.46400000000001,122.474,122.48400000000001,122.49400000000001,122.504,122.51400000000001,122.52400000000002,122.534,122.54400000000001,122.554,122.56400000000001,122.57400000000001,122.584,122.59400000000001,122.60400000000001,122.614,122.62400000000001,122.63400000000001,122.644,122.65400000000001,122.66400000000002,122.674,122.68400000000001,122.694,122.70400000000001,122.71400000000001,122.724,122.73400000000001,122.74400000000001,122.754,122.76400000000001,122.77400000000002,122.784,122.79400000000001,122.804,122.81400000000001,122.82400000000001,122.834,122.84400000000001,122.85400000000001,122.864,122.87400000000001,122.88400000000001,122.894,122.90400000000001,122.91400000000002,122.924,122.93400000000001,122.944,122.95400000000001,122.96400000000001,122.974,122.98400000000001,122.99400000000001,123.004,123.01400000000001,123.02400000000002,123.034,123.04400000000001,123.054,123.06400000000001,123.07400000000001,123.084,123.09400000000001,123.10400000000001,123.114,123.12400000000001,123.13400000000001,123.144,123.15400000000001,123.16400000000002,123.174,123.18400000000001,123.194,123.20400000000001,123.21400000000001,123.224,123.224,123.914,123.924,123.934,123.944,123.95400000000001,123.964,123.974,123.984,123.994,124.004,124.014,124.024,124.034,124.044,124.054,124.06400000000001,124.074,124.084,124.09400000000001,124.104,124.114,124.124,124.134,124.144,124.154,124.164,124.174,124.184,124.194,124.20400000000001,124.214,124.224,124.234,124.244,124.254,124.264,124.274,124.284,124.294,124.304,124.31400000000001,124.324,124.334,124.34400000000001,124.354,124.364,124.374,124.384,124.394,124.404,124.414,124.424,124.434,124.444,124.45400000000001,124.464,124.474,124.484,124.494,124.504,124.514,124.524,124.534,124.544,124.554,124.56400000000001,124.574,124.584,124.59400000000001,124.604,124.614,124.624,124.634,124.644,124.654,124.664,124.674,124.684,124.694,124.70400000000001,124.714,124.724,124.734,124.744,124.754,124.764,124.774,124.784,124.794,124.804,124.81400000000001,124.824,124.834,124.84400000000001,124.854,124.864,124.874,124.884,124.894,124.904,124.904,125.59400000000001,125.60400000000001,125.614,125.62400000000001,125.63400000000001,125.644,125.65400000000001,125.664,125.674,125.68400000000001,125.694,125.70400000000001,125.71400000000001,125.724,125.73400000000001,125.74400000000001,125.754,125.76400000000001,125.77400000000002,125.784,125.79400000000001,125.804,125.81400000000001,125.82400000000001,125.834,125.84400000000001,125.85400000000001,125.864,125.87400000000001,125.88400000000001,125.894,125.90400000000001,125.914,125.924,125.93400000000001,125.944,125.95400000000001,125.96400000000001,125.974,125.98400000000001,125.99400000000001,126.004,126.01400000000001,126.02400000000002,126.034,126.04400000000001,126.054,126.06400000000001,126.07400000000001,126.084,126.09400000000001,126.10400000000001,126.114,126.12400000000001,126.13400000000001,126.144,126.15400000000001,126.164,126.174,126.18400000000001,126.194,126.20400000000001,126.21400000000001,126.224,126.23400000000001,126.24400000000001,126.254,126.26400000000001,126.27400000000002,126.284,126.29400000000001,126.304,126.31400000000001,126.32400000000001,126.334,126.34400000000001,126.35400000000001,126.364,126.37400000000001,126.38400000000001,126.394,126.40400000000001,126.414,126.424,126.43400000000001,126.444,126.45400000000001,126.46400000000001,126.474,126.48400000000001,126.49400000000001,126.504,126.51400000000001,126.52400000000002,126.534,126.54400000000001,126.554,126.56400000000001,126.57400000000001,126.584,126.584,127.274,127.284,127.294,127.304,127.31400000000001,127.324,127.334,127.344,127.354,127.364,127.374,127.384,127.394,127.404,127.414,127.424,127.434,127.444,127.45400000000001,127.464,127.474,127.484,127.494,127.504,127.514,127.524,127.534,127.544,127.554,127.56400000000001,127.574,127.584,127.594,127.604,127.614,127.624,127.634,127.644,127.654,127.664,127.674,127.684,127.694,127.70400000000001,127.714,127.724,127.734,127.744,127.754,127.764,127.774,127.784,127.794,127.804,127.81400000000001,127.824,127.834,127.844,127.854,127.864,127.874,127.884,127.894,127.904,127.914,127.924,127.934,127.944,127.95400000000001,127.964,127.974,127.984,127.994,128.004,128.014,128.024,128.034,128.044,128.054,128.064,128.074,128.084,128.094,128.104,128.114,128.124,128.13400000000001,128.144,128.154,128.164,128.174,128.184,128.194,128.204,128.214,128.224,128.234,128.244,128.254,128.264,128.264,128.954,128.964,128.97400000000002,128.984,128.994,129.00400000000002,129.014,129.024,129.03400000000002,129.044,129.054,129.06400000000002,129.074,129.084,129.094,129.104,129.114,129.124,129.13400000000001,129.144,129.154,129.16400000000002,129.174,129.184,129.19400000000002,129.204,129.214,129.22400000000002,129.234,129.244,129.25400000000002,129.264,129.274,129.28400000000002,129.294,129.304,129.31400000000002,129.324,129.334,129.344,129.354,129.364,129.374,129.38400000000001,129.394,129.404,129.41400000000002,129.424,129.434,129.44400000000002,129.454,129.464,129.47400000000002,129.484,129.494,129.50400000000002,129.514,129.524,129.53400000000002,129.544,129.554,129.56400000000002,129.574,129.584,129.594,129.604,129.614,129.624,129.63400000000001,129.644,129.654,129.66400000000002,129.674,129.684,129.69400000000002,129.704,129.714,129.72400000000002,129.734,129.744,129.75400000000002,129.764,129.774,129.78400000000002,129.794,129.804,129.81400000000002,129.824,129.834,129.844,129.854,129.864,129.874,129.88400000000001,129.894,129.904,129.91400000000002,129.924,129.934,129.94400000000002,129.94400000000002,130.63400000000001,130.644,130.65400000000002,130.66400000000002,130.674,130.68400000000003,130.69400000000002,130.704,130.71400000000003,130.72400000000002,130.734,130.74400000000003,130.75400000000002,130.764,130.774,130.78400000000002,130.794,130.804,130.81400000000002,130.824,130.834,130.84400000000002,130.854,130.864,130.87400000000002,130.88400000000001,130.894,130.90400000000002,130.91400000000002,130.924,130.93400000000003,130.94400000000002,130.954,130.96400000000003,130.97400000000002,130.984,130.99400000000003,131.00400000000002,131.014,131.024,131.03400000000002,131.044,131.054,131.06400000000002,131.074,131.084,131.09400000000002,131.104,131.114,131.12400000000002,131.13400000000001,131.144,131.15400000000002,131.16400000000002,131.174,131.18400000000003,131.19400000000002,131.204,131.21400000000003,131.22400000000002,131.234,131.24400000000003,131.25400000000002,131.264,131.274,131.28400000000002,131.294,131.304,131.31400000000002,131.324,131.334,131.34400000000002,131.354,131.364,131.37400000000002,131.38400000000001,131.394,131.40400000000002,131.41400000000002,131.424,131.43400000000003,131.44400000000002,131.454,131.46400000000003,131.47400000000002,131.484,131.49400000000003,131.50400000000002,131.514,131.524,131.53400000000002,131.544,131.554,131.56400000000002,131.574,131.584,131.59400000000002,131.604,131.614,131.62400000000002,131.62400000000002,132.314,132.32399999999998,132.334,132.344,132.35399999999998,132.364,132.374,132.384,132.394,132.404,132.414,132.424,132.434,132.444,132.45399999999998,132.464,132.474,132.48399999999998,132.494,132.504,132.51399999999998,132.524,132.534,132.54399999999998,132.554,132.564,132.57399999999998,132.584,132.594,132.60399999999998,132.614,132.624,132.634,132.644,132.654,132.664,132.674,132.684,132.694,132.70399999999998,132.714,132.724,132.73399999999998,132.744,132.754,132.76399999999998,132.774,132.784,132.79399999999998,132.804,132.814,132.82399999999998,132.834,132.844,132.85399999999998,132.864,132.874,132.884,132.894,132.904,132.914,132.924,132.934,132.944,132.95399999999998,132.964,132.974,132.98399999999998,132.994,133.004,133.01399999999998,133.024,133.034,133.04399999999998,133.054,133.064,133.07399999999998,133.084,133.094,133.10399999999998,133.114,133.124,133.134,133.144,133.154,133.164,133.174,133.184,133.194,133.20399999999998,133.214,133.224,133.23399999999998,133.244,133.254,133.26399999999998,133.274,133.284,133.29399999999998,133.304,133.304,133.994,134.004,134.014,134.024,134.034,134.044,134.054,134.064,134.074,134.084,134.094,134.104,134.114,134.124,134.134,134.144,134.154,134.164,134.174,134.184,134.194,134.204,134.214,134.224,134.234,134.244,134.254,134.264,134.274,134.284,134.294,134.304,134.314,134.324,134.334,134.344,134.354,134.364,134.374,134.384,134.394,134.404,134.414,134.424,134.434,134.444,134.454,134.464,134.474,134.484,134.494,134.504,134.514,134.524,134.534,134.544,134.554,134.564,134.574,134.584,134.594,134.604,134.614,134.624,134.634,134.644,134.654,134.664,134.674,134.684,134.694,134.704,134.714,134.724,134.734,134.744,134.754,134.764,134.774,134.784,134.794,134.804,134.814,134.824,134.834,134.844,134.854,134.864,134.874,134.884,134.894,134.904,134.914,134.924,134.934,134.944,134.954,134.964,134.974,134.984,134.984,135.674,135.684,135.69400000000002,135.704,135.714,135.72400000000002,135.734,135.744,135.75400000000002,135.764,135.774,135.78400000000002,135.794,135.804,135.814,135.824,135.834,135.844,135.854,135.864,135.874,135.88400000000001,135.894,135.904,135.91400000000002,135.924,135.934,135.94400000000002,135.954,135.964,135.97400000000002,135.984,135.994,136.00400000000002,136.014,136.024,136.03400000000002,136.044,136.054,136.064,136.074,136.084,136.094,136.104,136.114,136.124,136.13400000000001,136.144,136.154,136.16400000000002,136.174,136.184,136.19400000000002,136.204,136.214,136.22400000000002,136.234,136.244,136.25400000000002,136.264,136.274,136.28400000000002,136.294,136.304,136.314,136.324,136.334,136.344,136.354,136.364,136.374,136.38400000000001,136.394,136.404,136.41400000000002,136.424,136.434,136.44400000000002,136.454,136.464,136.47400000000002,136.484,136.494,136.50400000000002,136.514,136.524,136.53400000000002,136.544,136.554,136.564,136.574,136.584,136.594,136.604,136.614,136.624,136.63400000000001,136.644,136.654,136.66400000000002,136.66400000000002,137.354,137.364,137.37400000000002,137.38400000000001,137.394,137.40400000000002,137.41400000000002,137.424,137.43400000000003,137.44400000000002,137.454,137.46400000000003,137.47400000000002,137.484,137.494,137.50400000000002,137.514,137.524,137.53400000000002,137.544,137.554,137.56400000000002,137.574,137.584,137.59400000000002,137.604,137.614,137.62400000000002,137.63400000000001,137.644,137.65400000000002,137.66400000000002,137.674,137.68400000000003,137.69400000000002,137.704,137.71400000000003,137.72400000000002,137.734,137.744,137.75400000000002,137.764,137.774,137.78400000000002,137.794,137.804,137.81400000000002,137.824,137.834,137.84400000000002,137.854,137.864,137.87400000000002,137.88400000000001,137.894,137.90400000000002,137.91400000000002,137.924,137.93400000000003,137.94400000000002,137.954,137.96400000000003,137.97400000000002,137.984,137.994,138.00400000000002,138.014,138.024,138.03400000000002,138.044,138.054,138.06400000000002,138.074,138.084,138.09400000000002,138.104,138.114,138.12400000000002,138.13400000000001,138.144,138.15400000000002,138.16400000000002,138.174,138.18400000000003,138.19400000000002,138.204,138.21400000000003,138.22400000000002,138.234,138.244,138.25400000000002,138.264,138.274,138.28400000000002,138.294,138.304,138.31400000000002,138.324,138.334,138.34400000000002,138.34400000000002,139.034,139.04399999999998,139.054,139.064,139.07399999999998,139.084,139.094,139.10399999999998,139.114,139.124,139.134,139.144,139.154,139.164,139.17399999999998,139.184,139.194,139.20399999999998,139.214,139.224,139.23399999999998,139.244,139.254,139.26399999999998,139.274,139.284,139.29399999999998,139.304,139.314,139.32399999999998,139.334,139.344,139.35399999999998,139.364,139.374,139.384,139.394,139.404,139.414,139.42399999999998,139.434,139.444,139.45399999999998,139.464,139.474,139.48399999999998,139.494,139.504,139.51399999999998,139.524,139.534,139.54399999999998,139.554,139.564,139.57399999999998,139.584,139.594,139.60399999999998,139.614,139.624,139.634,139.644,139.654,139.664,139.67399999999998,139.684,139.694,139.70399999999998,139.714,139.724,139.73399999999998,139.744,139.754,139.76399999999998,139.774,139.784,139.79399999999998,139.804,139.814,139.82399999999998,139.834,139.844,139.85399999999998,139.864,139.874,139.884,139.894,139.904,139.914,139.92399999999998,139.934,139.944,139.95399999999998,139.964,139.974,139.98399999999998,139.994,140.004,140.01399999999998,140.024,140.024,140.714,140.724,140.734,140.744,140.754,140.764,140.774,140.784,140.794,140.804,140.814,140.824,140.834,140.844,140.85399999999998,140.864,140.874,140.884,140.894,140.904,140.914,140.924,140.934,140.944,140.954,140.964,140.974,140.984,140.994,141.004,141.014,141.024,141.034,141.044,141.054,141.064,141.074,141.084,141.094,141.10399999999998,141.114,141.124,141.134,141.144,141.154,141.164,141.174,141.184,141.194,141.204,141.214,141.224,141.234,141.244,141.254,141.264,141.274,141.284,141.294,141.304,141.314,141.324,141.334,141.344,141.35399999999998,141.364,141.374,141.384,141.394,141.404,141.414,141.424,141.434,141.444,141.454,141.464,141.474,141.484,141.494,141.504,141.514,141.524,141.534,141.544,141.554,141.564,141.574,141.584,141.594,141.60399999999998,141.614,141.624,141.634,141.644,141.654,141.664,141.674,141.684,141.694,141.704,141.704,142.394,142.404,142.41400000000002,142.424,142.434,142.44400000000002,142.454,142.464,142.47400000000002,142.484,142.494,142.50400000000002,142.514,142.524,142.534,142.544,142.554,142.564,142.574,142.584,142.594,142.604,142.614,142.624,142.63400000000001,142.644,142.654,142.66400000000002,142.674,142.684,142.69400000000002,142.704,142.714,142.72400000000002,142.734,142.744,142.75400000000002,142.764,142.774,142.784,142.794,142.804,142.814,142.824,142.834,142.844,142.854,142.864,142.874,142.88400000000001,142.894,142.904,142.91400000000002,142.924,142.934,142.94400000000002,142.954,142.964,142.97400000000002,142.984,142.994,143.00400000000002,143.014,143.024,143.034,143.044,143.054,143.064,143.074,143.084,143.094,143.104,143.114,143.124,143.13400000000001,143.144,143.154,143.16400000000002,143.174,143.184,143.19400000000002,143.204,143.214,143.22400000000002,143.234,143.244,143.25400000000002,143.264,143.274,143.284,143.294,143.304,143.314,143.324,143.334,143.344,143.354,143.364,143.374,143.38400000000001,143.38400000000001,144.074,144.084,144.09400000000002,144.104,144.114,144.12400000000002,144.13400000000001,144.144,144.15400000000002,144.16400000000002,144.174,144.18400000000003,144.19400000000002,144.204,144.214,144.22400000000002,144.234,144.244,144.25400000000002,144.264,144.274,144.28400000000002,144.294,144.304,144.31400000000002,144.324,144.334,144.34400000000002,144.354,144.364,144.37400000000002,144.38400000000001,144.394,144.40400000000002,144.41400000000002,144.424,144.43400000000003,144.44400000000002,144.454,144.464,144.47400000000002,144.484,144.494,144.50400000000002,144.514,144.524,144.53400000000002,144.544,144.554,144.56400000000002,144.574,144.584,144.59400000000002,144.604,144.614,144.62400000000002,144.63400000000001,144.644,144.65400000000002,144.66400000000002,144.674,144.68400000000003,144.69400000000002,144.704,144.714,144.72400000000002,144.734,144.744,144.75400000000002,144.764,144.774,144.78400000000002,144.794,144.804,144.81400000000002,144.824,144.834,144.84400000000002,144.854,144.864,144.87400000000002,144.88400000000001,144.894,144.90400000000002,144.91400000000002,144.924,144.93400000000003,144.94400000000002,144.954,144.964,144.97400000000002,144.984,144.994,145.00400000000002,145.014,145.024,145.03400000000002,145.044,145.054,145.06400000000002,145.06400000000002,145.754,145.76399999999998,145.774,145.784,145.79399999999998,145.804,145.814,145.82399999999998,145.834,145.844,145.85399999999998,145.864,145.874,145.884,145.89399999999998,145.904,145.914,145.92399999999998,145.934,145.944,145.95399999999998,145.964,145.974,145.98399999999998,145.994,146.004,146.01399999999998,146.024,146.034,146.04399999999998,146.054,146.064,146.07399999999998,146.084,146.094,146.10399999999998,146.114,146.124,146.134,146.14399999999998,146.154,146.164,146.17399999999998,146.184,146.194,146.20399999999998,146.214,146.224,146.23399999999998,146.244,146.254,146.26399999999998,146.274,146.284,146.29399999999998,146.304,146.314,146.32399999999998,146.334,146.344,146.35399999999998,146.364,146.374,146.384,146.39399999999998,146.404,146.414,146.42399999999998,146.434,146.444,146.45399999999998,146.464,146.474,146.48399999999998,146.494,146.504,146.51399999999998,146.524,146.534,146.54399999999998,146.554,146.564,146.57399999999998,146.584,146.594,146.60399999999998,146.614,146.624,146.634,146.64399999999998,146.654,146.664,146.67399999999998,146.684,146.694,146.70399999999998,146.714,146.724,146.73399999999998,146.744,146.744,147.434,147.444,147.454,147.464,147.474,147.484,147.494,147.504,147.514,147.524,147.534,147.544,147.554,147.564,147.57399999999998,147.584,147.594,147.60399999999998,147.614,147.624,147.634,147.644,147.654,147.664,147.674,147.684,147.694,147.704,147.714,147.724,147.734,147.744,147.754,147.764,147.774,147.784,147.794,147.804,147.814,147.82399999999998,147.834,147.844,147.85399999999998,147.864,147.874,147.884,147.894,147.904,147.914,147.924,147.934,147.944,147.954,147.964,147.974,147.984,147.994,148.004,148.014,148.024,148.034,148.044,148.054,148.064,148.07399999999998,148.084,148.094,148.10399999999998,148.114,148.124,148.134,148.144,148.154,148.164,148.174,148.184,148.194,148.204,148.214,148.224,148.234,148.244,148.254,148.264,148.274,148.284,148.294,148.304,148.314,148.32399999999998,148.334,148.344,148.35399999999998,148.364,148.374,148.384,148.394,148.404,148.414,148.424,148.424,149.114,149.124,149.13400000000001,149.144,149.154,149.16400000000002,149.174,149.184,149.19400000000002,149.204,149.214,149.22400000000002,149.234,149.244,149.254,149.264,149.274,149.284,149.294,149.304,149.314,149.324,149.334,149.344,149.354,149.364,149.374,149.38400000000001,149.394,149.404,149.41400000000002,149.424,149.434,149.44400000000002,149.454,149.464,149.47400000000002,149.484,149.494,149.504,149.514,149.524,149.534,149.544,149.554,149.564,149.574,149.584,149.594,149.604,149.614,149.624,149.63400000000001,149.644,149.654,149.66400000000002,149.674,149.684,149.69400000000002,149.704,149.714,149.72400000000002,149.734,149.744,149.754,149.764,149.774,149.784,149.794,149.804,149.814,149.824,149.834,149.844,149.854,149.864,149.874,149.88400000000001,149.894,149.904,149.91400000000002,149.924,149.934,149.94400000000002,149.954,149.964,149.97400000000002,149.984,149.994,150.004,150.014,150.024,150.034,150.044,150.054,150.064,150.074,150.084,150.094,150.104,150.104,150.794,150.804,150.81400000000002,150.824,150.834,150.84400000000002,150.854,150.864,150.87400000000002,150.88400000000001,150.894,150.90400000000002,150.91400000000002,150.924,150.934,150.94400000000002,150.954,150.964,150.97400000000002,150.984,150.994,151.00400000000002,151.014,151.024,151.03400000000002,151.044,151.054,151.06400000000002,151.074,151.084,151.09400000000002,151.104,151.114,151.12400000000002,151.13400000000001,151.144,151.15400000000002,151.16400000000002,151.174,151.184,151.19400000000002,151.204,151.214,151.22400000000002,151.234,151.244,151.25400000000002,151.264,151.274,151.28400000000002,151.294,151.304,151.31400000000002,151.324,151.334,151.34400000000002,151.354,151.364,151.37400000000002,151.38400000000001,151.394,151.40400000000002,151.41400000000002,151.424,151.434,151.44400000000002,151.454,151.464,151.47400000000002,151.484,151.494,151.50400000000002,151.514,151.524,151.53400000000002,151.544,151.554,151.56400000000002,151.574,151.584,151.59400000000002,151.604,151.614,151.62400000000002,151.63400000000001,151.644,151.65400000000002,151.66400000000002,151.674,151.684,151.69400000000002,151.704,151.714,151.72400000000002,151.734,151.744,151.75400000000002,151.764,151.774,151.78400000000002,151.78400000000002,152.474,152.48399999999998,152.494,152.504,152.51399999999998,152.524,152.534,152.54399999999998,152.554,152.564,152.57399999999998,152.584,152.594,152.60399999999998,152.61399999999998,152.624,152.634,152.64399999999998,152.654,152.664,152.67399999999998,152.684,152.694,152.70399999999998,152.714,152.724,152.73399999999998,152.744,152.754,152.76399999999998,152.774,152.784,152.79399999999998,152.804,152.814,152.82399999999998,152.834,152.844,152.85399999999998,152.86399999999998,152.874,152.884,152.89399999999998,152.904,152.914,152.92399999999998,152.934,152.944,152.95399999999998,152.964,152.974,152.98399999999998,152.994,153.004,153.01399999999998,153.024,153.034,153.04399999999998,153.054,153.064,153.07399999999998,153.084,153.094,153.10399999999998,153.11399999999998,153.124,153.134,153.14399999999998,153.154,153.164,153.17399999999998,153.184,153.194,153.20399999999998,153.214,153.224,153.23399999999998,153.244,153.254,153.26399999999998,153.274,153.284,153.29399999999998,153.304,153.314,153.32399999999998,153.334,153.344,153.35399999999998,153.36399999999998,153.374,153.384,153.39399999999998,153.404,153.414,153.42399999999998,153.434,153.444,153.45399999999998,153.464,153.464,154.154,154.164,154.174,154.184,154.194,154.204,154.214,154.224,154.234,154.244,154.254,154.264,154.274,154.284,154.29399999999998,154.304,154.314,154.32399999999998,154.334,154.344,154.35399999999998,154.364,154.374,154.384,154.394,154.404,154.414,154.424,154.434,154.444,154.454,154.464,154.474,154.484,154.494,154.504,154.514,154.524,154.534,154.54399999999998,154.554,154.564,154.57399999999998,154.584,154.594,154.60399999999998,154.614,154.624,154.634,154.644,154.654,154.664,154.674,154.684,154.694,154.704,154.714,154.724,154.734,154.744,154.754,154.764,154.774,154.784,154.79399999999998,154.804,154.814,154.82399999999998,154.834,154.844,154.85399999999998,154.864,154.874,154.884,154.894,154.904,154.914,154.924,154.934,154.944,154.954,154.964,154.974,154.984,154.994,155.004,155.014,155.024,155.034,155.04399999999998,155.054,155.064,155.07399999999998,155.084,155.094,155.10399999999998,155.114,155.124,155.134,155.144,155.144,155.834,155.844,155.854,155.864,155.874,155.88400000000001,155.894,155.904,155.91400000000002,155.924,155.934,155.94400000000002,155.954,155.964,155.974,155.984,155.994,156.004,156.014,156.024,156.034,156.044,156.054,156.064,156.074,156.084,156.094,156.104,156.114,156.124,156.13400000000001,156.144,156.154,156.16400000000002,156.174,156.184,156.19400000000002,156.204,156.214,156.224,156.234,156.244,156.254,156.264,156.274,156.284,156.294,156.304,156.314,156.324,156.334,156.344,156.354,156.364,156.374,156.38400000000001,156.394,156.404,156.41400000000002,156.424,156.434,156.44400000000002,156.454,156.464,156.474,156.484,156.494,156.504,156.514,156.524,156.534,156.544,156.554,156.564,156.574,156.584,156.594,156.604,156.614,156.624,156.63400000000001,156.644,156.654,156.66400000000002,156.674,156.684,156.69400000000002,156.704,156.714,156.724,156.734,156.744,156.754,156.764,156.774,156.784,156.794,156.804,156.814,156.824,156.824,157.514,157.524,157.53400000000002,157.544,157.554,157.56400000000002,157.574,157.584,157.59400000000002,157.604,157.614,157.62400000000002,157.63400000000001,157.644,157.654,157.66400000000002,157.674,157.684,157.69400000000002,157.704,157.714,157.72400000000002,157.734,157.744,157.75400000000002,157.764,157.774,157.78400000000002,157.794,157.804,157.81400000000002,157.824,157.834,157.84400000000002,157.854,157.864,157.87400000000002,157.88400000000001,157.894,157.904,157.91400000000002,157.924,157.934,157.94400000000002,157.954,157.964,157.97400000000002,157.984,157.994,158.00400000000002,158.014,158.024,158.03400000000002,158.044,158.054,158.06400000000002,158.074,158.084,158.09400000000002,158.104,158.114,158.12400000000002,158.13400000000001,158.144,158.154,158.16400000000002,158.174,158.184,158.19400000000002,158.204,158.214,158.22400000000002,158.234,158.244,158.25400000000002,158.264,158.274,158.28400000000002,158.294,158.304,158.31400000000002,158.324,158.334,158.34400000000002,158.354,158.364,158.37400000000002,158.38400000000001,158.394,158.404,158.41400000000002,158.424,158.434,158.44400000000002,158.454,158.464,158.47400000000002,158.484,158.494,158.50400000000002,158.50400000000002,159.19400000000002,159.204,159.21400000000003,159.22400000000002,159.234,159.24400000000003,159.25400000000002,159.264,159.27400000000003,159.28400000000002,159.294,159.30400000000003,159.31400000000002,159.324,159.334,159.34400000000002,159.354,159.364,159.37400000000002,159.38400000000001,159.394,159.40400000000002,159.41400000000002,159.424,159.43400000000003,159.44400000000002,159.454,159.46400000000003,159.47400000000002,159.484,159.49400000000003,159.50400000000002,159.514,159.52400000000003,159.53400000000002,159.544,159.55400000000003,159.56400000000002,159.574,159.584,159.59400000000002,159.604,159.614,159.62400000000002,159.63400000000001,159.644,159.65400000000002,159.66400000000002,159.674,159.68400000000003,159.69400000000002,159.704,159.71400000000003,159.72400000000002,159.734,159.74400000000003,159.75400000000002,159.764,159.77400000000003,159.78400000000002,159.794,159.80400000000003,159.81400000000002,159.824,159.834,159.84400000000002,159.854,159.864,159.87400000000002,159.88400000000001,159.894,159.90400000000002,159.91400000000002,159.924,159.93400000000003,159.94400000000002,159.954,159.96400000000003,159.97400000000002,159.984,159.99400000000003,160.00400000000002,160.014,160.02400000000003,160.03400000000002,160.044,160.05400000000003,160.06400000000002,160.074,160.084,160.09400000000002,160.104,160.114,160.12400000000002,160.13400000000001,160.144,160.15400000000002,160.16400000000002,160.174,160.18400000000003,160.18400000000003,160.874,160.884,160.894,160.904,160.914,160.924,160.934,160.944,160.954,160.964,160.974,160.984,160.994,161.004,161.01399999999998,161.024,161.034,161.04399999999998,161.054,161.064,161.07399999999998,161.084,161.094,161.10399999999998,161.114,161.124,161.134,161.144,161.154,161.164,161.174,161.184,161.194,161.204,161.214,161.224,161.234,161.244,161.254,161.26399999999998,161.274,161.284,161.29399999999998,161.304,161.314,161.32399999999998,161.334,161.344,161.35399999999998,161.364,161.374,161.384,161.394,161.404,161.414,161.424,161.434,161.444,161.454,161.464,161.474,161.484,161.494,161.504,161.51399999999998,161.524,161.534,161.54399999999998,161.554,161.564,161.57399999999998,161.584,161.594,161.60399999999998,161.614,161.624,161.634,161.644,161.654,161.664,161.674,161.684,161.694,161.704,161.714,161.724,161.734,161.744,161.754,161.76399999999998,161.774,161.784,161.79399999999998,161.804,161.814,161.82399999999998,161.834,161.844,161.85399999999998,161.864,161.864,162.554,162.564,162.574,162.584,162.594,162.604,162.614,162.624,162.63400000000001,162.644,162.654,162.66400000000002,162.674,162.684,162.694,162.704,162.714,162.724,162.734,162.744,162.754,162.764,162.774,162.784,162.794,162.804,162.814,162.824,162.834,162.844,162.854,162.864,162.874,162.88400000000001,162.894,162.904,162.91400000000002,162.924,162.934,162.944,162.954,162.964,162.974,162.984,162.994,163.004,163.014,163.024,163.034,163.044,163.054,163.064,163.074,163.084,163.094,163.104,163.114,163.124,163.13400000000001,163.144,163.154,163.16400000000002,163.174,163.184,163.194,163.204,163.214,163.224,163.234,163.244,163.254,163.264,163.274,163.284,163.294,163.304,163.314,163.324,163.334,163.344,163.354,163.364,163.374,163.38400000000001,163.394,163.404,163.41400000000002,163.424,163.434,163.444,163.454,163.464,163.474,163.484,163.494,163.504,163.514,163.524,163.534,163.544,163.544,164.234,164.244,164.25400000000002,164.264,164.274,164.28400000000002,164.294,164.304,164.31400000000002,164.324,164.334,164.34400000000002,164.354,164.364,164.374,164.38400000000001,164.394,164.404,164.41400000000002,164.424,164.434,164.44400000000002,164.454,164.464,164.47400000000002,164.484,164.494,164.50400000000002,164.514,164.524,164.53400000000002,164.544,164.554,164.56400000000002,164.574,164.584,164.59400000000002,164.604,164.614,164.624,164.63400000000001,164.644,164.654,164.66400000000002,164.674,164.684,164.69400000000002,164.704,164.714,164.72400000000002,164.734,164.744,164.75400000000002,164.764,164.774,164.78400000000002,164.794,164.804,164.81400000000002,164.824,164.834,164.84400000000002,164.854,164.864,164.874,164.88400000000001,164.894,164.904,164.91400000000002,164.924,164.934,164.94400000000002,164.954,164.964,164.97400000000002,164.984,164.994,165.00400000000002,165.014,165.024,165.03400000000002,165.044,165.054,165.06400000000002,165.074,165.084,165.09400000000002,165.104,165.114,165.124,165.13400000000001,165.144,165.154,165.16400000000002,165.174,165.184,165.19400000000002,165.204,165.214,165.22400000000002,165.22400000000002,165.91400000000002,165.924,165.93400000000003,165.94400000000002,165.954,165.96400000000003,165.97400000000002,165.984,165.99400000000003,166.00400000000002,166.014,166.02400000000003,166.03400000000002,166.044,166.054,166.06400000000002,166.074,166.084,166.09400000000002,166.104,166.114,166.12400000000002,166.13400000000001,166.144,166.15400000000002,166.16400000000002,166.174,166.18400000000003,166.19400000000002,166.204,166.21400000000003,166.22400000000002,166.234,166.24400000000003,166.25400000000002,166.264,166.27400000000003,166.28400000000002,166.294,166.304,166.31400000000002,166.324,166.334,166.34400000000002,166.354,166.364,166.37400000000002,166.38400000000001,166.394,166.40400000000002,166.41400000000002,166.424,166.43400000000003,166.44400000000002,166.454,166.46400000000003,166.47400000000002,166.484,166.49400000000003,166.50400000000002,166.514,166.52400000000003,166.53400000000002,166.544,166.554,166.56400000000002,166.574,166.584,166.59400000000002,166.604,166.614,166.62400000000002,166.63400000000001,166.644,166.65400000000002,166.66400000000002,166.674,166.68400000000003,166.69400000000002,166.704,166.71400000000003,166.72400000000002,166.734,166.74400000000003,166.75400000000002,166.764,166.77400000000003,166.78400000000002,166.794,166.804,166.81400000000002,166.824,166.834,166.84400000000002,166.854,166.864,166.87400000000002,166.88400000000001,166.894,166.90400000000002,166.90400000000002,167.594,167.60399999999998,167.614,167.624,167.634,167.644,167.654,167.664,167.674,167.684,167.694,167.704,167.714,167.724,167.73399999999998,167.744,167.754,167.76399999999998,167.774,167.784,167.79399999999998,167.804,167.814,167.82399999999998,167.834,167.844,167.85399999999998,167.864,167.874,167.884,167.894,167.904,167.914,167.924,167.934,167.944,167.954,167.964,167.974,167.98399999999998,167.994,168.004,168.01399999999998,168.024,168.034,168.04399999999998,168.054,168.064,168.07399999999998,168.084,168.094,168.10399999999998,168.114,168.124,168.134,168.144,168.154,168.164,168.174,168.184,168.194,168.204,168.214,168.224,168.23399999999998,168.244,168.254,168.26399999999998,168.274,168.284,168.29399999999998,168.304,168.314,168.32399999999998,168.334,168.344,168.35399999999998,168.364,168.374,168.384,168.394,168.404,168.414,168.424,168.434,168.444,168.454,168.464,168.474,168.48399999999998,168.494,168.504,168.51399999999998,168.524,168.534,168.54399999999998,168.554,168.564,168.57399999999998,168.584,168.584,169.274,169.284,169.294,169.304,169.314,169.324,169.334,169.344,169.354,169.364,169.374,169.38400000000001,169.394,169.404,169.414,169.424,169.434,169.444,169.454,169.464,169.474,169.484,169.494,169.504,169.514,169.524,169.534,169.544,169.554,169.564,169.574,169.584,169.594,169.604,169.614,169.624,169.63400000000001,169.644,169.654,169.664,169.674,169.684,169.694,169.704,169.714,169.724,169.734,169.744,169.754,169.764,169.774,169.784,169.794,169.804,169.814,169.824,169.834,169.844,169.854,169.864,169.874,169.88400000000001,169.894,169.904,169.914,169.924,169.934,169.944,169.954,169.964,169.974,169.984,169.994,170.004,170.014,170.024,170.034,170.044,170.054,170.064,170.074,170.084,170.094,170.104,170.114,170.124,170.13400000000001,170.144,170.154,170.164,170.174,170.184,170.194,170.204,170.214,170.224,170.234,170.244,170.254,170.264,170.264,170.954,170.964,170.97400000000002,170.984,170.994,171.00400000000002,171.014,171.024,171.03400000000002,171.044,171.054,171.06400000000002,171.074,171.084,171.094,171.104,171.114,171.124,171.13400000000001,171.144,171.154,171.16400000000002,171.174,171.184,171.19400000000002,171.204,171.214,171.22400000000002,171.234,171.244,171.25400000000002,171.264,171.274,171.28400000000002,171.294,171.304,171.31400000000002,171.324,171.334,171.344,171.354,171.364,171.374,171.38400000000001,171.394,171.404,171.41400000000002,171.424,171.434,171.44400000000002,171.454,171.464,171.47400000000002,171.484,171.494,171.50400000000002,171.514,171.524,171.53400000000002,171.544,171.554,171.56400000000002,171.574,171.584,171.594,171.604,171.614,171.624,171.63400000000001,171.644,171.654,171.66400000000002,171.674,171.684,171.69400000000002,171.704,171.714,171.72400000000002,171.734,171.744,171.75400000000002,171.764,171.774,171.78400000000002,171.794,171.804,171.81400000000002,171.824,171.834,171.844,171.854,171.864,171.874,171.88400000000001,171.894,171.904,171.91400000000002,171.924,171.934,171.94400000000002,171.94400000000002,172.63400000000001,172.644,172.65400000000002,172.66400000000002,172.674,172.68400000000003,172.69400000000002,172.704,172.71400000000003,172.72400000000002,172.734,172.74400000000003,172.75400000000002,172.764,172.774,172.78400000000002,172.794,172.804,172.81400000000002,172.824,172.834,172.84400000000002,172.854,172.864,172.87400000000002,172.88400000000001,172.894,172.90400000000002,172.91400000000002,172.924,172.93400000000003,172.94400000000002,172.954,172.96400000000003,172.97400000000002,172.984,172.99400000000003,173.00400000000002,173.014,173.024,173.03400000000002,173.044,173.054,173.06400000000002,173.074,173.084,173.09400000000002,173.104,173.114,173.12400000000002,173.13400000000001,173.144,173.15400000000002,173.16400000000002,173.174,173.18400000000003,173.19400000000002,173.204,173.21400000000003,173.22400000000002,173.234,173.24400000000003,173.25400000000002,173.264,173.274,173.28400000000002,173.294,173.304,173.31400000000002,173.324,173.334,173.34400000000002,173.354,173.364,173.37400000000002,173.38400000000001,173.394,173.40400000000002,173.41400000000002,173.424,173.43400000000003,173.44400000000002,173.454,173.46400000000003,173.47400000000002,173.484,173.49400000000003,173.50400000000002,173.514,173.524,173.53400000000002,173.544,173.554,173.56400000000002,173.574,173.584,173.59400000000002,173.604,173.614,173.62400000000002,173.62400000000002,174.314,174.32399999999998,174.334,174.344,174.35399999999998,174.364,174.374,174.384,174.394,174.404,174.414,174.424,174.434,174.444,174.45399999999998,174.464,174.474,174.48399999999998,174.494,174.504,174.51399999999998,174.524,174.534,174.54399999999998,174.554,174.564,174.57399999999998,174.584,174.594,174.60399999999998,174.614,174.624,174.634,174.644,174.654,174.664,174.674,174.684,174.694,174.70399999999998,174.714,174.724,174.73399999999998,174.744,174.754,174.76399999999998,174.774,174.784,174.79399999999998,174.804,174.814,174.82399999999998,174.834,174.844,174.85399999999998,174.864,174.874,174.884,174.894,174.904,174.914,174.924,174.934,174.944,174.95399999999998,174.964,174.974,174.98399999999998,174.994,175.004,175.01399999999998,175.024,175.034,175.04399999999998,175.054,175.064,175.07399999999998,175.084,175.094,175.10399999999998,175.114,175.124,175.134,175.144,175.154,175.164,175.174,175.184,175.194,175.20399999999998,175.214,175.224,175.23399999999998,175.244,175.254,175.26399999999998,175.274,175.284,175.29399999999998,175.304,175.304,175.994,176.004,176.014,176.024,176.034,176.044,176.054,176.064,176.074,176.084,176.094,176.104,176.114,176.124,176.134,176.144,176.154,176.164,176.174,176.184,176.194,176.204,176.214,176.224,176.234,176.244,176.254,176.264,176.274,176.284,176.294,176.304,176.314,176.324,176.334,176.344,176.354,176.364,176.374,176.384,176.394,176.404,176.414,176.424,176.434,176.444,176.454,176.464,176.474,176.484,176.494,176.504,176.514,176.524,176.534,176.544,176.554,176.564,176.574,176.584,176.594,176.604,176.614,176.624,176.634,176.644,176.654,176.664,176.674,176.684,176.694,176.704,176.714,176.724,176.734,176.744,176.754,176.764,176.774,176.784,176.794,176.804,176.814,176.824,176.834,176.844,176.854,176.864,176.874,176.884,176.894,176.904,176.914,176.924,176.934,176.944,176.954,176.964,176.974,176.984,176.984,177.674,177.684,177.69400000000002,177.704,177.714,177.72400000000002,177.734,177.744,177.75400000000002,177.764,177.774,177.78400000000002,177.794,177.804,177.814,177.824,177.834,177.844,177.854,177.864,177.874,177.88400000000001,177.894,177.904,177.91400000000002,177.924,177.934,177.94400000000002,177.954,177.964,177.97400000000002,177.984,177.994,178.00400000000002,178.014,178.024,178.03400000000002,178.044,178.054,178.064,178.074,178.084,178.094,178.104,178.114,178.124,178.13400000000001,178.144,178.154,178.16400000000002,178.174,178.184,178.19400000000002,178.204,178.214,178.22400000000002,178.234,178.244,178.25400000000002,178.264,178.274,178.28400000000002,178.294,178.304,178.314,178.324,178.334,178.344,178.354,178.364,178.374,178.38400000000001,178.394,178.404,178.41400000000002,178.424,178.434,178.44400000000002,178.454,178.464,178.47400000000002,178.484,178.494,178.50400000000002,178.514,178.524,178.53400000000002,178.544,178.554,178.564,178.574,178.584,178.594,178.604,178.614,178.624,178.63400000000001,178.644,178.654,178.66400000000002,178.66400000000002,179.354,179.364,179.37400000000002,179.38400000000001,179.394,179.40400000000002,179.41400000000002,179.424,179.43400000000003,179.44400000000002,179.454,179.46400000000003,179.47400000000002,179.484,179.494,179.50400000000002,179.514,179.524,179.53400000000002,179.544,179.554,179.56400000000002,179.574,179.584,179.59400000000002,179.604,179.614,179.62400000000002,179.63400000000001,179.644,179.65400000000002,179.66400000000002,179.674,179.68400000000003,179.69400000000002,179.704,179.71400000000003,179.72400000000002,179.734,179.744,179.75400000000002,179.764,179.774,179.78400000000002,179.794,179.804,179.81400000000002,179.824,179.834,179.84400000000002,179.854,179.864,179.87400000000002,179.88400000000001,179.894,179.90400000000002,179.91400000000002,179.924,179.93400000000003,179.94400000000002,179.954,179.96400000000003,179.97400000000002,179.984,179.994,180.00400000000002,180.014,180.024,180.03400000000002,180.044,180.054,180.06400000000002,180.074,180.084,180.09400000000002,180.104,180.114,180.12400000000002,180.13400000000001,180.144,180.15400000000002,180.16400000000002,180.174,180.18400000000003,180.19400000000002,180.204,180.21400000000003,180.22400000000002,180.234,180.244,180.25400000000002,180.264,180.274,180.28400000000002,180.294,180.304,180.31400000000002,180.324,180.334,180.34400000000002,180.34400000000002,181.034,181.04399999999998,181.054,181.064,181.07399999999998,181.084,181.094,181.10399999999998,181.114,181.124,181.134,181.144,181.154,181.164,181.17399999999998,181.184,181.194,181.20399999999998,181.214,181.224,181.23399999999998,181.244,181.254,181.26399999999998,181.274,181.284,181.29399999999998,181.304,181.314,181.32399999999998,181.334,181.344,181.35399999999998,181.364,181.374,181.384,181.394,181.404,181.414,181.42399999999998,181.434,181.444,181.45399999999998,181.464,181.474,181.48399999999998,181.494,181.504,181.51399999999998,181.524,181.534,181.54399999999998,181.554,181.564,181.57399999999998,181.584,181.594,181.60399999999998,181.614,181.624,181.634,181.644,181.654,181.664,181.67399999999998,181.684,181.694,181.70399999999998,181.714,181.724,181.73399999999998,181.744,181.754,181.76399999999998,181.774,181.784,181.79399999999998,181.804,181.814,181.82399999999998,181.834,181.844,181.85399999999998,181.864,181.874,181.884,181.894,181.904,181.914,181.92399999999998,181.934,181.944,181.95399999999998,181.964,181.974,181.98399999999998,181.994,182.004,182.01399999999998,182.024,182.024,182.714,182.724,182.734,182.744,182.754,182.764,182.774,182.784,182.794,182.804,182.814,182.824,182.834,182.844,182.85399999999998,182.864,182.874,182.884,182.894,182.904,182.914,182.924,182.934,182.944,182.954,182.964,182.974,182.984,182.994,183.004,183.014,183.024,183.034,183.044,183.054,183.064,183.074,183.084,183.094,183.10399999999998,183.114,183.124,183.134,183.144,183.154,183.164,183.174,183.184,183.194,183.204,183.214,183.224,183.234,183.244,183.254,183.264,183.274,183.284,183.294,183.304,183.314,183.324,183.334,183.344,183.35399999999998,183.364,183.374,183.384,183.394,183.404,183.414,183.424,183.434,183.444,183.454,183.464,183.474,183.484,183.494,183.504,183.514,183.524,183.534,183.544,183.554,183.564,183.574,183.584,183.594,183.60399999999998,183.614,183.624,183.634,183.644,183.654,183.664,183.674,183.684,183.694,183.704,183.704]}], {"xaxis":{"rangeslider":{"visible":true},"gridcolor":"white","rangeselector":{"buttons":[{"step":10,"stepmode":"backward","label":"1m","count":1},{"step":"all"}]},"title":{"text":""},"range":[98.4,103.4],"zerolinecolor":"white","ticksuffix":" ms"},"modebar":{"color":"gray","activecolor":"rgb(229,236,246)","yanchor":"bottom","xanchor":"right","y":1,"bgcolor":"rgba(0,0,0,0)","orientation":"h","x":0},"hovermode":"closest","paper_bgcolor":"rgba(0,0,0,0)","template":{"layout":{"coloraxis":{"colorbar":{"ticks":"","outlinewidth":0}},"xaxis":{"gridcolor":"white","zerolinewidth":2,"title":{"standoff":15},"ticks":"","zerolinecolor":"white","automargin":true,"linecolor":"white"},"hovermode":"closest","paper_bgcolor":"white","geo":{"showlakes":true,"showland":true,"landcolor":"#E5ECF6","bgcolor":"white","subunitcolor":"white","lakecolor":"white"},"colorscale":{"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]},"yaxis":{"gridcolor":"white","zerolinewidth":2,"title":{"standoff":15},"ticks":"","zerolinecolor":"white","automargin":true,"linecolor":"white"},"shapedefaults":{"line":{"color":"#2a3f5f"}},"hoverlabel":{"align":"left"},"mapbox":{"style":"light"},"polar":{"angularaxis":{"gridcolor":"white","ticks":"","linecolor":"white"},"bgcolor":"#E5ECF6","radialaxis":{"gridcolor":"white","ticks":"","linecolor":"white"}},"autotypenumbers":"strict","font":{"color":"#2a3f5f"},"ternary":{"baxis":{"gridcolor":"white","ticks":"","linecolor":"white"},"bgcolor":"#E5ECF6","caxis":{"gridcolor":"white","ticks":"","linecolor":"white"},"aaxis":{"gridcolor":"white","ticks":"","linecolor":"white"}},"annotationdefaults":{"arrowhead":0,"arrowwidth":1,"arrowcolor":"#2a3f5f"},"plot_bgcolor":"#E5ECF6","title":{"x":0.05},"scene":{"xaxis":{"gridcolor":"white","gridwidth":2,"backgroundcolor":"#E5ECF6","ticks":"","showbackground":true,"zerolinecolor":"white","linecolor":"white"},"zaxis":{"gridcolor":"white","gridwidth":2,"backgroundcolor":"#E5ECF6","ticks":"","showbackground":true,"zerolinecolor":"white","linecolor":"white"},"yaxis":{"gridcolor":"white","gridwidth":2,"backgroundcolor":"#E5ECF6","ticks":"","showbackground":true,"zerolinecolor":"white","linecolor":"white"}},"colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"]},"data":{"barpolar":[{"type":"barpolar","marker":{"line":{"color":"#E5ECF6","width":0.5}}}],"carpet":[{"aaxis":{"gridcolor":"white","endlinecolor":"#2a3f5f","minorgridcolor":"white","startlinecolor":"#2a3f5f","linecolor":"white"},"type":"carpet","baxis":{"gridcolor":"white","endlinecolor":"#2a3f5f","minorgridcolor":"white","startlinecolor":"#2a3f5f","linecolor":"white"}}],"scatterpolar":[{"type":"scatterpolar","marker":{"colorbar":{"ticks":"","outlinewidth":0}}}],"parcoords":[{"line":{"colorbar":{"ticks":"","outlinewidth":0}},"type":"parcoords"}],"scatter":[{"type":"scatter","marker":{"colorbar":{"ticks":"","outlinewidth":0}}}],"histogram2dcontour":[{"colorbar":{"ticks":"","outlinewidth":0},"type":"histogram2dcontour","colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"contour":[{"colorbar":{"ticks":"","outlinewidth":0},"type":"contour","colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"scattercarpet":[{"type":"scattercarpet","marker":{"colorbar":{"ticks":"","outlinewidth":0}}}],"mesh3d":[{"colorbar":{"ticks":"","outlinewidth":0},"type":"mesh3d"}],"surface":[{"colorbar":{"ticks":"","outlinewidth":0},"type":"surface","colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"scattermapbox":[{"type":"scattermapbox","marker":{"colorbar":{"ticks":"","outlinewidth":0}}}],"scattergeo":[{"type":"scattergeo","marker":{"colorbar":{"ticks":"","outlinewidth":0}}}],"histogram":[{"type":"histogram","marker":{"colorbar":{"ticks":"","outlinewidth":0}}}],"pie":[{"type":"pie","automargin":true}],"choropleth":[{"colorbar":{"ticks":"","outlinewidth":0},"type":"choropleth"}],"heatmapgl":[{"colorbar":{"ticks":"","outlinewidth":0},"type":"heatmapgl","colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"bar":[{"type":"bar","error_y":{"color":"#2a3f5f"},"error_x":{"color":"#2a3f5f"},"marker":{"line":{"color":"#E5ECF6","width":0.5}}}],"heatmap":[{"colorbar":{"ticks":"","outlinewidth":0},"type":"heatmap","colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"contourcarpet":[{"colorbar":{"ticks":"","outlinewidth":0},"type":"contourcarpet"}],"table":[{"type":"table","header":{"line":{"color":"white"},"fill":{"color":"#C8D4E3"}},"cells":{"line":{"color":"white"},"fill":{"color":"#EBF0F8"}}}],"scatter3d":[{"line":{"colorbar":{"ticks":"","outlinewidth":0}},"type":"scatter3d","marker":{"colorbar":{"ticks":"","outlinewidth":0}}}],"scattergl":[{"type":"scattergl","marker":{"colorbar":{"ticks":"","outlinewidth":0}}}],"histogram2d":[{"colorbar":{"ticks":"","outlinewidth":0},"type":"histogram2d","colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"scatterternary":[{"type":"scatterternary","marker":{"colorbar":{"ticks":"","outlinewidth":0}}}],"scatterpolargl":[{"type":"scatterpolargl","marker":{"colorbar":{"ticks":"","outlinewidth":0}}}]}},"height":300,"legend":{"yanchor":"bottom","xanchor":"left","y":1,"orientation":"h","x":0},"yaxis":{"gridcolor":"white","zerolinecolor":"white","fixedrange":false},"shapes":[],"font":{"color":"gray"},"annotations":[],"plot_bgcolor":"rgb(229,236,246)","margin":{"l":0,"b":0,"r":0,"t":0}}, {"modeBarButtonsToRemove":["zoom","autoScale","resetScale2d","pan","tableRotation","resetCameraLastSave","zoomIn","zoomOut"],"displaylogo":false,"toImageButtonOptions":{"format":"svg"},"editable":false,"responsive":true,"staticPlot":false,"scrollZoom":true}, diff --git a/dev/assets/examples/3-phantom.html b/dev/assets/examples/3-phantom.html index 12e6fb82c..4fb64e5b7 100644 --- a/dev/assets/examples/3-phantom.html +++ b/dev/assets/examples/3-phantom.html @@ -9,7 +9,7 @@
@@ -17,9 +17,9 @@ window.PLOTLYENV = window.PLOTLYENV || {} - if (document.getElementById('f125d191-e50f-4cd8-9678-039378502956')) { + if (document.getElementById('85c334df-d126-49a3-8da9-97d292cd6016')) { Plotly.newPlot( - 'f125d191-e50f-4cd8-9678-039378502956', + '85c334df-d126-49a3-8da9-97d292cd6016', [{"x":[-8.6,-8.6,-8.6,-8.6,-8.6,-8.6,-8.6,-8.6,-8.6,-8.6,-8.6,-8.6,-8.6,-8.6,-8.6,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.6,8.6,8.6,8.6,8.6,8.6,8.6,8.6,8.6,8.6,8.6,8.6,8.6,8.6,8.6,-8.6,-8.6,-8.6,-8.6,-8.6,-8.6,-8.6,-8.6,-8.6,-8.6,-8.6,-8.6,-8.6,-8.6,-8.6,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.6,8.6,8.6,8.6,8.6,8.6,8.6,8.6,8.6,8.6,8.6,8.6,8.6,8.6,8.6,-8.6,-8.6,-8.6,-8.6,-8.6,-8.6,-8.6,-8.6,-8.6,-8.6,-8.6,-8.6,-8.6,-8.6,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.6,8.6,8.6,8.6,8.6,8.6,8.6,8.6,8.6,8.6,8.6,8.6,8.6,8.6,8.6,-8.6,-8.6,-8.6,-8.6,-8.6,-8.6,-8.6,-8.6,-8.6,-8.6,-8.6,-8.6,-8.6,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.6,8.6,8.6,8.6,8.6,8.6,8.6,8.6,8.6,8.6,8.6,8.6,8.6,8.6,8.6,-8.6,-8.6,-8.6,-8.6,-8.6,-8.6,-8.6,-8.6,-8.6,-8.6,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.6,8.6,8.6,8.6,8.6,8.6,8.6,8.6,8.6,8.6,8.6,8.6,8.6,8.6,-8.6,-8.6,-8.6,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.6,8.6,8.6,8.6,8.6,8.6,8.6,8.6,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.6,8.6,8.6,8.6,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.4,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.200000000000001,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-8.0,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.8,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.6,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.3999999999999995,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.199999999999999,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-7.000000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.800000000000001,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.6000000000000005,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.4,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.2,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-6.0,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.800000000000001,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.6000000000000005,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.4,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.2,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-5.0,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.8,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.6,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.3999999999999995,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.2,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-4.0,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.8,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.5999999999999996,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.4000000000000004,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.2,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-3.0,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.8000000000000003,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.6,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.4,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.1999999999999997,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-2.0,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.7999999999999998,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.6,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.4000000000000001,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.2,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.4000000000000001,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,1.7999999999999998,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.1999999999999997,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.6,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,2.8000000000000003,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.2,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.4000000000000004,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.5999999999999996,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,3.8,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.2,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.3999999999999995,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.6,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,4.8,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.2,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.4,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,5.800000000000001,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.6000000000000005,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,6.800000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.000000000000001,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.199999999999999,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.3999999999999995,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.6,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.200000000000001,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4],"mode":"markers","y":[-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,1.0,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.6,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.6,7.8,8.0,8.200000000000001,8.4,8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.000000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.6,8.799999999999999,9.0,9.2,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.6,8.799999999999999,9.0,9.2,9.4,-9.0,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.799999999999999,9.0,9.2,9.4,9.6,-9.2,-9.0,-8.799999999999999,-8.6,-8.4,-8.0,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,9.0,9.2,9.4,9.6,9.8,-9.2,-9.0,-8.799999999999999,-8.6,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,9.2,9.4,9.6,9.8,-9.4,-9.2,-9.0,-8.799999999999999,-8.200000000000001,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,9.2,9.4,9.6,9.8,10.0,-9.4,-9.2,-9.0,-8.799999999999999,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.4,9.6,9.8,10.0,-9.6,-9.4,-9.2,-9.0,-8.799999999999999,-8.6,-8.4,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.6,9.8,10.0,10.2,-9.6,-9.4,-9.2,-9.0,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.6,9.8,10.0,10.2,-9.6,-9.4,-9.2,-9.0,-8.799999999999999,-8.6,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.6,9.8,10.0,10.2,-9.6,-9.4,-9.2,-8.799999999999999,-8.6,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.8,10.0,10.2,10.4,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.8,10.0,10.2,10.4,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.4,9.8,10.0,10.2,10.4,-9.8,-9.6,-9.4,-9.0,-8.799999999999999,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.4,10.0,10.2,10.4,10.6,-9.8,-9.6,-9.4,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,10.0,10.2,10.4,10.6,-9.8,-9.6,-9.4,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.6,10.0,10.2,10.4,10.6,-9.8,-9.6,-9.4,-9.0,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.6,10.0,10.2,10.4,10.6,-10.0,-9.8,-9.6,-9.4,-9.0,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.6,10.0,10.2,10.4,10.6,-10.0,-9.8,-9.6,-9.4,-9.0,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.6,10.2,10.4,10.6,-10.0,-9.8,-9.6,-9.4,-9.0,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.4,9.6,9.8,10.2,10.4,10.6,-10.0,-9.8,-9.6,-9.4,-9.0,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.4,9.6,9.8,10.2,10.4,10.6,-10.0,-9.8,-9.6,-9.4,-9.0,-8.799999999999999,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.4,9.6,10.2,10.4,10.6,-10.0,-9.8,-9.6,-9.4,-9.0,-8.799999999999999,-8.6,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,6.0,6.2,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.2,9.4,9.6,10.2,10.4,10.6,-10.0,-9.8,-9.6,-9.4,-9.0,-8.799999999999999,-8.4,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.4,9.6,10.2,10.4,10.6,-10.0,-9.8,-9.6,-9.4,-9.0,-8.799999999999999,-8.4,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.4,9.6,10.2,10.4,10.6,-10.0,-9.8,-9.6,-9.4,-9.0,-8.799999999999999,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.4,9.6,10.2,10.4,10.6,-10.0,-9.8,-9.6,-9.4,-9.0,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.6,10.2,10.4,10.6,-9.8,-9.6,-9.4,-9.0,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.6,10.0,10.2,10.4,10.6,-9.8,-9.6,-9.4,-9.0,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.6,10.0,10.2,10.4,10.6,-9.8,-9.6,-9.4,-9.0,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.4,9.6,10.0,10.2,10.4,10.6,-9.8,-9.6,-9.4,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.4,9.6,10.0,10.2,10.4,10.6,-9.8,-9.6,-9.4,-8.799999999999999,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.4,10.0,10.2,10.4,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.4,9.8,10.0,10.2,10.4,-9.6,-9.4,-9.2,-8.799999999999999,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.4,9.8,10.0,10.2,10.4,-9.6,-9.4,-9.2,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.8,10.0,10.2,10.4,-9.6,-9.4,-9.2,-9.0,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.8,10.0,10.2,10.4,-9.6,-9.4,-9.2,-9.0,-8.6,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.6,9.8,10.0,10.2,-9.4,-9.2,-9.0,-8.799999999999999,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.6,9.8,10.0,10.2,-9.4,-9.2,-9.0,-8.799999999999999,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,9.0,9.6,9.8,10.0,10.2,-9.2,-9.0,-8.799999999999999,-8.6,-8.200000000000001,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.4,9.6,9.8,10.0,-9.2,-9.0,-8.799999999999999,-8.6,-8.0,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,9.2,9.4,9.6,9.8,-9.0,-8.799999999999999,-8.6,-8.4,-8.0,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,9.2,9.4,9.6,9.8,-9.0,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,9.0,9.2,9.4,9.6,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-8.0,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.799999999999999,9.0,9.2,9.4,9.6,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.6,8.799999999999999,9.0,9.2,9.4,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,8.0,8.4,8.6,8.799999999999999,9.0,9.2,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,8.200000000000001,8.4,8.6,8.799999999999999,9.0,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,8.0,8.200000000000001,8.4,8.6,8.799999999999999,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.3999999999999995,7.8,8.0,8.200000000000001,8.4,8.6,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.6,7.8,8.0,8.200000000000001,8.4,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,6.2,6.4,6.6000000000000005,6.800000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.3999999999999995,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,1.0,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.0,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.4,6.6000000000000005,6.800000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.199999999999999,7.8,8.0,8.200000000000001,8.4,8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.200000000000001,8.4,8.6,8.799999999999999,9.0,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.6,8.799999999999999,9.0,9.2,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-8.0,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.799999999999999,9.0,9.2,9.4,-9.0,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.799999999999999,9.0,9.2,9.4,9.6,-9.2,-9.0,-8.799999999999999,-8.6,-8.4,-8.0,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,9.0,9.2,9.4,9.6,9.8,-9.2,-9.0,-8.799999999999999,-8.6,-8.0,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,9.2,9.4,9.6,9.8,-9.4,-9.2,-9.0,-8.799999999999999,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,9.2,9.4,9.6,9.8,10.0,-9.4,-9.2,-9.0,-8.799999999999999,-8.4,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,9.4,9.6,9.8,10.0,-9.4,-9.2,-9.0,-8.4,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.4,9.6,9.8,10.0,10.2,-9.6,-9.4,-9.2,-9.0,-8.6,-8.4,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.2,9.6,9.8,10.0,10.2,-9.6,-9.4,-9.0,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.6,9.8,10.0,10.2,-9.6,-9.4,-9.2,-8.799999999999999,-8.6,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.8,10.0,10.2,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-8.6,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.8,10.0,10.2,10.4,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.4,9.8,10.0,10.2,10.4,-9.8,-9.6,-9.4,-8.799999999999999,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.4,10.0,10.2,10.4,-9.8,-9.6,-9.4,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,10.0,10.2,10.4,-9.8,-9.6,-9.4,-9.0,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.6,10.0,10.2,10.4,10.6,-9.8,-9.6,-9.4,-9.0,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.6,10.0,10.2,10.4,10.6,-10.0,-9.8,-9.6,-9.4,-9.0,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.4,9.6,10.0,10.2,10.4,10.6,-10.0,-9.8,-9.6,-9.4,-9.0,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.6,10.0,10.2,10.4,10.6,-10.0,-9.8,-9.6,-9.4,-9.0,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.6,9.8,10.2,10.4,10.6,-10.0,-9.8,-9.6,-9.4,-9.0,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.4,9.6,10.2,10.4,10.6,-10.0,-9.8,-9.6,-9.4,-9.0,-8.799999999999999,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.4,9.6,10.2,10.4,10.6,-10.0,-9.8,-9.6,-9.4,-9.0,-8.799999999999999,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,5.2,5.4,5.6000000000000005,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.2,9.4,9.6,10.2,10.4,10.6,-10.0,-9.8,-9.6,-9.4,-9.0,-8.799999999999999,-8.4,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.4,9.6,10.2,10.4,10.6,-10.0,-9.8,-9.6,-9.4,-9.0,-8.799999999999999,-8.4,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.4,9.6,10.2,10.4,10.6,-10.0,-9.8,-9.6,-9.4,-9.0,-8.799999999999999,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.6,10.2,10.4,10.6,-10.0,-9.8,-9.6,-9.4,-9.0,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.6,10.0,10.2,10.4,10.6,-9.8,-9.6,-9.4,-9.0,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.6,10.0,10.2,10.4,10.6,-9.8,-9.6,-9.4,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.6,10.0,10.2,10.4,10.6,-9.8,-9.6,-9.4,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.6,10.0,10.2,10.4,-9.8,-9.6,-9.4,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.4,10.0,10.2,10.4,-9.8,-9.6,-9.4,-9.2,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.4,9.8,10.0,10.2,10.4,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.4,9.8,10.0,10.2,10.4,-9.6,-9.4,-9.2,-8.799999999999999,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.4,9.8,10.0,10.2,10.4,-9.6,-9.4,-9.2,-9.0,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.8,10.0,10.2,10.4,-9.6,-9.4,-9.2,-9.0,-8.6,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.8,10.0,10.2,-9.4,-9.2,-9.0,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.6,9.8,10.0,10.2,-9.4,-9.2,-9.0,-8.799999999999999,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.6,9.8,10.0,10.2,-9.4,-9.2,-9.0,-8.799999999999999,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,9.0,9.4,9.6,9.8,10.0,-9.2,-9.0,-8.799999999999999,-8.6,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.4,9.6,9.8,10.0,-9.2,-9.0,-8.799999999999999,-8.6,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.799999999999999,9.2,9.4,9.6,9.8,-9.0,-8.799999999999999,-8.6,-8.4,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,9.0,9.2,9.4,9.6,9.8,-9.0,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,9.0,9.2,9.4,9.6,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-8.0,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.799999999999999,9.0,9.2,9.4,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.6,8.799999999999999,9.0,9.2,9.4,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,8.4,8.6,8.799999999999999,9.0,9.2,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,8.200000000000001,8.4,8.6,8.799999999999999,9.0,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,8.0,8.200000000000001,8.4,8.6,8.799999999999999,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.8,8.0,8.200000000000001,8.4,8.6,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.6000000000000005,6.800000000000001,7.000000000000001,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,6.0,6.2,6.4,6.6000000000000005,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.3999999999999995,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,5.0,5.2,5.4,5.6000000000000005,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.4,5.6000000000000005,5.800000000000001,6.0,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.4,6.6000000000000005,6.800000000000001,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.0,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.800000000000001,7.000000000000001,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.199999999999999,7.8,8.0,8.200000000000001,8.4,8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,8.0,8.200000000000001,8.4,8.6,8.799999999999999,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,8.200000000000001,8.4,8.6,8.799999999999999,9.0,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-8.0,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.6,8.799999999999999,9.0,9.2,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.6,8.799999999999999,9.0,9.2,9.4,-9.0,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.799999999999999,9.0,9.2,9.4,9.6,-9.2,-9.0,-8.799999999999999,-8.6,-8.4,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,9.0,9.2,9.4,9.6,9.8,-9.2,-9.0,-8.799999999999999,-8.6,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,9.2,9.4,9.6,9.8,-9.2,-9.0,-8.799999999999999,-8.6,-8.200000000000001,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,9.2,9.4,9.6,9.8,10.0,-9.4,-9.2,-9.0,-8.799999999999999,-8.4,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,9.4,9.6,9.8,10.0,-9.4,-9.2,-9.0,-8.4,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,9.0,9.4,9.6,9.8,10.0,-9.6,-9.4,-9.2,-9.0,-8.6,-8.4,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.6,9.8,10.0,10.2,-9.6,-9.4,-9.2,-9.0,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.6,9.8,10.0,10.2,-9.6,-9.4,-9.2,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.8,10.0,10.2,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-8.6,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.8,10.0,10.2,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.4,9.8,10.0,10.2,10.4,-9.8,-9.6,-9.4,-8.799999999999999,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.4,9.8,10.0,10.2,10.4,-9.8,-9.6,-9.4,-8.799999999999999,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,10.0,10.2,10.4,-9.8,-9.6,-9.4,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.6,10.0,10.2,10.4,-9.8,-9.6,-9.4,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.6,10.0,10.2,10.4,10.6,-9.8,-9.6,-9.4,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.6,10.0,10.2,10.4,10.6,-10.0,-9.8,-9.6,-9.4,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.4,9.6,10.0,10.2,10.4,10.6,-10.0,-9.8,-9.6,-9.4,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.4,9.6,10.2,10.4,10.6,-9.8,-9.6,-9.4,-9.0,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.4,9.6,10.2,10.4,10.6,-10.0,-9.8,-9.6,-9.4,-9.0,-8.799999999999999,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.4,9.6,10.2,10.4,10.6,-9.8,-9.6,-9.4,-9.0,-8.799999999999999,-8.6,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.2,9.4,9.6,10.2,10.4,10.6,-9.8,-9.6,-9.4,-9.0,-8.799999999999999,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.4,9.6,10.2,10.4,10.6,-10.0,-9.8,-9.6,-9.4,-9.0,-8.799999999999999,-8.4,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.4,9.6,10.2,10.4,10.6,-9.8,-9.6,-9.4,-9.0,-8.799999999999999,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.4,9.6,10.2,10.4,10.6,-9.8,-9.6,-9.4,-9.0,-8.799999999999999,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.6,10.0,10.2,10.4,10.6,-9.8,-9.6,-9.4,-9.0,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.6,10.0,10.2,10.4,10.6,-9.8,-9.6,-9.4,-9.0,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.6,10.0,10.2,10.4,-9.8,-9.6,-9.4,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.6,10.0,10.2,10.4,-9.8,-9.6,-9.4,-8.799999999999999,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.4,10.0,10.2,10.4,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.4,9.8,10.0,10.2,10.4,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.4,9.8,10.0,10.2,10.4,-9.6,-9.4,-9.2,-8.799999999999999,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.8,10.0,10.2,10.4,-9.6,-9.4,-9.2,-9.0,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.8,10.0,10.2,-9.6,-9.4,-9.2,-9.0,-8.6,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.6,9.8,10.0,10.2,-9.4,-9.2,-9.0,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.6,9.8,10.0,10.2,-9.4,-9.2,-9.0,-8.799999999999999,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.6,9.8,10.0,10.2,-9.4,-9.2,-9.0,-8.799999999999999,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.4,9.6,9.8,10.0,-9.2,-9.0,-8.799999999999999,-8.6,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.4,9.6,9.8,10.0,-9.2,-9.0,-8.799999999999999,-8.6,-8.4,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,9.2,9.4,9.6,9.8,-9.0,-8.799999999999999,-8.6,-8.4,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,9.2,9.4,9.6,9.8,-9.0,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,9.0,9.2,9.4,9.6,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.799999999999999,9.0,9.2,9.4,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.6,8.799999999999999,9.0,9.2,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,8.4,8.6,8.799999999999999,9.0,9.2,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,8.200000000000001,8.4,8.6,8.799999999999999,9.0,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,8.0,8.200000000000001,8.4,8.6,8.799999999999999,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,7.000000000000001,7.6,7.8,8.0,8.200000000000001,8.4,8.6,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.4,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.4,6.6000000000000005,6.800000000000001,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.2,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,6.0,6.2,6.4,6.6000000000000005,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.3999999999999995,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.2,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.4,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.2,6.4,6.6000000000000005,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.800000000000001,7.000000000000001,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.6,7.8,8.0,8.200000000000001,8.4,8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,8.0,8.200000000000001,8.4,8.6,8.799999999999999,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,8.200000000000001,8.4,8.6,8.799999999999999,9.0,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.3999999999999995,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.4,8.6,8.799999999999999,9.0,9.2,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.6,8.799999999999999,9.0,9.2,9.4,-9.0,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.799999999999999,9.0,9.2,9.4,9.6,-9.0,-8.799999999999999,-8.6,-8.4,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,9.0,9.2,9.4,9.6,-9.2,-9.0,-8.799999999999999,-8.6,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,9.2,9.4,9.6,9.8,-9.2,-9.0,-8.799999999999999,-8.200000000000001,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,9.2,9.4,9.6,9.8,10.0,-9.4,-9.2,-9.0,-8.799999999999999,-8.4,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,9.4,9.6,9.8,10.0,-9.4,-9.2,-9.0,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,9.0,9.4,9.6,9.8,10.0,-9.4,-9.2,-9.0,-8.6,-8.4,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.6,9.8,10.0,10.2,-9.6,-9.4,-9.2,-9.0,-8.6,-8.4,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.6,9.8,10.0,10.2,-9.6,-9.4,-9.2,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.2,9.6,9.8,10.0,10.2,-9.6,-9.4,-9.2,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.8,10.0,10.2,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.8,10.0,10.2,10.4,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.4,9.8,10.0,10.2,10.4,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.4,10.0,10.2,10.4,-9.8,-9.6,-9.4,-8.799999999999999,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.4,10.0,10.2,10.4,-9.8,-9.6,-9.4,-8.799999999999999,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.4,9.6,10.0,10.2,10.4,-9.8,-9.6,-9.4,-8.799999999999999,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.6,10.0,10.2,10.4,10.6,-9.8,-9.6,-9.4,-8.799999999999999,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.4,9.6,10.0,10.2,10.4,10.6,-10.0,-9.8,-9.6,-9.4,-8.799999999999999,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.4,9.6,10.0,10.2,10.4,10.6,-9.8,-9.6,-9.4,-8.799999999999999,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.4,9.6,10.0,10.2,10.4,10.6,-9.8,-9.6,-9.4,-8.799999999999999,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.4,9.6,10.2,10.4,10.6,-9.8,-9.6,-9.4,-9.0,-8.799999999999999,-8.6,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.2,9.4,9.6,10.2,10.4,10.6,-9.8,-9.6,-9.4,-9.0,-8.799999999999999,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.4,9.6,10.2,10.4,10.6,-9.8,-9.6,-9.4,-9.0,-8.799999999999999,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.4,9.6,10.2,10.4,10.6,-9.8,-9.6,-9.4,-9.0,-8.799999999999999,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.4,9.6,10.0,10.2,10.4,10.6,-9.8,-9.6,-9.4,-9.0,-8.799999999999999,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.6,10.0,10.2,10.4,10.6,-9.8,-9.6,-9.4,-9.0,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.6,10.0,10.2,10.4,-9.8,-9.6,-9.4,-9.0,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.6,10.0,10.2,10.4,-9.8,-9.6,-9.4,-9.2,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.4,10.0,10.2,10.4,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.4,9.8,10.0,10.2,10.4,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.4,9.8,10.0,10.2,10.4,-9.6,-9.4,-9.2,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.4,9.8,10.0,10.2,10.4,-9.6,-9.4,-9.2,-8.799999999999999,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.8,10.0,10.2,-9.6,-9.4,-9.2,-9.0,-8.6,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.8,10.0,10.2,-9.6,-9.4,-9.2,-9.0,-8.6,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.2,9.6,9.8,10.0,10.2,-9.4,-9.2,-9.0,-8.799999999999999,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.6,9.8,10.0,10.2,-9.4,-9.2,-9.0,-8.799999999999999,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,9.0,9.6,9.8,10.0,-9.4,-9.2,-9.0,-8.799999999999999,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.6,2.8000000000000003,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.4,9.6,9.8,10.0,-9.2,-9.0,-8.799999999999999,-8.6,-8.200000000000001,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.799999999999999,9.0,9.4,9.6,9.8,10.0,-9.2,-9.0,-8.799999999999999,-8.6,-8.4,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.2,9.4,9.6,9.8,-9.0,-8.799999999999999,-8.6,-8.4,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,9.0,9.2,9.4,9.6,9.8,-9.0,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-7.8,-7.6,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.799999999999999,9.0,9.2,9.4,9.6,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.3999999999999995,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.799999999999999,9.0,9.2,9.4,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.6,8.799999999999999,9.0,9.2,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,8.4,8.6,8.799999999999999,9.0,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,8.200000000000001,8.4,8.6,8.799999999999999,9.0,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.199999999999999,7.8,8.0,8.200000000000001,8.4,8.6,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.6000000000000005,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.800000000000001,7.000000000000001,7.6,7.8,8.0,8.200000000000001,8.4,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.4,6.6000000000000005,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,6.0,6.2,6.4,6.6000000000000005,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.2,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.6,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.8,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-5.6000000000000005,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.0,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.2,6.4,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,7.000000000000001,7.6,7.8,8.0,8.200000000000001,8.4,8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.199999999999999,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.6,8.799999999999999,9.0,9.2,9.4,-9.0,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-8.0,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.4,0.6,0.8,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.799999999999999,9.0,9.2,9.4,-9.0,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-8.0,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,9.0,9.2,9.4,9.6,-9.2,-9.0,-8.799999999999999,-8.6,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,9.2,9.4,9.6,9.8,-9.2,-9.0,-8.799999999999999,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,9.2,9.4,9.6,9.8,-9.4,-9.2,-9.0,-8.799999999999999,-8.4,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,9.4,9.6,9.8,10.0,-9.4,-9.2,-9.0,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.4,9.6,9.8,10.0,-9.4,-9.2,-9.0,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.4,9.6,9.8,10.0,-9.6,-9.4,-9.2,-9.0,-8.6,-8.4,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.6,9.8,10.0,10.2,-9.6,-9.4,-9.2,-9.0,-8.799999999999999,-8.6,-8.4,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.2,9.6,9.8,10.0,10.2,-9.6,-9.4,-9.2,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.6,9.8,10.0,10.2,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-8.6,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.8,10.0,10.2,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.8,10.0,10.2,10.4,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.8,10.0,10.2,10.4,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,10.0,10.2,10.4,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.6,10.0,10.2,10.4,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.4,9.6,10.0,10.2,10.4,10.6,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.4,9.6,10.0,10.2,10.4,10.6,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.4,9.6,10.0,10.2,10.4,10.6,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-8.6,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.4,9.6,10.0,10.2,10.4,10.6,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-8.6,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.4,8.6,8.799999999999999,9.0,9.2,9.4,9.6,10.0,10.2,10.4,10.6,-9.8,-9.6,-9.4,-9.2,-9.0,-8.799999999999999,-8.6,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.6,8.799999999999999,9.2,9.4,9.6,10.2,10.4,10.6,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-8.200000000000001,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.4,9.6,10.0,10.2,10.4,10.6,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.4,9.6,10.0,10.2,10.4,10.6,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.4,9.6,10.0,10.2,10.4,10.6,-9.8,-9.6,-9.4,-9.2,-9.0,-8.799999999999999,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.6,10.0,10.2,10.4,10.6,-9.8,-9.6,-9.4,-9.2,-9.0,-8.799999999999999,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.4,9.6,10.0,10.2,10.4,10.6,-9.8,-9.6,-9.4,-9.2,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,10.0,10.2,10.4,-9.8,-9.6,-9.4,-9.2,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.4,10.0,10.2,10.4,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.4,9.8,10.0,10.2,10.4,-9.6,-9.4,-9.2,-8.799999999999999,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.4,9.8,10.0,10.2,10.4,-9.6,-9.4,-9.2,-8.799999999999999,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.4,9.8,10.0,10.2,10.4,-9.6,-9.4,-9.2,-9.0,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.8,10.0,10.2,-9.6,-9.4,-9.2,-9.0,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.2,9.6,9.8,10.0,10.2,-9.4,-9.2,-9.0,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.6,9.8,10.0,10.2,-9.4,-9.2,-9.0,-8.799999999999999,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.6,9.8,10.0,10.2,-9.4,-9.2,-9.0,-8.799999999999999,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,9.0,9.4,9.6,9.8,10.0,-9.2,-9.0,-8.799999999999999,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.4,9.6,9.8,10.0,-9.2,-9.0,-8.799999999999999,-8.6,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.799999999999999,9.4,9.6,9.8,10.0,-9.2,-9.0,-8.799999999999999,-8.6,-8.4,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.6,8.799999999999999,9.2,9.4,9.6,9.8,-9.0,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,9.0,9.2,9.4,9.6,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.799999999999999,9.0,9.2,9.4,9.6,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.799999999999999,9.0,9.2,9.4,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,8.6,8.799999999999999,9.0,9.2,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,8.200000000000001,8.4,8.6,8.799999999999999,9.0,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,8.0,8.200000000000001,8.4,8.6,8.799999999999999,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.8,8.0,8.200000000000001,8.4,8.6,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.6000000000000005,6.800000000000001,7.6,7.8,8.0,8.200000000000001,8.4,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,6.2,6.4,6.6000000000000005,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.800000000000001,6.0,6.2,6.4,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.2,4.3999999999999995,4.6,4.8,5.0,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.2,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-0.6,-0.4,-0.2,0.6,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,-1.4000000000000001,-1.2,-0.8,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-1.4000000000000001,-1.2,-1.0,-0.8,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.6000000000000005,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.199999999999999,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,-8.4,-8.200000000000001,-8.0,-7.8,-7.199999999999999,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,8.4,8.6,8.799999999999999,9.0,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,8.6,8.799999999999999,9.0,9.2,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-8.0,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.799999999999999,9.0,9.2,9.4,-9.0,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-7.8,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,9.0,9.2,9.4,9.6,-9.2,-9.0,-8.799999999999999,-8.6,-8.4,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,9.0,9.2,9.4,9.6,9.8,-9.2,-9.0,-8.799999999999999,-8.6,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.6,9.2,9.4,9.6,9.8,-9.4,-9.2,-9.0,-8.799999999999999,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,9.2,9.4,9.6,9.8,-9.4,-9.2,-9.0,-8.799999999999999,-8.4,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.799999999999999,9.0,9.4,9.6,9.8,10.0,-9.4,-9.2,-9.0,-8.4,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.4,9.6,9.8,10.0,-9.6,-9.4,-9.2,-9.0,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,9.0,9.6,9.8,10.0,-9.6,-9.4,-9.2,-9.0,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.2,9.6,9.8,10.0,10.2,-9.6,-9.4,-9.2,-9.0,-8.799999999999999,-8.6,-8.4,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.2,9.6,9.8,10.0,10.2,-9.6,-9.4,-9.2,-9.0,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.8,10.0,10.2,-9.6,-9.4,-9.2,-8.799999999999999,-8.6,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.8,10.0,10.2,10.4,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-8.6,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.4,9.8,10.0,10.2,10.4,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.8,10.0,10.2,10.4,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.4,9.6,10.0,10.2,10.4,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.4,9.6,10.0,10.2,10.4,10.6,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.4,9.6,10.0,10.2,10.4,10.6,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-8.6,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.4,9.6,10.0,10.2,10.4,10.6,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-8.6,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.4,9.6,10.0,10.2,10.4,10.6,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-8.6,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.4,9.6,10.0,10.2,10.4,10.6,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.6,8.799999999999999,9.2,9.4,9.6,10.0,10.2,10.4,10.6,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.4,9.6,10.0,10.2,10.4,10.6,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-8.6,-8.200000000000001,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.4,9.6,10.0,10.2,10.4,10.6,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-8.6,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.4,9.6,10.0,10.2,10.4,10.6,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.4,9.6,10.0,10.2,10.4,10.6,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.4,9.6,10.0,10.2,10.4,10.6,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.4,10.0,10.2,10.4,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.4,9.8,10.0,10.2,10.4,-9.6,-9.4,-9.2,-8.799999999999999,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.4,9.8,10.0,10.2,10.4,-9.6,-9.4,-9.2,-8.799999999999999,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.4,9.8,10.0,10.2,10.4,-9.6,-9.4,-9.2,-8.799999999999999,-8.6,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.4,9.8,10.0,10.2,-9.6,-9.4,-9.2,-9.0,-8.799999999999999,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.2,9.6,9.8,10.0,10.2,-9.6,-9.4,-9.2,-9.0,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.6,9.8,10.0,10.2,-9.4,-9.2,-9.0,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.6,9.8,10.0,10.2,-9.4,-9.2,-9.0,-8.799999999999999,-8.4,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,9.0,9.6,9.8,10.0,-9.4,-9.2,-9.0,-8.799999999999999,-8.4,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.4,9.6,9.8,10.0,-9.2,-9.0,-8.799999999999999,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.799999999999999,9.4,9.6,9.8,10.0,-9.2,-9.0,-8.799999999999999,-8.6,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,9.2,9.4,9.6,9.8,-9.0,-8.799999999999999,-8.6,-8.4,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,9.2,9.4,9.6,9.8,-9.0,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-7.6,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.4,8.6,9.0,9.2,9.4,9.6,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-8.0,-7.6,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.4,8.799999999999999,9.0,9.2,9.4,9.6,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.200000000000001,8.6,8.799999999999999,9.0,9.2,9.4,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.199999999999999,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,8.4,8.6,8.799999999999999,9.0,9.2,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,8.200000000000001,8.4,8.6,8.799999999999999,9.0,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,8.0,8.200000000000001,8.4,8.6,8.799999999999999,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,7.000000000000001,7.199999999999999,7.6,7.8,8.0,8.200000000000001,8.4,8.6,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.4,6.6000000000000005,6.800000000000001,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,6.0,6.2,6.4,6.6000000000000005,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.800000000000001,6.0,6.2,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,2.0,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,0.2,0.4,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-1.6,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-1.2,-1.0,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.2,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-5.800000000000001,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.4,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.800000000000001,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-6.800000000000001,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,7.199999999999999,7.8,8.0,8.200000000000001,8.4,8.6,-8.4,-8.200000000000001,-8.0,-7.8,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.6,8.0,8.200000000000001,8.4,8.6,8.799999999999999,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,8.200000000000001,8.4,8.6,8.799999999999999,9.0,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-8.0,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,8.4,8.6,8.799999999999999,9.0,9.2,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,8.6,8.799999999999999,9.0,9.2,9.4,-9.0,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.799999999999999,9.0,9.2,9.4,9.6,-9.0,-8.799999999999999,-8.6,-8.4,-8.0,-7.8,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,9.0,9.2,9.4,9.6,-9.2,-9.0,-8.799999999999999,-8.6,-8.0,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.6,9.2,9.4,9.6,9.8,-9.2,-9.0,-8.799999999999999,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.6,8.799999999999999,9.2,9.4,9.6,9.8,-9.4,-9.2,-9.0,-8.799999999999999,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.4,9.6,9.8,10.0,-9.4,-9.2,-9.0,-8.799999999999999,-8.4,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.799999999999999,9.4,9.6,9.8,10.0,-9.4,-9.2,-9.0,-8.6,-8.4,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,9.4,9.6,9.8,10.0,-9.6,-9.4,-9.2,-9.0,-8.6,-8.4,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,9.6,9.8,10.0,-9.6,-9.4,-9.2,-9.0,-8.6,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.2,9.6,9.8,10.0,10.2,-9.6,-9.4,-9.2,-9.0,-8.799999999999999,-8.6,-8.4,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.6,9.8,10.0,10.2,-9.6,-9.4,-9.2,-9.0,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.8,10.0,10.2,10.4,-9.6,-9.4,-9.2,-9.0,-8.799999999999999,-8.6,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.4,9.8,10.0,10.2,10.4,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-8.6,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.4,9.8,10.0,10.2,10.4,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-8.6,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.4,9.8,10.0,10.2,10.4,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-8.6,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.4,10.0,10.2,10.4,10.6,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-8.6,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.4,9.6,10.0,10.2,10.4,10.6,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-8.6,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.4,9.6,10.0,10.2,10.4,10.6,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-8.6,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.4,9.6,10.0,10.2,10.4,10.6,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-8.6,-8.4,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.2,9.4,9.6,10.0,10.2,10.4,10.6,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-8.6,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.6,8.799999999999999,9.2,9.4,9.6,10.0,10.2,10.4,10.6,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.6,8.799999999999999,9.2,9.4,9.6,10.0,10.2,10.4,10.6,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-8.6,-8.200000000000001,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.4,9.6,10.0,10.2,10.4,10.6,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-8.6,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.4,9.6,10.0,10.2,10.4,10.6,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.4,10.0,10.2,10.4,10.6,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.4,10.0,10.2,10.4,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.4,10.0,10.2,10.4,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.4,9.8,10.0,10.2,10.4,-9.6,-9.4,-9.2,-8.799999999999999,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.4,9.8,10.0,10.2,10.4,-9.6,-9.4,-9.2,-8.799999999999999,-8.6,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.8,10.0,10.2,10.4,-9.6,-9.4,-9.2,-9.0,-8.6,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.2,9.6,9.8,10.0,10.2,-9.6,-9.4,-9.2,-9.0,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.2,9.6,9.8,10.0,10.2,-9.4,-9.2,-9.0,-8.6,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.6,9.8,10.0,10.2,-9.4,-9.2,-9.0,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,9.0,9.6,9.8,10.0,-9.4,-9.2,-9.0,-8.799999999999999,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,9.4,9.6,9.8,10.0,-9.2,-9.0,-8.799999999999999,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.799999999999999,9.4,9.6,9.8,10.0,-9.2,-9.0,-8.799999999999999,-8.6,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.4,9.6,9.8,-9.2,-9.0,-8.799999999999999,-8.6,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.6,9.2,9.4,9.6,9.8,-9.0,-8.799999999999999,-8.6,-8.4,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,9.2,9.4,9.6,9.8,-9.0,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.4,9.0,9.2,9.4,9.6,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-8.0,-7.6,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.799999999999999,9.0,9.2,9.4,9.6,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.3999999999999995,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,8.0,8.6,8.799999999999999,9.0,9.2,9.4,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.199999999999999,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.8,8.4,8.6,8.799999999999999,9.0,9.2,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.000000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.6,8.200000000000001,8.4,8.6,8.799999999999999,9.0,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.800000000000001,7.000000000000001,7.6,7.8,8.0,8.200000000000001,8.4,8.6,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.4,6.6000000000000005,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,6.0,6.2,6.4,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.0,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-4.6,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-0.8,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,-0.4,-0.2,0.0,0.2,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.0,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.2,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.2,6.4,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.6000000000000005,6.800000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.000000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,7.000000000000001,7.6,7.8,8.0,8.200000000000001,8.4,8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.199999999999999,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,8.0,8.200000000000001,8.4,8.6,8.799999999999999,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,8.200000000000001,8.4,8.6,8.799999999999999,9.0,-8.6,-8.4,-8.200000000000001,-8.0,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.8,8.4,8.6,8.799999999999999,9.0,9.2,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-8.0,-7.6,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,8.0,8.200000000000001,8.6,8.799999999999999,9.0,9.2,-9.0,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-8.0,-7.6,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.200000000000001,8.799999999999999,9.0,9.2,9.4,-9.0,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-8.0,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.799999999999999,9.0,9.2,9.4,9.6,-9.2,-9.0,-8.799999999999999,-8.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.4,8.6,9.0,9.2,9.4,9.6,-9.2,-9.0,-8.799999999999999,-8.6,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.6,9.2,9.4,9.6,9.8,-9.4,-9.2,-9.0,-8.799999999999999,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.6,8.799999999999999,9.2,9.4,9.6,9.8,-9.4,-9.2,-9.0,-8.799999999999999,-8.4,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,9.4,9.6,9.8,10.0,-9.4,-9.2,-9.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,9.4,9.6,9.8,10.0,-9.4,-9.2,-9.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,9.4,9.6,9.8,10.0,-9.6,-9.4,-9.2,-9.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.6,9.8,10.0,10.2,-9.6,-9.4,-9.2,-9.0,-8.6,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.6,9.8,10.0,10.2,-9.6,-9.4,-9.2,-9.0,-8.6,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.6,9.8,10.0,10.2,10.4,-9.6,-9.4,-9.2,-9.0,-8.799999999999999,-8.6,-8.4,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.8,10.0,10.2,10.4,-9.6,-9.4,-9.2,-9.0,-8.799999999999999,-8.6,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.4,9.8,10.0,10.2,10.4,-9.6,-9.4,-9.2,-9.0,-8.799999999999999,-8.6,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.4,9.8,10.0,10.2,10.4,-9.6,-9.4,-9.2,-8.799999999999999,-8.6,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.4,9.8,10.0,10.2,10.4,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-8.6,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.4,10.0,10.2,10.4,10.6,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-8.6,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.4,9.6,10.0,10.2,10.4,10.6,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-8.6,-8.4,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.2,9.4,9.6,10.0,10.2,10.4,10.6,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-8.6,-8.4,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.2,9.4,9.6,10.0,10.2,10.4,10.6,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-8.6,-8.4,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.6,8.799999999999999,9.2,9.4,10.0,10.2,10.4,10.6,-9.8,-9.6,-9.4,-9.2,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.2,9.4,9.6,10.0,10.2,10.4,10.6,-9.6,-9.4,-9.2,-9.0,-8.799999999999999,-8.6,-8.200000000000001,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.4,10.0,10.2,10.4,10.6,-9.6,-9.4,-9.2,-8.799999999999999,-8.6,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.4,10.0,10.2,10.4,10.6,-9.6,-9.4,-9.2,-8.799999999999999,-8.6,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.4,10.0,10.2,10.4,10.6,-9.6,-9.4,-9.2,-8.799999999999999,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.4,10.0,10.2,10.4,-9.6,-9.4,-9.2,-8.799999999999999,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.4,9.8,10.0,10.2,10.4,-9.6,-9.4,-9.2,-9.0,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.4,9.8,10.0,10.2,10.4,-9.6,-9.4,-9.2,-9.0,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.4,9.8,10.0,10.2,10.4,-9.6,-9.4,-9.2,-9.0,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.2,9.6,9.8,10.0,10.2,-9.6,-9.4,-9.2,-9.0,-8.6,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.2,9.6,9.8,10.0,10.2,-9.4,-9.2,-9.0,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.6,9.8,10.0,10.2,-9.4,-9.2,-9.0,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,9.0,9.6,9.8,10.0,-9.4,-9.2,-9.0,-8.799999999999999,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,9.4,9.6,9.8,10.0,-9.4,-9.2,-9.0,-8.799999999999999,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,9.4,9.6,9.8,10.0,-9.2,-9.0,-8.799999999999999,-8.6,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,9.4,9.6,9.8,-9.2,-9.0,-8.799999999999999,-8.6,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.6,9.2,9.4,9.6,9.8,-9.0,-8.799999999999999,-8.6,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,9.2,9.4,9.6,9.8,-9.0,-8.799999999999999,-8.6,-8.4,-7.8,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.6,9.0,9.2,9.4,9.6,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-7.6,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,9.0,9.2,9.4,9.6,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-8.0,-7.6,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.6,8.799999999999999,9.0,9.2,9.4,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,8.4,8.6,8.799999999999999,9.0,9.2,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.199999999999999,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.8,8.200000000000001,8.4,8.6,8.799999999999999,9.0,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.199999999999999,-7.000000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,7.8,8.0,8.200000000000001,8.4,8.6,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.800000000000001,7.6,7.8,8.0,8.200000000000001,8.4,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.4,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.4,6.6000000000000005,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.800000000000001,6.0,6.2,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.0,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.4,5.6000000000000005,5.800000000000001,6.0,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-5.800000000000001,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,5.0,5.2,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-1.6,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.2,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.8,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.6000000000000005,-5.4,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-5.800000000000001,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.0,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,6.0,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,6.0,6.2,6.4,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.6000000000000005,6.800000000000001,7.6,7.8,8.0,8.200000000000001,8.4,8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.199999999999999,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.199999999999999,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.3999999999999995,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,-8.6,-8.4,-8.200000000000001,-8.0,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.6,8.200000000000001,8.4,8.6,8.799999999999999,9.0,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-8.0,-7.6,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.8,8.0,8.4,8.6,8.799999999999999,9.0,9.2,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-8.0,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,8.200000000000001,8.6,8.799999999999999,9.0,9.2,9.4,-9.0,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.799999999999999,9.0,9.2,9.4,9.6,-9.0,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,9.0,9.2,9.4,9.6,-9.2,-9.0,-8.799999999999999,-8.6,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.6,9.0,9.2,9.4,9.6,9.8,-9.2,-9.0,-8.799999999999999,-8.6,-8.200000000000001,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,9.2,9.4,9.6,9.8,-9.4,-9.2,-9.0,-8.799999999999999,-8.4,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,9.2,9.4,9.6,9.8,-9.4,-9.2,-9.0,-8.799999999999999,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,9.0,9.4,9.6,9.8,10.0,-9.4,-9.2,-9.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,9.4,9.6,9.8,10.0,-9.4,-9.2,-9.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,9.6,9.8,10.0,10.2,-9.6,-9.4,-9.2,-9.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.6,9.8,10.0,10.2,-9.6,-9.4,-9.2,-9.0,-8.6,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.2,9.6,9.8,10.0,10.2,-9.6,-9.4,-9.2,-9.0,-8.6,-8.4,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.6,9.8,10.0,10.2,10.4,-9.6,-9.4,-9.2,-9.0,-8.6,-8.4,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.8,10.0,10.2,10.4,-9.6,-9.4,-9.2,-9.0,-8.6,-8.4,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.8,10.0,10.2,10.4,-9.6,-9.4,-9.2,-8.6,-8.4,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.4,9.8,10.0,10.2,10.4,-9.6,-9.4,-9.2,-9.0,-8.6,-8.4,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.4,9.8,10.0,10.2,10.4,-9.6,-9.4,-9.2,-9.0,-8.799999999999999,-8.6,-8.4,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.4,10.0,10.2,10.4,10.6,-9.6,-9.4,-9.2,-9.0,-8.799999999999999,-8.6,-8.4,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.2,9.4,10.0,10.2,10.4,10.6,-9.6,-9.4,-9.2,-9.0,-8.799999999999999,-8.6,-8.4,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.5999999999999996,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.2,9.4,10.0,10.2,10.4,10.6,-9.6,-9.4,-9.2,-9.0,-8.799999999999999,-8.6,-8.4,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.6,8.799999999999999,9.0,9.2,9.4,10.0,10.2,10.4,10.6,-9.6,-9.4,-9.2,-9.0,-8.799999999999999,-8.6,-8.4,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.2,9.4,9.6,10.0,10.2,10.4,10.6,-9.6,-9.4,-9.2,-9.0,-8.799999999999999,-8.6,-8.4,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.2,9.4,9.8,10.0,10.2,10.4,10.6,-9.6,-9.4,-9.2,-9.0,-8.799999999999999,-8.6,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.4,10.0,10.2,10.4,10.6,-9.6,-9.4,-9.2,-9.0,-8.799999999999999,-8.6,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.4,9.8,10.0,10.2,10.4,-9.6,-9.4,-9.2,-9.0,-8.799999999999999,-8.6,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.4,9.8,10.0,10.2,10.4,-9.6,-9.4,-9.2,-9.0,-8.6,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.4,9.8,10.0,10.2,10.4,-9.6,-9.4,-9.2,-9.0,-8.6,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.8,10.0,10.2,10.4,-9.6,-9.4,-9.2,-9.0,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.8,10.0,10.2,10.4,-9.6,-9.4,-9.2,-9.0,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.6,9.8,10.0,10.2,-9.4,-9.2,-9.0,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.6,9.8,10.0,10.2,-9.4,-9.2,-9.0,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,9.0,9.6,9.8,10.0,10.2,-9.4,-9.2,-9.0,-8.799999999999999,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.4,9.6,9.8,10.0,-9.4,-9.2,-9.0,-8.799999999999999,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,9.4,9.6,9.8,10.0,-9.2,-9.0,-8.799999999999999,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,9.4,9.6,9.8,-9.2,-9.0,-8.799999999999999,-8.6,-8.200000000000001,-8.0,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.6,9.2,9.4,9.6,9.8,-9.2,-9.0,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.6,9.2,9.4,9.6,9.8,-9.0,-8.799999999999999,-8.6,-8.4,-8.0,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.4,9.0,9.2,9.4,9.6,-9.0,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-8.0,-7.6,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.6,9.0,9.2,9.4,9.6,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.3999999999999995,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.799999999999999,9.0,9.2,9.4,9.6,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,8.6,8.799999999999999,9.0,9.2,9.4,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.3999999999999995,-7.199999999999999,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,8.4,8.6,8.799999999999999,9.0,9.2,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.199999999999999,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,8.200000000000001,8.4,8.6,8.799999999999999,9.0,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.000000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-6.800000000000001,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.800000000000001,7.6,7.8,8.0,8.200000000000001,8.4,8.6,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-6.6000000000000005,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.6000000000000005,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.4,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.4,6.6000000000000005,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.2,5.4,5.6000000000000005,6.0,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,5.0,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.2,-5.0,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.6000000000000005,-5.4,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.800000000000001,6.0,6.2,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.2,6.4,6.6000000000000005,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.4,6.6000000000000005,7.000000000000001,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.199999999999999,-7.000000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,7.6,7.8,8.0,8.200000000000001,8.4,8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.3999999999999995,-7.199999999999999,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,8.0,8.200000000000001,8.4,8.6,8.799999999999999,-8.6,-8.4,-8.200000000000001,-8.0,-7.3999999999999995,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,8.200000000000001,8.4,8.6,8.799999999999999,9.0,-8.6,-8.4,-8.200000000000001,-8.0,-7.6,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.8,8.4,8.6,8.799999999999999,9.0,9.2,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-7.6,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,8.6,8.799999999999999,9.0,9.2,9.4,-9.0,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-7.8,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,8.6,8.799999999999999,9.0,9.2,9.4,-9.0,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-8.0,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.4,8.799999999999999,9.0,9.2,9.4,9.6,-9.0,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-8.0,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,8.0,8.4,9.0,9.2,9.4,9.6,-9.2,-9.0,-8.799999999999999,-8.6,-8.200000000000001,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,9.0,9.2,9.4,9.6,9.8,-9.2,-9.0,-8.799999999999999,-8.6,-8.0,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,9.2,9.4,9.6,9.8,-9.4,-9.2,-9.0,-8.799999999999999,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,9.2,9.4,9.6,9.8,-9.4,-9.2,-9.0,-8.799999999999999,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,9.4,9.6,9.8,10.0,-9.4,-9.2,-9.0,-8.799999999999999,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,9.4,9.6,9.8,10.0,-9.4,-9.2,-9.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,9.6,9.8,10.0,10.2,-9.6,-9.4,-9.2,-9.0,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.6,9.8,10.0,10.2,-9.6,-9.4,-9.2,-9.0,-8.6,-8.4,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.6,9.8,10.0,10.2,10.4,-9.6,-9.4,-9.2,-9.0,-8.6,-8.4,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.8,10.0,10.2,10.4,-9.6,-9.4,-9.2,-9.0,-8.6,-8.4,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.8,10.0,10.2,10.4,-9.6,-9.4,-9.2,-9.0,-8.6,-8.4,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.4,9.8,10.0,10.2,10.4,-9.6,-9.4,-9.2,-9.0,-8.6,-8.4,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.4,9.8,10.0,10.2,10.4,-9.6,-9.4,-9.2,-9.0,-8.6,-8.4,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.2,9.4,9.8,10.0,10.2,10.4,-9.6,-9.4,-9.2,-9.0,-8.6,-8.4,-8.200000000000001,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.2,9.4,9.8,10.0,10.2,10.4,-9.6,-9.4,-9.2,-9.0,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,9.0,9.2,9.4,9.8,10.0,10.2,10.4,-9.6,-9.4,-9.2,-9.0,-8.799999999999999,-8.6,-8.4,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.6,8.799999999999999,9.0,9.2,9.4,9.8,10.0,10.2,10.4,-9.6,-9.4,-9.2,-9.0,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-8.0,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,9.2,9.4,9.8,10.0,10.2,10.4,-9.6,-9.4,-9.2,-9.0,-8.799999999999999,-8.6,-8.4,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.2,9.4,9.8,10.0,10.2,10.4,-9.6,-9.4,-9.2,-9.0,-8.799999999999999,-8.6,-8.4,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.2,9.4,9.8,10.0,10.2,10.4,-9.6,-9.4,-9.2,-9.0,-8.799999999999999,-8.6,-8.4,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.8,10.0,10.2,10.4,-9.6,-9.4,-9.2,-9.0,-8.6,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.8,10.0,10.2,10.4,-9.6,-9.4,-9.2,-9.0,-8.6,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.8,10.0,10.2,10.4,-9.6,-9.4,-9.2,-9.0,-8.6,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.2,9.8,10.0,10.2,10.4,-9.4,-9.2,-9.0,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.2,9.6,9.8,10.0,10.2,-9.4,-9.2,-9.0,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.6,9.8,10.0,10.2,-9.4,-9.2,-9.0,-8.799999999999999,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,9.0,9.6,9.8,10.0,10.2,-9.4,-9.2,-9.0,-8.799999999999999,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.4,9.6,9.8,10.0,-9.4,-9.2,-9.0,-8.799999999999999,-8.6,-8.4,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.799999999999999,9.4,9.6,9.8,10.0,-9.2,-9.0,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.799999999999999,9.4,9.6,9.8,10.0,-9.2,-9.0,-8.799999999999999,-8.6,-8.4,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.6,9.2,9.4,9.6,9.8,-9.2,-9.0,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-8.0,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,9.2,9.4,9.6,9.8,-9.0,-8.799999999999999,-8.6,-8.4,-7.8,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.4,9.0,9.2,9.4,9.6,-9.0,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-7.8,-7.6,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.4,9.0,9.2,9.4,9.6,-9.0,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-7.6,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.4,8.799999999999999,9.0,9.2,9.4,9.6,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-8.0,-7.3999999999999995,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,8.799999999999999,9.0,9.2,9.4,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.3999999999999995,-7.199999999999999,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,8.6,8.799999999999999,9.0,9.2,9.4,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.199999999999999,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,8.4,8.6,8.799999999999999,9.0,9.2,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.199999999999999,-7.000000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.000000000000001,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,7.000000000000001,7.199999999999999,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-6.800000000000001,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.6000000000000005,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.6000000000000005,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.4,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.4,5.800000000000001,6.0,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.6000000000000005,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.8,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.2,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-3.8,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.4,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-5.800000000000001,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.6,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,5.0,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.4,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.800000000000001,6.0,6.2,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,6.0,6.2,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.199999999999999,-7.000000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,7.000000000000001,7.6,7.8,8.0,8.200000000000001,8.4,8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.3999999999999995,-7.199999999999999,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,-8.6,-8.4,-8.200000000000001,-8.0,-7.3999999999999995,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,-8.6,-8.4,-8.200000000000001,-8.0,-7.6,-7.3999999999999995,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.6,8.200000000000001,8.4,8.6,8.799999999999999,9.0,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-7.6,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,8.4,8.6,8.799999999999999,9.0,9.2,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-7.8,-7.6,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,8.6,8.799999999999999,9.0,9.2,9.4,-9.0,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-7.8,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.6,8.799999999999999,9.0,9.2,9.4,-9.0,-8.799999999999999,-8.6,-8.4,-7.8,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.4,8.799999999999999,9.0,9.2,9.4,9.6,-9.2,-9.0,-8.799999999999999,-8.6,-8.4,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,9.0,9.2,9.4,9.6,-9.2,-9.0,-8.799999999999999,-8.6,-8.200000000000001,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,9.0,9.2,9.4,9.6,9.8,-9.2,-9.0,-8.799999999999999,-8.6,-8.200000000000001,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,9.2,9.4,9.6,9.8,-9.4,-9.2,-9.0,-8.799999999999999,-8.6,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,9.2,9.4,9.6,9.8,10.0,-9.4,-9.2,-9.0,-8.799999999999999,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,9.4,9.6,9.8,10.0,-9.4,-9.2,-9.0,-8.799999999999999,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,9.4,9.6,9.8,10.0,-9.4,-9.2,-9.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,9.4,9.6,9.8,10.0,10.2,-9.4,-9.2,-9.0,-8.4,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.799999999999999,9.2,9.6,9.8,10.0,10.2,-9.6,-9.4,-9.2,-9.0,-8.4,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.6,9.8,10.0,10.2,-9.6,-9.4,-9.2,-9.0,-8.6,-8.4,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.6,9.8,10.0,10.2,10.4,-9.6,-9.4,-9.2,-9.0,-8.6,-8.4,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.8,10.0,10.2,10.4,-9.6,-9.4,-9.2,-9.0,-8.4,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.2,9.4,9.8,10.0,10.2,10.4,-9.6,-9.4,-9.2,-9.0,-8.6,-8.4,-8.200000000000001,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.2,9.4,9.8,10.0,10.2,10.4,-9.6,-9.4,-9.2,-9.0,-8.6,-8.4,-8.200000000000001,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.2,9.4,9.8,10.0,10.2,10.4,-9.6,-9.4,-9.2,-9.0,-8.6,-8.4,-8.200000000000001,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,3.4000000000000004,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,9.0,9.2,9.4,9.8,10.0,10.2,10.4,-9.6,-9.4,-9.2,-9.0,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.6,8.799999999999999,9.0,9.2,9.4,9.8,10.0,10.2,10.4,-9.6,-9.4,-9.2,-9.0,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,9.0,9.2,9.4,9.8,10.0,10.2,10.4,-9.6,-9.4,-9.2,-9.0,-8.6,-8.4,-8.200000000000001,-8.0,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.2,9.8,10.0,10.2,10.4,-9.4,-9.2,-9.0,-8.6,-8.4,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.8,10.0,10.2,10.4,-9.4,-9.2,-9.0,-8.6,-8.4,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,9.8,10.0,10.2,10.4,-9.4,-9.2,-9.0,-8.6,-8.4,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.2,9.8,10.0,10.2,-9.4,-9.2,-9.0,-8.6,-8.4,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.2,9.6,9.8,10.0,10.2,-9.4,-9.2,-9.0,-8.4,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.2,9.6,9.8,10.0,10.2,-9.4,-9.2,-9.0,-8.799999999999999,-8.4,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.6,9.8,10.0,10.2,-9.4,-9.2,-9.0,-8.799999999999999,-8.6,-8.4,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,9.0,9.6,9.8,10.0,10.2,-9.4,-9.2,-9.0,-8.799999999999999,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.4,9.6,9.8,10.0,10.2,-9.4,-9.2,-9.0,-8.799999999999999,-8.6,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.799999999999999,9.4,9.6,9.8,10.0,-9.2,-9.0,-8.799999999999999,-8.6,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,8.6,9.0,9.4,9.6,9.8,10.0,-9.2,-9.0,-8.799999999999999,-8.6,-8.200000000000001,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,9.2,9.4,9.6,9.8,10.0,-9.2,-9.0,-8.799999999999999,-8.6,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,9.2,9.4,9.6,9.8,-9.0,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,8.0,8.4,9.0,9.2,9.4,9.6,9.8,-9.0,-8.799999999999999,-8.6,-8.4,-7.8,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.4,9.0,9.2,9.4,9.6,-9.0,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-7.8,-7.6,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.200000000000001,8.4,8.799999999999999,9.0,9.2,9.4,9.6,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-7.6,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,8.0,8.799999999999999,9.0,9.2,9.4,-8.799999999999999,-8.6,-8.4,-8.200000000000001,-8.0,-7.6,-7.3999999999999995,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.8,8.6,8.799999999999999,9.0,9.2,9.4,-8.6,-8.4,-8.200000000000001,-8.0,-7.3999999999999995,-7.199999999999999,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,8.4,8.6,8.799999999999999,9.0,9.2,-8.6,-8.4,-8.200000000000001,-8.0,-7.8,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.3999999999999995,8.200000000000001,8.4,8.6,8.799999999999999,9.0,9.2,-8.4,-8.200000000000001,-8.0,-7.8,-7.6,-7.199999999999999,-7.000000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,8.0,8.200000000000001,8.4,8.6,8.799999999999999,9.0,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.000000000000001,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,7.000000000000001,7.6,7.8,8.0,8.200000000000001,8.4,8.6,8.799999999999999,-8.200000000000001,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-6.800000000000001,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.800000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,8.4,-8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.6000000000000005,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,6.2,6.4,6.6000000000000005,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,8.200000000000001,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.800000000000001,6.0,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,7.8,8.0,-7.8,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,7.6,-7.6,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,7.199999999999999,7.3999999999999995,-7.3999999999999995,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,6.800000000000001,7.000000000000001,-7.199999999999999,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,6.4,6.6000000000000005,-7.000000000000001,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,6.2,-6.800000000000001,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,6.0,-6.6000000000000005,-6.4,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-3.8,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,5.6000000000000005,5.800000000000001,-6.2,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,5.2,5.4,-6.0,-5.800000000000001,-5.6000000000000005,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,5.0,-5.4,-5.2,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,4.6,4.8,-5.0,-4.8,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,3.8,4.0,4.2,4.3999999999999995,-4.6,-4.3999999999999995,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,3.0,3.2,3.4000000000000004,3.5999999999999996,-4.2,-4.0,-3.8,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,2.4,2.6,2.8000000000000003,-3.5999999999999996,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,1.4000000000000001,1.6,1.7999999999999998,2.0,2.1999999999999997,-3.4000000000000004,-3.2,-3.0,-2.8000000000000003,-2.6,-2.4,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1.0,1.2,-2.1999999999999997,-2.0,-1.7999999999999998,-1.6,-1.4000000000000001,-1.2,-1.0,-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4],"type":"scatter3d","text":[329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,47.0,329.0,47.0,47.0,47.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,47.0,47.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,47.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,329.0,70.0,70.0,70.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,70.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,70.0,329.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,47.0,329.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,47.0,70.0,47.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,70.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,329.0,47.0,329.0,329.0,70.0,70.0,329.0,47.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,47.0,329.0,329.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,329.0,329.0,70.0,329.0,329.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,47.0,329.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,329.0,329.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,70.0,329.0,329.0,47.0,329.0,329.0,47.0,70.0,329.0,329.0,70.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,329.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,47.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,70.0,70.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,70.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,47.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,70.0,70.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,329.0,47.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,70.0,70.0,70.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,329.0,329.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,47.0,329.0,329.0,47.0,70.0,47.0,70.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,329.0,70.0,329.0,47.0,329.0,329.0,329.0,70.0,329.0,329.0,70.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,70.0,70.0,83.0,329.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,70.0,47.0,329.0,329.0,329.0,47.0,47.0,329.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,70.0,70.0,329.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,70.0,47.0,329.0,329.0,329.0,70.0,329.0,70.0,70.0,70.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,70.0,83.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,329.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,329.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,329.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,329.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,83.0,83.0,70.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,329.0,70.0,83.0,329.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,47.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,329.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,329.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,70.0,329.0,70.0,70.0,70.0,329.0,329.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,329.0,329.0,329.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,47.0,329.0,329.0,329.0,70.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,83.0,329.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,329.0,329.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,70.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,83.0,329.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,70.0,70.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,70.0,329.0,70.0,329.0,83.0,70.0,83.0,329.0,83.0,70.0,83.0,70.0,83.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,329.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,329.0,70.0,70.0,70.0,329.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,70.0,47.0,329.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,70.0,83.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,329.0,329.0,329.0,83.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,47.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,70.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,70.0,329.0,70.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,47.0,47.0,329.0,329.0,329.0,47.0,47.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,70.0,70.0,329.0,70.0,70.0,329.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,83.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,70.0,83.0,70.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,329.0,47.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,70.0,70.0,329.0,329.0,70.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,70.0,70.0,329.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,329.0,329.0,329.0,70.0,47.0,329.0,70.0,329.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,70.0,47.0,329.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,47.0,70.0,47.0,329.0,70.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,47.0,329.0,329.0,70.0,70.0,47.0,329.0,70.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,47.0,47.0,70.0,329.0,329.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,329.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,70.0,83.0,329.0,329.0,329.0,83.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,329.0,329.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,329.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,329.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,70.0,70.0,329.0,329.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,47.0,329.0,329.0,329.0,70.0,47.0,70.0,70.0,47.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,47.0,47.0,47.0,47.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,70.0,329.0,47.0,329.0,70.0,70.0,70.0,47.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,70.0,70.0,70.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,47.0,70.0,47.0,70.0,70.0,47.0,47.0,329.0,47.0,70.0,47.0,70.0,47.0,70.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,329.0,47.0,70.0,70.0,70.0,47.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,329.0,47.0,329.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,47.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,70.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,329.0,70.0,47.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,329.0,329.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,47.0,329.0,329.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,47.0,329.0,329.0,70.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,70.0,70.0,329.0,329.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,47.0,329.0,70.0,329.0,329.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,47.0,329.0,70.0,329.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,70.0,329.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,329.0,83.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,70.0,329.0,47.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,47.0,329.0,329.0,329.0,329.0,47.0,70.0,47.0,329.0,70.0,329.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,329.0,83.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,47.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,329.0,329.0,83.0,70.0,83.0,329.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,329.0,329.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,70.0,70.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,47.0,329.0,329.0,329.0,70.0,329.0,329.0,70.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,70.0,329.0,329.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,70.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,47.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,329.0,70.0,329.0,329.0,329.0,70.0,70.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,83.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,329.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,83.0,70.0,83.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,329.0,329.0,329.0,70.0,329.0,70.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,329.0,83.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,70.0,83.0,70.0,70.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,70.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,70.0,70.0,83.0,70.0,70.0,329.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,70.0,329.0,70.0,70.0,70.0,329.0,329.0,83.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,83.0,83.0,329.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,329.0,83.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,329.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,83.0,329.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,70.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,47.0,70.0,70.0,70.0,329.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,329.0,70.0,70.0,70.0,329.0,329.0,70.0,329.0,329.0,70.0,329.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,70.0,329.0,47.0,329.0,329.0,329.0,70.0,329.0,329.0,83.0,70.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,329.0,70.0,329.0,329.0,329.0,70.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,70.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,329.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,83.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,47.0,329.0,70.0,329.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,329.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,47.0,47.0,329.0,70.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,329.0,70.0,70.0,329.0,47.0,329.0,329.0,329.0,70.0,329.0,70.0,329.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,70.0,70.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,70.0,329.0,70.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,83.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,70.0,329.0,329.0,47.0,70.0,329.0,70.0,329.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,329.0,47.0,329.0,329.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,47.0,70.0,47.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,70.0,70.0,329.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,70.0,70.0,47.0,329.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,329.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,47.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,47.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,47.0,329.0,70.0,329.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,70.0,83.0,83.0,329.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,47.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,329.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,47.0,329.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,47.0,329.0,70.0,329.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,47.0,329.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,47.0,70.0,329.0,329.0,329.0,70.0,329.0,329.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,70.0,47.0,47.0,329.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,70.0,47.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,329.0,47.0,70.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,47.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,47.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,70.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,70.0,70.0,70.0,47.0,70.0,47.0,70.0,47.0,70.0,47.0,70.0,70.0,47.0,70.0,70.0,47.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,329.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,47.0,47.0,47.0,70.0,70.0,47.0,47.0,47.0,70.0,47.0,70.0,47.0,47.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,47.0,70.0,70.0,47.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,70.0,70.0,70.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,47.0,70.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,47.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,47.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,329.0,70.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,329.0,329.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,47.0,329.0,70.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,329.0,329.0,329.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,329.0,329.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,47.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,329.0,70.0,329.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,329.0,329.0,83.0,70.0,70.0,70.0,83.0,329.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,47.0,329.0,47.0,329.0,329.0,47.0,329.0,329.0,70.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,47.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,329.0,83.0,83.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,70.0,70.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,47.0,329.0,70.0,70.0,329.0,83.0,83.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,70.0,329.0,329.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,70.0,70.0,70.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,70.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,83.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,329.0,70.0,329.0,47.0,329.0,329.0,329.0,47.0,329.0,70.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,329.0,329.0,329.0,70.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,83.0,83.0,83.0,70.0,83.0,70.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,47.0,329.0,329.0,47.0,329.0,329.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,70.0,329.0,329.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,47.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,329.0,329.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,47.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,329.0,329.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,329.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,47.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,70.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,329.0,329.0,329.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,83.0,83.0,83.0,329.0,83.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,329.0,83.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,47.0,47.0,70.0,70.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,70.0,329.0,83.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,70.0,329.0,329.0,47.0,329.0,329.0,83.0,70.0,70.0,83.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,83.0,329.0,329.0,83.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,329.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,329.0,329.0,329.0,329.0,70.0,47.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,329.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,70.0,329.0,70.0,329.0,329.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,70.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,70.0,329.0,329.0,329.0,47.0,329.0,47.0,329.0,70.0,70.0,70.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,329.0,70.0,70.0,47.0,329.0,329.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,329.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,70.0,70.0,47.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,329.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,47.0,70.0,70.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,47.0,329.0,70.0,329.0,329.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,329.0,329.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,70.0,329.0,70.0,47.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,47.0,70.0,47.0,329.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,70.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,47.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,47.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,47.0,329.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,70.0,329.0,329.0,70.0,329.0,329.0,83.0,329.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,70.0,47.0,329.0,329.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,47.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,70.0,47.0,329.0,329.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,329.0,329.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,47.0,329.0,70.0,70.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,47.0,47.0,47.0,47.0,70.0,47.0,70.0,47.0,47.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,47.0,70.0,47.0,47.0,329.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,47.0,47.0,329.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,47.0,47.0,47.0,47.0,70.0,47.0,47.0,47.0,47.0,47.0,70.0,47.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,47.0,47.0,329.0,70.0,70.0,70.0,47.0,329.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,70.0,70.0,47.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,47.0,70.0,70.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,47.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,70.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,70.0,70.0,70.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,70.0,329.0,329.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,70.0,329.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,47.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,47.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,329.0,329.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,83.0,329.0,329.0,83.0,83.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,83.0,329.0,329.0,83.0,329.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,329.0,329.0,329.0,70.0,329.0,47.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,70.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,47.0,329.0,70.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,70.0,329.0,329.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,83.0,70.0,83.0,83.0,83.0,329.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,329.0,83.0,83.0,83.0,70.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,329.0,329.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,329.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,83.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,70.0,70.0,70.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,47.0,329.0,329.0,47.0,329.0,329.0,70.0,70.0,329.0,83.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,83.0,70.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,47.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,329.0,47.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,47.0,329.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,47.0,329.0,70.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,83.0,83.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,83.0,70.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,70.0,70.0,83.0,70.0,83.0,83.0,329.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,329.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,329.0,329.0,83.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,329.0,329.0,329.0,329.0,83.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,329.0,329.0,329.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,83.0,70.0,83.0,83.0,329.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,329.0,329.0,83.0,70.0,83.0,83.0,329.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,83.0,83.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,329.0,329.0,83.0,70.0,70.0,83.0,329.0,83.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,329.0,70.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,83.0,329.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,329.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,329.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,329.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,70.0,329.0,329.0,83.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,70.0,329.0,329.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,70.0,47.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,47.0,329.0,329.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,70.0,70.0,329.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,329.0,329.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,329.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,70.0,70.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,70.0,83.0,83.0,83.0,329.0,329.0,83.0,329.0,329.0,70.0,329.0,70.0,329.0,329.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,47.0,329.0,329.0,70.0,70.0,70.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,70.0,83.0,329.0,83.0,83.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,47.0,70.0,329.0,329.0,329.0,70.0,70.0,47.0,329.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,70.0,47.0,70.0,47.0,329.0,70.0,329.0,329.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,47.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,70.0,70.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,70.0,47.0,70.0,47.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,83.0,329.0,83.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,329.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,47.0,70.0,329.0,70.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,70.0,47.0,47.0,329.0,329.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,70.0,70.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,47.0,70.0,47.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,47.0,47.0,47.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,47.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,47.0,47.0,70.0,47.0,70.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,47.0,47.0,47.0,47.0,70.0,70.0,70.0,70.0,47.0,70.0,47.0,47.0,70.0,70.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,47.0,47.0,70.0,47.0,47.0,47.0,47.0,47.0,70.0,329.0,47.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,47.0,47.0,70.0,47.0,70.0,70.0,47.0,70.0,47.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,47.0,70.0,70.0,70.0,70.0,70.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,47.0,329.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,47.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,47.0,47.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,47.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,47.0,329.0,70.0,47.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,70.0,70.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,47.0,329.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,329.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,329.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,47.0,70.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,329.0,329.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,83.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,47.0,329.0,47.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,329.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,47.0,70.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,47.0,329.0,329.0,47.0,329.0,329.0,70.0,70.0,70.0,329.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,70.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,83.0,70.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,329.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,329.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,83.0,70.0,83.0,83.0,70.0,83.0,83.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,83.0,83.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,83.0,329.0,329.0,83.0,83.0,70.0,83.0,83.0,70.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,47.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,70.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,329.0,329.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,329.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,83.0,329.0,329.0,329.0,329.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,329.0,329.0,329.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,70.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,70.0,329.0,329.0,329.0,47.0,329.0,70.0,329.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,47.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,329.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,70.0,47.0,70.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,47.0,329.0,329.0,83.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,70.0,329.0,329.0,47.0,47.0,329.0,329.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,329.0,329.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,47.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,70.0,329.0,329.0,329.0,47.0,47.0,329.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,83.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,329.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,47.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,329.0,70.0,329.0,47.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,83.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,47.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,83.0,329.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,83.0,329.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,47.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,329.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,83.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,47.0,329.0,70.0,329.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,329.0,329.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,47.0,329.0,70.0,329.0,329.0,83.0,83.0,83.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,329.0,47.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,83.0,329.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,70.0,70.0,70.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,47.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,47.0,70.0,47.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,47.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,47.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,47.0,47.0,70.0,47.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,70.0,70.0,47.0,70.0,70.0,70.0,47.0,47.0,47.0,47.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,47.0,47.0,47.0,47.0,47.0,70.0,70.0,47.0,47.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,47.0,47.0,47.0,47.0,47.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,70.0,70.0,70.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,47.0,47.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,47.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,70.0,47.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,70.0,70.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,47.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,329.0,47.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,47.0,329.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,47.0,329.0,70.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,70.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,329.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,329.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,329.0,329.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,83.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,329.0,329.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,83.0,329.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,70.0,47.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,70.0,70.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,329.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,329.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,47.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,83.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,329.0,47.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,70.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,329.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,329.0,83.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,70.0,70.0,329.0,329.0,83.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,47.0,329.0,329.0,329.0,47.0,47.0,70.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,47.0,329.0,329.0,329.0,47.0,47.0,70.0,70.0,70.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,329.0,329.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,83.0,329.0,329.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,70.0,70.0,329.0,329.0,70.0,83.0,83.0,70.0,83.0,329.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,329.0,329.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,70.0,329.0,83.0,70.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,83.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,83.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,329.0,70.0,70.0,47.0,329.0,329.0,47.0,329.0,329.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,329.0,83.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,329.0,83.0,83.0,70.0,70.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,70.0,329.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,329.0,329.0,329.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,70.0,329.0,329.0,70.0,329.0,329.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,70.0,329.0,329.0,329.0,70.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,70.0,329.0,83.0,83.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,329.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,70.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,47.0,329.0,47.0,329.0,329.0,329.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,47.0,329.0,70.0,329.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,47.0,329.0,70.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,329.0,329.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,329.0,329.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,47.0,47.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,83.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,329.0,329.0,70.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,329.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,329.0,329.0,70.0,329.0,329.0,83.0,83.0,329.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,70.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,83.0,83.0,329.0,329.0,83.0,83.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,70.0,70.0,329.0,329.0,70.0,329.0,329.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,47.0,70.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,70.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,329.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,47.0,47.0,329.0,47.0,47.0,70.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,47.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,47.0,47.0,47.0,47.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,70.0,47.0,47.0,47.0,47.0,70.0,47.0,70.0,70.0,47.0,70.0,47.0,47.0,47.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,47.0,70.0,70.0,47.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,47.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,47.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,47.0,47.0,329.0,329.0,47.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,70.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,47.0,47.0,329.0,329.0,70.0,329.0,329.0,329.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,47.0,70.0,329.0,70.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,47.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,329.0,329.0,70.0,329.0,329.0,329.0,47.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,47.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,329.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,47.0,329.0,70.0,70.0,329.0,329.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,329.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,70.0,70.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,70.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,70.0,329.0,70.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,47.0,70.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,329.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,70.0,70.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,329.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,47.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,47.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,329.0,329.0,329.0,70.0,329.0,70.0,70.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,329.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,329.0,47.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,47.0,329.0,329.0,329.0,70.0,329.0,329.0,70.0,70.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,70.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,70.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,70.0,329.0,329.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,83.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,329.0,329.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,329.0,83.0,329.0,329.0,83.0,329.0,329.0,329.0,329.0,329.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,329.0,83.0,83.0,329.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,83.0,83.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,83.0,329.0,329.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,329.0,47.0,329.0,329.0,329.0,47.0,329.0,70.0,329.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,47.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,329.0,329.0,83.0,70.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,47.0,329.0,70.0,329.0,83.0,83.0,70.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,70.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,329.0,83.0,83.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,47.0,70.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,47.0,329.0,329.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,329.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,47.0,329.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,70.0,47.0,47.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,329.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,70.0,70.0,47.0,329.0,70.0,329.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,47.0,329.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,47.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,47.0,70.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,329.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,329.0,70.0,329.0,329.0,329.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,83.0,329.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,47.0,70.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,47.0,70.0,70.0,47.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,47.0,329.0,329.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,47.0,329.0,329.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,70.0,70.0,70.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,70.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,329.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,47.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,70.0,70.0,47.0,47.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,70.0,329.0,47.0,70.0,47.0,47.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,47.0,47.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,70.0,47.0,47.0,70.0,70.0,47.0,47.0,47.0,47.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,47.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,47.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,70.0,329.0,47.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,70.0,47.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,329.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,47.0,329.0,70.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,70.0,329.0,70.0,329.0,329.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,329.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,47.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,329.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,70.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,329.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,329.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,329.0,47.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,329.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,70.0,329.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,329.0,329.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,329.0,47.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,70.0,70.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,47.0,329.0,329.0,329.0,47.0,47.0,70.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,83.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,47.0,329.0,329.0,329.0,47.0,329.0,70.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,329.0,329.0,83.0,83.0,83.0,70.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,70.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,329.0,70.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,47.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,70.0,329.0,70.0,70.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,329.0,329.0,329.0,83.0,83.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,329.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,83.0,70.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,70.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,83.0,83.0,329.0,329.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,83.0,329.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,329.0,329.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,83.0,83.0,329.0,329.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,83.0,329.0,329.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,329.0,83.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,83.0,83.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,47.0,329.0,329.0,47.0,70.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,47.0,329.0,329.0,329.0,47.0,329.0,329.0,83.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,47.0,329.0,70.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,47.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,83.0,329.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,47.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,70.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,329.0,70.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,70.0,329.0,83.0,83.0,70.0,83.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,47.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,47.0,47.0,47.0,329.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,47.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,329.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,47.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,47.0,70.0,329.0,70.0,70.0,329.0,70.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,70.0,329.0,329.0,70.0,329.0,329.0,329.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,70.0,47.0,47.0,329.0,70.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,70.0,70.0,329.0,329.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,47.0,70.0,47.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,47.0,329.0,329.0,329.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,329.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,47.0,47.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,47.0,47.0,47.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,70.0,70.0,70.0,47.0,47.0,47.0,47.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,47.0,47.0,329.0,47.0,47.0,329.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,47.0,70.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,47.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,47.0,70.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,329.0,70.0,70.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,70.0,47.0,329.0,70.0,329.0,329.0,83.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,329.0,329.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,70.0,329.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,47.0,329.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,70.0,329.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,329.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,70.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,70.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,70.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,70.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,70.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,47.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,329.0,47.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,70.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,70.0,70.0,70.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,329.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,83.0,329.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,329.0,83.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,329.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,83.0,70.0,83.0,83.0,83.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,329.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,47.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,47.0,329.0,329.0,329.0,47.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,329.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,329.0,70.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,70.0,70.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,47.0,329.0,329.0,70.0,70.0,329.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,70.0,329.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,70.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,329.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,47.0,70.0,47.0,329.0,329.0,70.0,329.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,47.0,47.0,329.0,329.0,329.0,70.0,47.0,70.0,70.0,329.0,70.0,329.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,47.0,70.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,329.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,83.0,329.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,70.0,329.0,329.0,70.0,329.0,329.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,47.0,70.0,329.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,47.0,70.0,70.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,70.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,47.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,47.0,47.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,47.0,47.0,47.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,70.0,47.0,70.0,47.0,47.0,47.0,70.0,47.0,70.0,47.0,70.0,70.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,47.0,47.0,47.0,47.0,47.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,70.0,47.0,70.0,70.0,70.0,47.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,47.0,47.0,47.0,47.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,47.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,47.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,47.0,70.0,329.0,47.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,70.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,70.0,329.0,329.0,70.0,329.0,329.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,70.0,329.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,329.0,329.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,47.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,329.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,70.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,329.0,70.0,329.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,70.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,329.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,329.0,83.0,83.0,70.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,329.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,47.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,70.0,329.0,329.0,329.0,47.0,47.0,329.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,329.0,329.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,47.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,83.0,70.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,329.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,329.0,83.0,70.0,70.0,70.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,83.0,83.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,70.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,70.0,83.0,329.0,83.0,70.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,83.0,70.0,83.0,329.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,329.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,329.0,329.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,47.0,329.0,329.0,329.0,47.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,70.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,47.0,47.0,329.0,329.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,47.0,70.0,329.0,329.0,329.0,47.0,70.0,70.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,329.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,70.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,329.0,47.0,329.0,329.0,329.0,70.0,47.0,329.0,70.0,70.0,70.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,70.0,70.0,329.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,70.0,70.0,329.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,70.0,47.0,329.0,329.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,70.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,47.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,329.0,70.0,70.0,329.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,83.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,70.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,47.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,47.0,329.0,70.0,329.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,47.0,70.0,329.0,70.0,70.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,329.0,83.0,83.0,70.0,83.0,329.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,47.0,70.0,329.0,47.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,47.0,47.0,329.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,47.0,70.0,329.0,329.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,329.0,70.0,70.0,329.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,70.0,70.0,70.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,83.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,70.0,70.0,70.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,47.0,47.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,47.0,47.0,47.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,47.0,47.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,70.0,47.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,47.0,47.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,329.0,329.0,47.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,329.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,47.0,70.0,47.0,47.0,70.0,70.0,70.0,47.0,70.0,70.0,70.0,47.0,47.0,47.0,70.0,70.0,70.0,47.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,47.0,47.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,47.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,70.0,70.0,47.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,329.0,70.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,70.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,83.0,329.0,329.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,70.0,70.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,47.0,329.0,70.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,329.0,70.0,70.0,329.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,47.0,329.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,70.0,329.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,329.0,329.0,83.0,329.0,83.0,83.0,70.0,83.0,329.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,47.0,329.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,70.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,70.0,83.0,83.0,70.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,329.0,47.0,70.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,329.0,83.0,70.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,70.0,329.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,83.0,83.0,70.0,83.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,329.0,329.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,70.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,70.0,70.0,329.0,329.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,329.0,83.0,329.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,70.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,329.0,83.0,83.0,329.0,83.0,329.0,329.0,83.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,329.0,329.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,83.0,329.0,329.0,329.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,70.0,329.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,47.0,329.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,70.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,329.0,83.0,329.0,329.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,47.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,329.0,47.0,329.0,329.0,329.0,47.0,329.0,70.0,83.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,70.0,329.0,83.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,47.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,329.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,70.0,70.0,70.0,329.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,83.0,329.0,83.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,329.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,47.0,47.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,70.0,329.0,329.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,329.0,70.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,70.0,329.0,329.0,70.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,83.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,47.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,70.0,47.0,329.0,329.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,329.0,47.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,329.0,70.0,70.0,329.0,329.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,329.0,70.0,70.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,47.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,47.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,70.0,70.0,70.0,47.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,47.0,70.0,47.0,70.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,329.0,47.0,70.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,329.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0],"z":[-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-1.0,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.8,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.6,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.4,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,-0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0],"hovertemplate":"x: %{x:.1f} cm
y: %{y:.1f} cm
z: %{z:.1f} cm
T2: %{text} ms","marker":{"color":[329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,47.0,329.0,47.0,47.0,47.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,47.0,47.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,47.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,329.0,70.0,70.0,70.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,70.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,70.0,329.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,47.0,329.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,47.0,70.0,47.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,70.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,329.0,47.0,329.0,329.0,70.0,70.0,329.0,47.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,47.0,329.0,329.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,329.0,329.0,70.0,329.0,329.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,47.0,329.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,329.0,329.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,70.0,329.0,329.0,47.0,329.0,329.0,47.0,70.0,329.0,329.0,70.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,329.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,47.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,70.0,70.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,70.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,47.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,70.0,70.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,329.0,47.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,70.0,70.0,70.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,329.0,329.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,47.0,329.0,329.0,47.0,70.0,47.0,70.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,329.0,70.0,329.0,47.0,329.0,329.0,329.0,70.0,329.0,329.0,70.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,70.0,70.0,83.0,329.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,70.0,47.0,329.0,329.0,329.0,47.0,47.0,329.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,70.0,70.0,329.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,70.0,47.0,329.0,329.0,329.0,70.0,329.0,70.0,70.0,70.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,70.0,83.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,329.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,329.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,329.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,329.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,83.0,83.0,70.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,329.0,70.0,83.0,329.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,47.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,329.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,329.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,70.0,329.0,70.0,70.0,70.0,329.0,329.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,329.0,329.0,329.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,47.0,329.0,329.0,329.0,70.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,83.0,329.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,329.0,329.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,70.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,83.0,329.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,70.0,70.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,70.0,329.0,70.0,329.0,83.0,70.0,83.0,329.0,83.0,70.0,83.0,70.0,83.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,329.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,329.0,70.0,70.0,70.0,329.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,70.0,47.0,329.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,70.0,83.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,329.0,329.0,329.0,83.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,47.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,70.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,70.0,329.0,70.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,47.0,47.0,329.0,329.0,329.0,47.0,47.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,70.0,70.0,329.0,70.0,70.0,329.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,83.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,70.0,83.0,70.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,329.0,47.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,70.0,70.0,329.0,329.0,70.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,70.0,70.0,329.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,329.0,329.0,329.0,70.0,47.0,329.0,70.0,329.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,70.0,47.0,329.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,47.0,70.0,47.0,329.0,70.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,47.0,329.0,329.0,70.0,70.0,47.0,329.0,70.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,47.0,47.0,70.0,329.0,329.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,329.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,70.0,83.0,329.0,329.0,329.0,83.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,329.0,329.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,329.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,329.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,70.0,70.0,329.0,329.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,47.0,329.0,329.0,329.0,70.0,47.0,70.0,70.0,47.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,47.0,47.0,47.0,47.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,70.0,329.0,47.0,329.0,70.0,70.0,70.0,47.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,70.0,70.0,70.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,47.0,70.0,47.0,70.0,70.0,47.0,47.0,329.0,47.0,70.0,47.0,70.0,47.0,70.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,329.0,47.0,70.0,70.0,70.0,47.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,329.0,47.0,329.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,47.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,70.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,329.0,70.0,47.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,329.0,329.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,47.0,329.0,329.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,47.0,329.0,329.0,70.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,70.0,70.0,329.0,329.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,47.0,329.0,70.0,329.0,329.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,47.0,329.0,70.0,329.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,70.0,329.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,329.0,83.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,70.0,329.0,47.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,47.0,329.0,329.0,329.0,329.0,47.0,70.0,47.0,329.0,70.0,329.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,329.0,83.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,47.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,329.0,329.0,83.0,70.0,83.0,329.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,329.0,329.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,70.0,70.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,47.0,329.0,329.0,329.0,70.0,329.0,329.0,70.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,70.0,329.0,329.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,70.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,47.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,329.0,70.0,329.0,329.0,329.0,70.0,70.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,83.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,329.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,83.0,70.0,83.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,329.0,329.0,329.0,70.0,329.0,70.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,329.0,83.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,70.0,83.0,70.0,70.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,70.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,70.0,70.0,83.0,70.0,70.0,329.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,70.0,329.0,70.0,70.0,70.0,329.0,329.0,83.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,83.0,83.0,329.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,329.0,83.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,329.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,83.0,329.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,70.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,47.0,70.0,70.0,70.0,329.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,329.0,70.0,70.0,70.0,329.0,329.0,70.0,329.0,329.0,70.0,329.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,70.0,329.0,47.0,329.0,329.0,329.0,70.0,329.0,329.0,83.0,70.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,329.0,70.0,329.0,329.0,329.0,70.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,70.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,329.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,83.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,47.0,329.0,70.0,329.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,329.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,47.0,47.0,329.0,70.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,329.0,70.0,70.0,329.0,47.0,329.0,329.0,329.0,70.0,329.0,70.0,329.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,70.0,70.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,70.0,329.0,70.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,83.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,70.0,329.0,329.0,47.0,70.0,329.0,70.0,329.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,329.0,47.0,329.0,329.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,47.0,70.0,47.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,70.0,70.0,329.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,70.0,70.0,47.0,329.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,329.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,47.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,47.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,47.0,329.0,70.0,329.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,70.0,83.0,83.0,329.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,47.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,329.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,47.0,329.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,47.0,329.0,70.0,329.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,47.0,329.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,47.0,70.0,329.0,329.0,329.0,70.0,329.0,329.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,70.0,47.0,47.0,329.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,70.0,47.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,329.0,47.0,70.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,47.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,47.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,70.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,70.0,70.0,70.0,47.0,70.0,47.0,70.0,47.0,70.0,47.0,70.0,70.0,47.0,70.0,70.0,47.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,329.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,47.0,47.0,47.0,70.0,70.0,47.0,47.0,47.0,70.0,47.0,70.0,47.0,47.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,47.0,70.0,70.0,47.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,70.0,70.0,70.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,47.0,70.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,47.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,47.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,329.0,70.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,329.0,329.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,47.0,329.0,70.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,329.0,329.0,329.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,329.0,329.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,47.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,329.0,70.0,329.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,329.0,329.0,83.0,70.0,70.0,70.0,83.0,329.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,47.0,329.0,47.0,329.0,329.0,47.0,329.0,329.0,70.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,47.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,329.0,83.0,83.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,70.0,70.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,47.0,329.0,70.0,70.0,329.0,83.0,83.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,70.0,329.0,329.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,70.0,70.0,70.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,70.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,83.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,329.0,70.0,329.0,47.0,329.0,329.0,329.0,47.0,329.0,70.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,329.0,329.0,329.0,70.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,83.0,83.0,83.0,70.0,83.0,70.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,47.0,329.0,329.0,47.0,329.0,329.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,70.0,329.0,329.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,47.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,329.0,329.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,47.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,329.0,329.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,329.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,47.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,70.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,329.0,329.0,329.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,83.0,83.0,83.0,329.0,83.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,329.0,83.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,47.0,47.0,70.0,70.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,70.0,329.0,83.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,70.0,329.0,329.0,47.0,329.0,329.0,83.0,70.0,70.0,83.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,83.0,329.0,329.0,83.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,329.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,329.0,329.0,329.0,329.0,70.0,47.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,329.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,70.0,329.0,70.0,329.0,329.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,70.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,70.0,329.0,329.0,329.0,47.0,329.0,47.0,329.0,70.0,70.0,70.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,329.0,70.0,70.0,47.0,329.0,329.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,329.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,70.0,70.0,47.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,329.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,47.0,70.0,70.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,47.0,329.0,70.0,329.0,329.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,329.0,329.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,70.0,329.0,70.0,47.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,47.0,70.0,47.0,329.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,70.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,47.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,47.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,47.0,329.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,70.0,329.0,329.0,70.0,329.0,329.0,83.0,329.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,70.0,47.0,329.0,329.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,47.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,70.0,47.0,329.0,329.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,329.0,329.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,47.0,329.0,70.0,70.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,47.0,47.0,47.0,47.0,70.0,47.0,70.0,47.0,47.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,47.0,70.0,47.0,47.0,329.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,47.0,47.0,329.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,47.0,47.0,47.0,47.0,70.0,47.0,47.0,47.0,47.0,47.0,70.0,47.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,47.0,47.0,329.0,70.0,70.0,70.0,47.0,329.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,70.0,70.0,47.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,47.0,70.0,70.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,47.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,70.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,70.0,70.0,70.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,70.0,329.0,329.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,70.0,329.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,47.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,47.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,329.0,329.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,83.0,329.0,329.0,83.0,83.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,83.0,329.0,329.0,83.0,329.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,329.0,329.0,329.0,70.0,329.0,47.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,70.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,47.0,329.0,70.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,70.0,329.0,329.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,83.0,70.0,83.0,83.0,83.0,329.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,329.0,83.0,83.0,83.0,70.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,329.0,329.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,329.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,83.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,70.0,70.0,70.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,47.0,329.0,329.0,47.0,329.0,329.0,70.0,70.0,329.0,83.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,83.0,70.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,47.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,329.0,47.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,47.0,329.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,47.0,329.0,70.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,83.0,83.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,83.0,70.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,70.0,70.0,83.0,70.0,83.0,83.0,329.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,329.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,329.0,329.0,83.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,329.0,329.0,329.0,329.0,83.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,329.0,329.0,329.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,83.0,70.0,83.0,83.0,329.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,329.0,329.0,83.0,70.0,83.0,83.0,329.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,83.0,83.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,329.0,329.0,83.0,70.0,70.0,83.0,329.0,83.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,329.0,70.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,83.0,329.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,329.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,329.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,329.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,70.0,329.0,329.0,83.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,70.0,329.0,329.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,70.0,47.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,47.0,329.0,329.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,70.0,70.0,329.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,329.0,329.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,329.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,70.0,70.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,70.0,83.0,83.0,83.0,329.0,329.0,83.0,329.0,329.0,70.0,329.0,70.0,329.0,329.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,47.0,329.0,329.0,70.0,70.0,70.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,70.0,83.0,329.0,83.0,83.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,47.0,70.0,329.0,329.0,329.0,70.0,70.0,47.0,329.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,70.0,47.0,70.0,47.0,329.0,70.0,329.0,329.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,47.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,70.0,70.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,70.0,47.0,70.0,47.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,83.0,329.0,83.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,329.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,47.0,70.0,329.0,70.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,70.0,47.0,47.0,329.0,329.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,70.0,70.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,47.0,70.0,47.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,47.0,47.0,47.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,47.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,47.0,47.0,70.0,47.0,70.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,47.0,47.0,47.0,47.0,70.0,70.0,70.0,70.0,47.0,70.0,47.0,47.0,70.0,70.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,47.0,47.0,70.0,47.0,47.0,47.0,47.0,47.0,70.0,329.0,47.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,47.0,47.0,70.0,47.0,70.0,70.0,47.0,70.0,47.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,47.0,70.0,70.0,70.0,70.0,70.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,47.0,329.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,47.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,47.0,47.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,47.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,47.0,329.0,70.0,47.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,70.0,70.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,47.0,329.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,329.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,329.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,47.0,70.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,329.0,329.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,83.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,47.0,329.0,47.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,329.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,47.0,70.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,47.0,329.0,329.0,47.0,329.0,329.0,70.0,70.0,70.0,329.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,70.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,83.0,70.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,329.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,329.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,83.0,70.0,83.0,83.0,70.0,83.0,83.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,83.0,83.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,83.0,329.0,329.0,83.0,83.0,70.0,83.0,83.0,70.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,47.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,70.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,329.0,329.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,329.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,83.0,329.0,329.0,329.0,329.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,329.0,329.0,329.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,70.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,70.0,329.0,329.0,329.0,47.0,329.0,70.0,329.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,47.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,329.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,70.0,47.0,70.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,47.0,329.0,329.0,83.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,70.0,329.0,329.0,47.0,47.0,329.0,329.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,329.0,329.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,47.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,70.0,329.0,329.0,329.0,47.0,47.0,329.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,83.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,329.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,47.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,329.0,70.0,329.0,47.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,83.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,47.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,83.0,329.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,83.0,329.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,47.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,329.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,83.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,47.0,329.0,70.0,329.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,329.0,329.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,47.0,329.0,70.0,329.0,329.0,83.0,83.0,83.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,329.0,47.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,83.0,329.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,70.0,70.0,70.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,47.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,47.0,70.0,47.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,47.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,47.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,47.0,47.0,70.0,47.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,70.0,70.0,47.0,70.0,70.0,70.0,47.0,47.0,47.0,47.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,47.0,47.0,47.0,47.0,47.0,70.0,70.0,47.0,47.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,47.0,47.0,47.0,47.0,47.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,70.0,70.0,70.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,47.0,47.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,47.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,70.0,47.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,70.0,70.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,47.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,329.0,47.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,47.0,329.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,47.0,329.0,70.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,70.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,329.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,329.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,329.0,329.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,83.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,329.0,329.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,83.0,329.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,70.0,47.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,70.0,70.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,329.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,329.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,47.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,83.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,329.0,47.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,70.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,329.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,329.0,83.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,70.0,70.0,329.0,329.0,83.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,47.0,329.0,329.0,329.0,47.0,47.0,70.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,47.0,329.0,329.0,329.0,47.0,47.0,70.0,70.0,70.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,329.0,329.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,83.0,329.0,329.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,70.0,70.0,329.0,329.0,70.0,83.0,83.0,70.0,83.0,329.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,329.0,329.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,70.0,329.0,83.0,70.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,83.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,83.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,329.0,70.0,70.0,47.0,329.0,329.0,47.0,329.0,329.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,329.0,83.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,329.0,83.0,83.0,70.0,70.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,70.0,329.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,329.0,329.0,329.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,70.0,329.0,329.0,70.0,329.0,329.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,70.0,329.0,329.0,329.0,70.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,70.0,329.0,83.0,83.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,329.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,70.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,47.0,329.0,47.0,329.0,329.0,329.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,47.0,329.0,70.0,329.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,47.0,329.0,70.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,329.0,329.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,329.0,329.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,47.0,47.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,83.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,329.0,329.0,70.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,329.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,329.0,329.0,70.0,329.0,329.0,83.0,83.0,329.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,70.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,83.0,83.0,329.0,329.0,83.0,83.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,70.0,70.0,329.0,329.0,70.0,329.0,329.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,47.0,70.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,70.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,329.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,47.0,47.0,329.0,47.0,47.0,70.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,47.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,47.0,47.0,47.0,47.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,70.0,47.0,47.0,47.0,47.0,70.0,47.0,70.0,70.0,47.0,70.0,47.0,47.0,47.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,47.0,70.0,70.0,47.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,47.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,47.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,47.0,47.0,329.0,329.0,47.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,70.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,47.0,47.0,329.0,329.0,70.0,329.0,329.0,329.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,47.0,70.0,329.0,70.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,47.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,329.0,329.0,70.0,329.0,329.0,329.0,47.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,47.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,329.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,47.0,329.0,70.0,70.0,329.0,329.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,329.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,70.0,70.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,70.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,70.0,329.0,70.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,47.0,70.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,329.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,70.0,70.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,329.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,47.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,47.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,329.0,329.0,329.0,70.0,329.0,70.0,70.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,329.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,329.0,47.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,47.0,329.0,329.0,329.0,70.0,329.0,329.0,70.0,70.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,70.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,70.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,70.0,329.0,329.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,83.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,329.0,329.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,329.0,83.0,329.0,329.0,83.0,329.0,329.0,329.0,329.0,329.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,329.0,83.0,83.0,329.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,83.0,83.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,83.0,329.0,329.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,329.0,47.0,329.0,329.0,329.0,47.0,329.0,70.0,329.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,47.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,329.0,329.0,83.0,70.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,47.0,329.0,70.0,329.0,83.0,83.0,70.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,70.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,329.0,83.0,83.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,47.0,70.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,47.0,329.0,329.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,329.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,47.0,329.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,70.0,47.0,47.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,329.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,70.0,70.0,47.0,329.0,70.0,329.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,47.0,329.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,47.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,47.0,70.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,329.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,329.0,70.0,329.0,329.0,329.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,83.0,329.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,47.0,70.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,47.0,70.0,70.0,47.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,47.0,329.0,329.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,47.0,329.0,329.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,70.0,70.0,70.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,70.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,329.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,47.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,70.0,70.0,47.0,47.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,70.0,329.0,47.0,70.0,47.0,47.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,47.0,47.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,70.0,47.0,47.0,70.0,70.0,47.0,47.0,47.0,47.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,47.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,47.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,70.0,329.0,47.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,70.0,47.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,329.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,47.0,329.0,70.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,70.0,329.0,70.0,329.0,329.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,329.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,47.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,329.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,70.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,329.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,329.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,329.0,47.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,329.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,70.0,329.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,329.0,329.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,329.0,47.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,70.0,70.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,47.0,329.0,329.0,329.0,47.0,47.0,70.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,83.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,47.0,329.0,329.0,329.0,47.0,329.0,70.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,329.0,329.0,83.0,83.0,83.0,70.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,70.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,329.0,70.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,47.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,70.0,329.0,70.0,70.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,329.0,329.0,329.0,83.0,83.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,329.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,83.0,70.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,70.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,83.0,83.0,329.0,329.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,83.0,329.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,329.0,329.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,83.0,83.0,329.0,329.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,83.0,329.0,329.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,329.0,83.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,83.0,83.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,47.0,329.0,329.0,47.0,70.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,47.0,329.0,329.0,329.0,47.0,329.0,329.0,83.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,47.0,329.0,70.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,47.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,83.0,329.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,47.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,70.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,329.0,70.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,70.0,329.0,83.0,83.0,70.0,83.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,47.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,47.0,47.0,47.0,329.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,47.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,329.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,47.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,47.0,70.0,329.0,70.0,70.0,329.0,70.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,70.0,329.0,329.0,70.0,329.0,329.0,329.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,70.0,47.0,47.0,329.0,70.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,70.0,70.0,329.0,329.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,47.0,70.0,47.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,47.0,329.0,329.0,329.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,329.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,47.0,47.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,47.0,47.0,47.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,70.0,70.0,70.0,47.0,47.0,47.0,47.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,47.0,47.0,329.0,47.0,47.0,329.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,47.0,70.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,47.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,47.0,70.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,329.0,70.0,70.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,70.0,47.0,329.0,70.0,329.0,329.0,83.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,329.0,329.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,70.0,329.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,47.0,329.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,70.0,329.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,329.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,70.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,70.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,70.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,70.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,70.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,47.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,329.0,47.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,70.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,70.0,70.0,70.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,329.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,83.0,329.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,329.0,83.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,329.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,83.0,70.0,83.0,83.0,83.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,329.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,47.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,47.0,329.0,329.0,329.0,47.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,329.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,329.0,70.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,70.0,70.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,47.0,329.0,329.0,70.0,70.0,329.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,70.0,329.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,70.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,329.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,47.0,70.0,47.0,329.0,329.0,70.0,329.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,47.0,47.0,329.0,329.0,329.0,70.0,47.0,70.0,70.0,329.0,70.0,329.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,47.0,70.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,329.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,83.0,329.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,70.0,329.0,329.0,70.0,329.0,329.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,47.0,70.0,329.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,47.0,70.0,70.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,70.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,47.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,47.0,47.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,47.0,47.0,47.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,70.0,47.0,70.0,47.0,47.0,47.0,70.0,47.0,70.0,47.0,70.0,70.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,47.0,47.0,47.0,47.0,47.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,70.0,47.0,70.0,70.0,70.0,47.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,47.0,47.0,47.0,47.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,47.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,47.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,47.0,70.0,329.0,47.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,70.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,70.0,329.0,329.0,70.0,329.0,329.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,70.0,329.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,329.0,329.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,47.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,329.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,70.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,329.0,70.0,329.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,70.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,329.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,329.0,83.0,83.0,70.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,329.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,47.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,70.0,329.0,329.0,329.0,47.0,47.0,329.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,329.0,329.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,47.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,83.0,70.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,329.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,329.0,83.0,70.0,70.0,70.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,83.0,83.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,70.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,70.0,83.0,329.0,83.0,70.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,83.0,70.0,83.0,329.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,329.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,329.0,329.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,47.0,329.0,329.0,329.0,47.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,70.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,47.0,47.0,329.0,329.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,47.0,70.0,329.0,329.0,329.0,47.0,70.0,70.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,329.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,70.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,329.0,47.0,329.0,329.0,329.0,70.0,47.0,329.0,70.0,70.0,70.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,70.0,70.0,329.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,70.0,70.0,329.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,70.0,47.0,329.0,329.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,70.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,47.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,329.0,70.0,70.0,329.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,83.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,70.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,47.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,47.0,329.0,70.0,329.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,47.0,70.0,329.0,70.0,70.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,329.0,83.0,83.0,70.0,83.0,329.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,47.0,70.0,329.0,47.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,47.0,47.0,329.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,47.0,70.0,329.0,329.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,329.0,70.0,70.0,329.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,70.0,70.0,70.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,83.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,70.0,70.0,70.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,47.0,47.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,47.0,47.0,47.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,47.0,47.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,70.0,47.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,47.0,47.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,329.0,329.0,47.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,329.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,47.0,70.0,47.0,47.0,70.0,70.0,70.0,47.0,70.0,70.0,70.0,47.0,47.0,47.0,70.0,70.0,70.0,47.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,47.0,47.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,47.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,70.0,70.0,47.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,329.0,70.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,70.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,83.0,329.0,329.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,70.0,70.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,47.0,329.0,70.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,329.0,70.0,70.0,329.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,47.0,329.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,70.0,329.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,329.0,329.0,83.0,329.0,83.0,83.0,70.0,83.0,329.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,47.0,329.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,70.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,70.0,83.0,83.0,70.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,329.0,47.0,70.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,329.0,83.0,70.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,70.0,329.0,83.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,83.0,83.0,70.0,83.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,329.0,329.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,70.0,329.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,70.0,70.0,329.0,329.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,329.0,83.0,329.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,70.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,329.0,83.0,83.0,329.0,83.0,329.0,329.0,83.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,329.0,329.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,83.0,329.0,329.0,329.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,47.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,70.0,329.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,47.0,329.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,70.0,329.0,70.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,329.0,83.0,329.0,329.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,47.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,47.0,329.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,329.0,47.0,329.0,329.0,329.0,47.0,329.0,70.0,83.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,70.0,70.0,329.0,83.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,47.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,329.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,83.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,329.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,70.0,70.0,70.0,329.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,70.0,70.0,83.0,329.0,83.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,329.0,70.0,70.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,70.0,47.0,47.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,70.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,70.0,329.0,329.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,70.0,70.0,83.0,83.0,83.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,329.0,329.0,70.0,70.0,70.0,70.0,70.0,70.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,70.0,329.0,70.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,83.0,70.0,70.0,83.0,83.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,70.0,329.0,329.0,70.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,70.0,70.0,83.0,329.0,83.0,70.0,83.0,83.0,83.0,83.0,70.0,83.0,83.0,83.0,70.0,83.0,83.0,329.0,83.0,70.0,70.0,70.0,70.0,70.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,47.0,329.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,70.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,329.0,83.0,70.0,70.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,70.0,47.0,329.0,329.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,70.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,329.0,47.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,329.0,70.0,70.0,329.0,329.0,70.0,70.0,70.0,329.0,83.0,83.0,83.0,83.0,83.0,329.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,329.0,70.0,70.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,83.0,83.0,83.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,47.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,329.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,329.0,70.0,47.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,70.0,70.0,70.0,70.0,47.0,70.0,70.0,70.0,70.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,70.0,70.0,47.0,70.0,47.0,70.0,47.0,70.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,329.0,47.0,70.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,47.0,329.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,329.0,47.0,329.0,329.0,329.0,329.0,329.0,47.0,47.0,47.0,47.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0,329.0],"colorbar":{"title":"T2","ticksuffix":" ms"},"cmin":0.0,"colorscale":[[0.0,"rgb(10,5,27)"],[0.00041684035014589413,"rgb(10,7,38)"],[0.0008336807002917883,"rgb(10,7,41)"],[0.0012505210504376823,"rgb(10,8,44)"],[0.0016673614005835765,"rgb(10,8,46)"],[0.0020842017507294707,"rgb(10,8,48)"],[0.0025010421008753647,"rgb(10,8,50)"],[0.0029178824510212586,"rgb(10,8,51)"],[0.003334722801167153,"rgb(10,8,53)"],[0.003751563151313047,"rgb(10,8,54)"],[0.004168403501458941,"rgb(10,8,56)"],[0.004585243851604835,"rgb(10,8,57)"],[0.005002084201750729,"rgb(10,8,58)"],[0.005418924551896623,"rgb(10,8,59)"],[0.005835764902042517,"rgb(10,8,61)"],[0.006252605252188412,"rgb(10,8,62)"],[0.006669445602334306,"rgb(10,8,63)"],[0.0070862859524802,"rgb(10,8,64)"],[0.007503126302626094,"rgb(11,8,65)"],[0.007919966652771988,"rgb(11,8,66)"],[0.008336807002917883,"rgb(11,8,67)"],[0.008753647353063776,"rgb(11,8,68)"],[0.00917048770320967,"rgb(11,8,69)"],[0.009587328053355566,"rgb(11,8,70)"],[0.010004168403501459,"rgb(11,8,70)"],[0.010421008753647354,"rgb(11,8,71)"],[0.010837849103793247,"rgb(11,8,72)"],[0.011254689453939141,"rgb(11,8,73)"],[0.011671529804085035,"rgb(11,7,74)"],[0.01208837015423093,"rgb(11,7,75)"],[0.012505210504376824,"rgb(11,7,75)"],[0.012922050854522717,"rgb(11,7,76)"],[0.013338891204668612,"rgb(11,7,77)"],[0.013755731554814505,"rgb(11,7,78)"],[0.0141725719049604,"rgb(11,7,79)"],[0.014589412255106295,"rgb(11,8,79)"],[0.015006252605252188,"rgb(11,8,80)"],[0.015423092955398083,"rgb(11,8,81)"],[0.015839933305543976,"rgb(11,8,81)"],[0.01625677365568987,"rgb(11,8,82)"],[0.016673614005835766,"rgb(11,8,83)"],[0.01709045435598166,"rgb(11,8,83)"],[0.017507294706127552,"rgb(11,8,84)"],[0.01792413505627345,"rgb(11,8,85)"],[0.01834097540641934,"rgb(12,8,85)"],[0.018757815756565235,"rgb(12,8,86)"],[0.01917465610671113,"rgb(12,8,87)"],[0.019591496456857024,"rgb(12,8,87)"],[0.020008336807002917,"rgb(12,8,88)"],[0.02042517715714881,"rgb(12,8,89)"],[0.020842017507294707,"rgb(12,8,89)"],[0.0212588578574406,"rgb(12,8,90)"],[0.021675698207586493,"rgb(12,8,90)"],[0.02209253855773239,"rgb(12,8,91)"],[0.022509378907878283,"rgb(12,8,91)"],[0.022926219258024176,"rgb(12,8,92)"],[0.02334305960817007,"rgb(12,8,93)"],[0.023759899958315966,"rgb(12,8,93)"],[0.02417674030846186,"rgb(12,8,94)"],[0.024593580658607752,"rgb(12,8,94)"],[0.02501042100875365,"rgb(12,8,95)"],[0.02542726135889954,"rgb(12,8,95)"],[0.025844101709045435,"rgb(12,8,96)"],[0.02626094205919133,"rgb(12,8,96)"],[0.026677782409337224,"rgb(12,8,97)"],[0.027094622759483118,"rgb(12,8,97)"],[0.02751146310962901,"rgb(12,8,98)"],[0.027928303459774907,"rgb(12,8,99)"],[0.0283451438099208,"rgb(12,8,99)"],[0.028761984160066693,"rgb(12,8,100)"],[0.02917882451021259,"rgb(12,8,100)"],[0.029595664860358483,"rgb(12,8,100)"],[0.030012505210504376,"rgb(12,8,101)"],[0.03042934556065027,"rgb(12,8,101)"],[0.030846185910796166,"rgb(12,8,102)"],[0.03126302626094206,"rgb(12,8,102)"],[0.03167986661108795,"rgb(12,8,103)"],[0.032096706961233845,"rgb(11,8,103)"],[0.03251354731137974,"rgb(11,8,104)"],[0.03293038766152564,"rgb(11,9,104)"],[0.03334722801167153,"rgb(11,9,105)"],[0.033764068361817424,"rgb(11,9,105)"],[0.03418090871196332,"rgb(11,9,106)"],[0.03459774906210921,"rgb(11,9,106)"],[0.035014589412255104,"rgb(11,9,107)"],[0.035431429762401004,"rgb(11,9,107)"],[0.0358482701125469,"rgb(11,9,107)"],[0.03626511046269279,"rgb(11,9,108)"],[0.03668195081283868,"rgb(11,9,108)"],[0.037098791162984576,"rgb(11,9,109)"],[0.03751563151313047,"rgb(11,9,109)"],[0.03793247186327636,"rgb(11,9,110)"],[0.03834931221342226,"rgb(11,9,110)"],[0.038766152563568156,"rgb(11,9,110)"],[0.03918299291371405,"rgb(11,9,111)"],[0.03959983326385994,"rgb(11,9,111)"],[0.040016673614005835,"rgb(11,9,112)"],[0.04043351396415173,"rgb(11,9,112)"],[0.04085035431429762,"rgb(11,9,112)"],[0.04126719466444352,"rgb(11,10,113)"],[0.041684035014589414,"rgb(11,10,113)"],[0.04210087536473531,"rgb(11,10,114)"],[0.0425177157148812,"rgb(11,10,114)"],[0.042934556065027094,"rgb(11,10,114)"],[0.04335139641517299,"rgb(11,10,115)"],[0.04376823676531888,"rgb(11,10,115)"],[0.04418507711546478,"rgb(11,10,115)"],[0.04460191746561067,"rgb(11,10,116)"],[0.045018757815756566,"rgb(11,10,116)"],[0.04543559816590246,"rgb(10,10,117)"],[0.04585243851604835,"rgb(10,10,117)"],[0.046269278866194245,"rgb(10,10,117)"],[0.04668611921634014,"rgb(10,10,118)"],[0.04710295956648604,"rgb(10,10,118)"],[0.04751979991663193,"rgb(10,11,118)"],[0.047936640266777825,"rgb(10,11,119)"],[0.04835348061692372,"rgb(10,11,119)"],[0.04877032096706961,"rgb(10,11,119)"],[0.049187161317215504,"rgb(10,11,120)"],[0.049604001667361404,"rgb(10,11,120)"],[0.0500208420175073,"rgb(10,11,120)"],[0.05043768236765319,"rgb(10,11,121)"],[0.05085452271779908,"rgb(10,11,121)"],[0.051271363067944976,"rgb(10,11,121)"],[0.05168820341809087,"rgb(10,11,122)"],[0.05210504376823676,"rgb(10,11,122)"],[0.05252188411838266,"rgb(10,11,122)"],[0.052938724468528556,"rgb(10,11,123)"],[0.05335556481867445,"rgb(10,12,123)"],[0.05377240516882034,"rgb(10,12,123)"],[0.054189245518966235,"rgb(9,12,124)"],[0.05460608586911213,"rgb(9,12,124)"],[0.05502292621925802,"rgb(9,12,124)"],[0.05543976656940392,"rgb(9,12,125)"],[0.055856606919549814,"rgb(9,12,125)"],[0.05627344726969571,"rgb(9,12,125)"],[0.0566902876198416,"rgb(9,12,126)"],[0.057107127969987494,"rgb(9,12,126)"],[0.05752396832013339,"rgb(9,12,126)"],[0.05794080867027928,"rgb(9,12,126)"],[0.05835764902042518,"rgb(9,13,127)"],[0.05877448937057107,"rgb(9,13,127)"],[0.059191329720716966,"rgb(9,13,127)"],[0.05960817007086286,"rgb(9,13,128)"],[0.06002501042100875,"rgb(9,13,128)"],[0.060441850771154645,"rgb(9,13,128)"],[0.06085869112130054,"rgb(9,13,129)"],[0.06127553147144644,"rgb(9,13,129)"],[0.06169237182159233,"rgb(8,13,129)"],[0.062109212171738225,"rgb(8,13,129)"],[0.06252605252188412,"rgb(8,13,130)"],[0.06294289287203002,"rgb(8,14,130)"],[0.0633597332221759,"rgb(8,14,130)"],[0.0637765735723218,"rgb(8,14,130)"],[0.06419341392246769,"rgb(8,14,131)"],[0.06461025427261359,"rgb(8,14,131)"],[0.06502709462275948,"rgb(8,14,131)"],[0.06544393497290538,"rgb(8,14,132)"],[0.06586077532305128,"rgb(8,14,132)"],[0.06627761567319716,"rgb(8,14,132)"],[0.06669445602334306,"rgb(8,14,132)"],[0.06711129637348895,"rgb(8,15,133)"],[0.06752813672363485,"rgb(8,15,133)"],[0.06794497707378074,"rgb(8,15,133)"],[0.06836181742392664,"rgb(8,15,133)"],[0.06877865777407254,"rgb(7,15,134)"],[0.06919549812421842,"rgb(7,15,134)"],[0.06961233847436432,"rgb(7,15,134)"],[0.07002917882451021,"rgb(7,15,134)"],[0.07044601917465611,"rgb(7,15,135)"],[0.07086285952480201,"rgb(7,15,135)"],[0.0712796998749479,"rgb(7,16,135)"],[0.0716965402250938,"rgb(7,16,135)"],[0.07211338057523968,"rgb(7,16,136)"],[0.07253022092538558,"rgb(7,16,136)"],[0.07294706127553147,"rgb(7,16,136)"],[0.07336390162567737,"rgb(7,16,136)"],[0.07378074197582327,"rgb(7,16,137)"],[0.07419758232596915,"rgb(7,16,137)"],[0.07461442267611505,"rgb(7,16,137)"],[0.07503126302626094,"rgb(7,17,137)"],[0.07544810337640684,"rgb(6,17,138)"],[0.07586494372655272,"rgb(6,17,138)"],[0.07628178407669862,"rgb(6,17,138)"],[0.07669862442684452,"rgb(6,17,138)"],[0.07711546477699041,"rgb(6,17,138)"],[0.07753230512713631,"rgb(6,17,139)"],[0.0779491454772822,"rgb(6,17,139)"],[0.0783659858274281,"rgb(6,17,139)"],[0.07878282617757398,"rgb(6,18,139)"],[0.07919966652771988,"rgb(6,18,140)"],[0.07961650687786578,"rgb(6,18,140)"],[0.08003334722801167,"rgb(6,18,140)"],[0.08045018757815757,"rgb(6,18,140)"],[0.08086702792830346,"rgb(6,18,140)"],[0.08128386827844936,"rgb(6,18,141)"],[0.08170070862859524,"rgb(6,18,141)"],[0.08211754897874114,"rgb(5,19,141)"],[0.08253438932888704,"rgb(5,19,141)"],[0.08295122967903293,"rgb(5,19,142)"],[0.08336807002917883,"rgb(5,19,142)"],[0.08378491037932471,"rgb(5,19,142)"],[0.08420175072947061,"rgb(5,19,142)"],[0.0846185910796165,"rgb(5,19,142)"],[0.0850354314297624,"rgb(5,19,143)"],[0.0854522717799083,"rgb(5,20,143)"],[0.08586911213005419,"rgb(5,20,143)"],[0.08628595248020009,"rgb(5,20,143)"],[0.08670279283034597,"rgb(5,20,143)"],[0.08711963318049187,"rgb(5,20,144)"],[0.08753647353063776,"rgb(5,20,144)"],[0.08795331388078366,"rgb(5,20,144)"],[0.08837015423092956,"rgb(5,20,144)"],[0.08878699458107545,"rgb(4,21,144)"],[0.08920383493122135,"rgb(4,21,145)"],[0.08962067528136723,"rgb(4,21,145)"],[0.09003751563151313,"rgb(4,21,145)"],[0.09045435598165902,"rgb(4,21,145)"],[0.09087119633180492,"rgb(4,21,145)"],[0.09128803668195082,"rgb(4,21,145)"],[0.0917048770320967,"rgb(4,22,146)"],[0.0921217173822426,"rgb(4,22,146)"],[0.09253855773238849,"rgb(4,22,146)"],[0.09295539808253439,"rgb(4,22,146)"],[0.09337223843268028,"rgb(4,22,146)"],[0.09378907878282618,"rgb(4,22,147)"],[0.09420591913297208,"rgb(4,22,147)"],[0.09462275948311796,"rgb(4,22,147)"],[0.09503959983326386,"rgb(4,23,147)"],[0.09545644018340975,"rgb(4,23,147)"],[0.09587328053355565,"rgb(3,23,147)"],[0.09629012088370154,"rgb(3,23,148)"],[0.09670696123384744,"rgb(3,23,148)"],[0.09712380158399334,"rgb(3,23,148)"],[0.09754064193413922,"rgb(3,23,148)"],[0.09795748228428512,"rgb(3,24,148)"],[0.09837432263443101,"rgb(3,24,149)"],[0.09879116298457691,"rgb(3,24,149)"],[0.09920800333472281,"rgb(3,24,149)"],[0.0996248436848687,"rgb(3,24,149)"],[0.1000416840350146,"rgb(3,24,149)"],[0.10045852438516048,"rgb(3,24,149)"],[0.10087536473530638,"rgb(3,25,150)"],[0.10129220508545227,"rgb(3,25,150)"],[0.10170904543559817,"rgb(3,25,150)"],[0.10212588578574407,"rgb(3,25,150)"],[0.10254272613588995,"rgb(3,25,150)"],[0.10295956648603585,"rgb(3,25,150)"],[0.10337640683618174,"rgb(3,25,150)"],[0.10379324718632764,"rgb(3,26,151)"],[0.10421008753647353,"rgb(2,26,151)"],[0.10462692788661943,"rgb(2,26,151)"],[0.10504376823676533,"rgb(2,26,151)"],[0.10546060858691121,"rgb(2,26,151)"],[0.10587744893705711,"rgb(2,26,151)"],[0.106294289287203,"rgb(2,27,152)"],[0.1067111296373489,"rgb(2,27,152)"],[0.10712796998749478,"rgb(2,27,152)"],[0.10754481033764068,"rgb(2,27,152)"],[0.10796165068778658,"rgb(2,27,152)"],[0.10837849103793247,"rgb(2,27,152)"],[0.10879533138807837,"rgb(2,27,152)"],[0.10921217173822426,"rgb(2,28,153)"],[0.10962901208837016,"rgb(2,28,153)"],[0.11004585243851604,"rgb(2,28,153)"],[0.11046269278866194,"rgb(2,28,153)"],[0.11087953313880784,"rgb(2,28,153)"],[0.11129637348895373,"rgb(2,28,153)"],[0.11171321383909963,"rgb(2,29,153)"],[0.11213005418924551,"rgb(2,29,154)"],[0.11254689453939141,"rgb(2,29,154)"],[0.1129637348895373,"rgb(2,29,154)"],[0.1133805752396832,"rgb(1,29,154)"],[0.1137974155898291,"rgb(1,29,154)"],[0.11421425593997499,"rgb(1,29,154)"],[0.11463109629012089,"rgb(1,30,154)"],[0.11504793664026677,"rgb(1,30,155)"],[0.11546477699041267,"rgb(1,30,155)"],[0.11588161734055856,"rgb(1,30,155)"],[0.11629845769070446,"rgb(1,30,155)"],[0.11671529804085036,"rgb(1,30,155)"],[0.11713213839099625,"rgb(1,31,155)"],[0.11754897874114215,"rgb(1,31,155)"],[0.11796581909128803,"rgb(1,31,156)"],[0.11838265944143393,"rgb(1,31,156)"],[0.11879949979157982,"rgb(1,31,156)"],[0.11921634014172572,"rgb(1,31,156)"],[0.11963318049187162,"rgb(1,32,156)"],[0.1200500208420175,"rgb(1,32,156)"],[0.1204668611921634,"rgb(1,32,156)"],[0.12088370154230929,"rgb(1,32,156)"],[0.12130054189245519,"rgb(1,32,157)"],[0.12171738224260108,"rgb(1,32,157)"],[0.12213422259274698,"rgb(1,33,157)"],[0.12255106294289288,"rgb(1,33,157)"],[0.12296790329303876,"rgb(1,33,157)"],[0.12338474364318466,"rgb(1,33,157)"],[0.12380158399333055,"rgb(1,33,157)"],[0.12421842434347645,"rgb(1,33,157)"],[0.12463526469362234,"rgb(1,34,158)"],[0.12505210504376824,"rgb(1,34,158)"],[0.12546894539391412,"rgb(1,34,158)"],[0.12588578574406004,"rgb(1,34,158)"],[0.12630262609420592,"rgb(0,34,158)"],[0.1267194664443518,"rgb(0,34,158)"],[0.1271363067944977,"rgb(0,35,158)"],[0.1275531471446436,"rgb(0,35,158)"],[0.1279699874947895,"rgb(0,35,158)"],[0.12838682784493538,"rgb(0,35,159)"],[0.1288036681950813,"rgb(0,35,159)"],[0.12922050854522718,"rgb(0,35,159)"],[0.12963734889537307,"rgb(0,36,159)"],[0.13005418924551895,"rgb(0,36,159)"],[0.13047102959566487,"rgb(0,36,159)"],[0.13088786994581075,"rgb(0,36,159)"],[0.13130471029595664,"rgb(0,36,159)"],[0.13172155064610255,"rgb(0,36,159)"],[0.13213839099624844,"rgb(0,37,160)"],[0.13255523134639433,"rgb(0,37,160)"],[0.1329720716965402,"rgb(0,37,160)"],[0.13338891204668613,"rgb(0,37,160)"],[0.133805752396832,"rgb(0,37,160)"],[0.1342225927469779,"rgb(0,37,160)"],[0.1346394330971238,"rgb(0,38,160)"],[0.1350562734472697,"rgb(0,38,160)"],[0.13547311379741558,"rgb(0,38,160)"],[0.13588995414756147,"rgb(0,38,161)"],[0.13630679449770738,"rgb(0,38,161)"],[0.13672363484785327,"rgb(0,38,161)"],[0.13714047519799916,"rgb(0,39,161)"],[0.13755731554814507,"rgb(0,39,161)"],[0.13797415589829096,"rgb(0,39,161)"],[0.13839099624843684,"rgb(0,39,161)"],[0.13880783659858273,"rgb(0,39,161)"],[0.13922467694872864,"rgb(0,39,161)"],[0.13964151729887453,"rgb(0,40,161)"],[0.14005835764902042,"rgb(0,40,162)"],[0.14047519799916633,"rgb(0,40,162)"],[0.14089203834931222,"rgb(0,40,162)"],[0.1413088786994581,"rgb(0,40,162)"],[0.14172571904960402,"rgb(0,41,162)"],[0.1421425593997499,"rgb(0,41,162)"],[0.1425593997498958,"rgb(0,41,162)"],[0.14297624010004167,"rgb(0,41,162)"],[0.1433930804501876,"rgb(0,41,162)"],[0.14380992080033347,"rgb(0,41,162)"],[0.14422676115047936,"rgb(0,42,162)"],[0.14464360150062527,"rgb(0,42,163)"],[0.14506044185077116,"rgb(0,42,163)"],[0.14547728220091705,"rgb(0,42,163)"],[0.14589412255106293,"rgb(0,42,163)"],[0.14631096290120885,"rgb(0,42,163)"],[0.14672780325135473,"rgb(0,43,163)"],[0.14714464360150062,"rgb(0,43,163)"],[0.14756148395164653,"rgb(0,43,163)"],[0.14797832430179242,"rgb(0,43,163)"],[0.1483951646519383,"rgb(0,43,163)"],[0.1488120050020842,"rgb(0,44,163)"],[0.1492288453522301,"rgb(0,44,164)"],[0.149645685702376,"rgb(0,44,164)"],[0.15006252605252188,"rgb(0,44,164)"],[0.1504793664026678,"rgb(0,44,164)"],[0.15089620675281368,"rgb(0,44,164)"],[0.15131304710295956,"rgb(0,45,164)"],[0.15172988745310545,"rgb(0,45,164)"],[0.15214672780325136,"rgb(0,45,164)"],[0.15256356815339725,"rgb(0,45,164)"],[0.15298040850354314,"rgb(0,45,164)"],[0.15339724885368905,"rgb(0,46,164)"],[0.15381408920383494,"rgb(0,46,164)"],[0.15423092955398082,"rgb(0,46,164)"],[0.1546477699041267,"rgb(0,46,165)"],[0.15506461025427262,"rgb(0,46,165)"],[0.1554814506044185,"rgb(0,46,165)"],[0.1558982909545644,"rgb(0,47,165)"],[0.1563151313047103,"rgb(0,47,165)"],[0.1567319716548562,"rgb(0,47,165)"],[0.15714881200500208,"rgb(0,47,165)"],[0.15756565235514797,"rgb(0,47,165)"],[0.15798249270529388,"rgb(0,47,165)"],[0.15839933305543977,"rgb(0,48,165)"],[0.15881617340558565,"rgb(0,48,165)"],[0.15923301375573157,"rgb(0,48,165)"],[0.15964985410587745,"rgb(0,48,165)"],[0.16006669445602334,"rgb(0,48,166)"],[0.16048353480616923,"rgb(0,49,166)"],[0.16090037515631514,"rgb(0,49,166)"],[0.16131721550646103,"rgb(0,49,166)"],[0.1617340558566069,"rgb(0,49,166)"],[0.16215089620675283,"rgb(0,49,166)"],[0.1625677365568987,"rgb(0,49,166)"],[0.1629845769070446,"rgb(0,50,166)"],[0.16340141725719048,"rgb(0,50,166)"],[0.1638182576073364,"rgb(0,50,166)"],[0.16423509795748228,"rgb(0,50,166)"],[0.16465193830762817,"rgb(0,50,166)"],[0.16506877865777408,"rgb(0,51,166)"],[0.16548561900791997,"rgb(0,51,166)"],[0.16590245935806586,"rgb(0,51,167)"],[0.16631929970821174,"rgb(0,51,167)"],[0.16673614005835766,"rgb(0,51,167)"],[0.16715298040850354,"rgb(0,51,167)"],[0.16756982075864943,"rgb(0,52,167)"],[0.16798666110879534,"rgb(0,52,167)"],[0.16840350145894123,"rgb(0,52,167)"],[0.16882034180908712,"rgb(0,52,167)"],[0.169237182159233,"rgb(0,52,167)"],[0.16965402250937892,"rgb(0,53,167)"],[0.1700708628595248,"rgb(0,53,167)"],[0.1704877032096707,"rgb(0,53,167)"],[0.1709045435598166,"rgb(0,53,167)"],[0.1713213839099625,"rgb(0,53,167)"],[0.17173822426010837,"rgb(0,53,167)"],[0.17215506461025426,"rgb(0,54,167)"],[0.17257190496040017,"rgb(0,54,167)"],[0.17298874531054606,"rgb(0,54,168)"],[0.17340558566069195,"rgb(0,54,168)"],[0.17382242601083786,"rgb(0,54,168)"],[0.17423926636098375,"rgb(0,55,168)"],[0.17465610671112963,"rgb(0,55,168)"],[0.17507294706127552,"rgb(0,55,168)"],[0.17548978741142143,"rgb(0,55,168)"],[0.17590662776156732,"rgb(0,55,168)"],[0.1763234681117132,"rgb(0,55,168)"],[0.17674030846185912,"rgb(0,56,168)"],[0.177157148812005,"rgb(0,56,168)"],[0.1775739891621509,"rgb(0,56,168)"],[0.17799082951229678,"rgb(0,56,168)"],[0.1784076698624427,"rgb(0,56,168)"],[0.17882451021258858,"rgb(0,56,168)"],[0.17924135056273446,"rgb(0,57,168)"],[0.17965819091288038,"rgb(0,57,168)"],[0.18007503126302626,"rgb(0,57,168)"],[0.18049187161317215,"rgb(0,57,169)"],[0.18090871196331804,"rgb(0,57,169)"],[0.18132555231346395,"rgb(0,58,169)"],[0.18174239266360984,"rgb(0,58,169)"],[0.18215923301375572,"rgb(0,58,169)"],[0.18257607336390164,"rgb(0,58,169)"],[0.18299291371404752,"rgb(0,58,169)"],[0.1834097540641934,"rgb(0,58,169)"],[0.1838265944143393,"rgb(0,59,169)"],[0.1842434347644852,"rgb(0,59,169)"],[0.1846602751146311,"rgb(0,59,169)"],[0.18507711546477698,"rgb(0,59,169)"],[0.1854939558149229,"rgb(0,59,169)"],[0.18591079616506878,"rgb(0,60,169)"],[0.18632763651521467,"rgb(0,60,169)"],[0.18674447686536055,"rgb(0,60,169)"],[0.18716131721550647,"rgb(0,60,169)"],[0.18757815756565235,"rgb(0,60,169)"],[0.18799499791579824,"rgb(0,60,169)"],[0.18841183826594415,"rgb(0,61,169)"],[0.18882867861609004,"rgb(0,61,169)"],[0.18924551896623593,"rgb(0,61,170)"],[0.1896623593163818,"rgb(0,61,170)"],[0.19007919966652773,"rgb(0,61,170)"],[0.1904960400166736,"rgb(0,62,170)"],[0.1909128803668195,"rgb(0,62,170)"],[0.1913297207169654,"rgb(0,62,170)"],[0.1917465610671113,"rgb(0,62,170)"],[0.19216340141725718,"rgb(0,62,170)"],[0.19258024176740307,"rgb(0,62,170)"],[0.19299708211754898,"rgb(0,63,170)"],[0.19341392246769487,"rgb(0,63,170)"],[0.19383076281784076,"rgb(0,63,170)"],[0.19424760316798667,"rgb(0,63,170)"],[0.19466444351813256,"rgb(0,63,170)"],[0.19508128386827844,"rgb(0,63,170)"],[0.19549812421842436,"rgb(0,64,170)"],[0.19591496456857024,"rgb(0,64,170)"],[0.19633180491871613,"rgb(0,64,170)"],[0.19674864526886202,"rgb(0,64,170)"],[0.19716548561900793,"rgb(0,64,170)"],[0.19758232596915382,"rgb(0,65,170)"],[0.1979991663192997,"rgb(0,65,170)"],[0.19841600666944562,"rgb(0,65,170)"],[0.1988328470195915,"rgb(0,65,170)"],[0.1992496873697374,"rgb(0,65,170)"],[0.19966652771988327,"rgb(0,65,170)"],[0.2000833680700292,"rgb(0,66,170)"],[0.20050020842017507,"rgb(0,66,171)"],[0.20091704877032096,"rgb(0,66,171)"],[0.20133388912046687,"rgb(0,66,171)"],[0.20175072947061276,"rgb(0,66,171)"],[0.20216756982075865,"rgb(0,66,171)"],[0.20258441017090453,"rgb(0,67,171)"],[0.20300125052105045,"rgb(0,67,171)"],[0.20341809087119633,"rgb(0,67,171)"],[0.20383493122134222,"rgb(0,67,171)"],[0.20425177157148813,"rgb(0,67,171)"],[0.20466861192163402,"rgb(0,68,171)"],[0.2050854522717799,"rgb(0,68,171)"],[0.2055022926219258,"rgb(0,68,171)"],[0.2059191329720717,"rgb(0,68,171)"],[0.2063359733222176,"rgb(0,68,171)"],[0.20675281367236348,"rgb(0,68,171)"],[0.2071696540225094,"rgb(0,69,171)"],[0.20758649437265528,"rgb(0,69,171)"],[0.20800333472280116,"rgb(0,69,171)"],[0.20842017507294705,"rgb(0,69,171)"],[0.20883701542309296,"rgb(0,69,171)"],[0.20925385577323885,"rgb(0,69,171)"],[0.20967069612338474,"rgb(0,70,171)"],[0.21008753647353065,"rgb(0,70,171)"],[0.21050437682367654,"rgb(0,70,171)"],[0.21092121717382242,"rgb(0,70,171)"],[0.2113380575239683,"rgb(0,70,171)"],[0.21175489787411422,"rgb(0,70,171)"],[0.2121717382242601,"rgb(0,71,171)"],[0.212588578574406,"rgb(0,71,171)"],[0.2130054189245519,"rgb(0,71,171)"],[0.2134222592746978,"rgb(0,71,171)"],[0.21383909962484368,"rgb(0,71,171)"],[0.21425593997498957,"rgb(0,72,171)"],[0.21467278032513548,"rgb(0,72,171)"],[0.21508962067528137,"rgb(0,72,171)"],[0.21550646102542725,"rgb(0,72,171)"],[0.21592330137557317,"rgb(0,72,172)"],[0.21634014172571905,"rgb(0,72,172)"],[0.21675698207586494,"rgb(0,73,172)"],[0.21717382242601083,"rgb(0,73,172)"],[0.21759066277615674,"rgb(0,73,172)"],[0.21800750312630263,"rgb(0,73,172)"],[0.2184243434764485,"rgb(0,73,172)"],[0.21884118382659443,"rgb(0,73,172)"],[0.2192580241767403,"rgb(0,74,172)"],[0.2196748645268862,"rgb(0,74,172)"],[0.22009170487703208,"rgb(0,74,172)"],[0.220508545227178,"rgb(0,74,172)"],[0.22092538557732389,"rgb(0,74,172)"],[0.22134222592746977,"rgb(0,74,172)"],[0.22175906627761569,"rgb(0,75,172)"],[0.22217590662776157,"rgb(0,75,172)"],[0.22259274697790746,"rgb(0,75,172)"],[0.22300958732805334,"rgb(0,75,172)"],[0.22342642767819926,"rgb(0,75,172)"],[0.22384326802834514,"rgb(0,75,172)"],[0.22426010837849103,"rgb(0,76,172)"],[0.22467694872863694,"rgb(0,76,172)"],[0.22509378907878283,"rgb(0,76,172)"],[0.22551062942892872,"rgb(0,76,172)"],[0.2259274697790746,"rgb(0,76,172)"],[0.22634431012922052,"rgb(0,76,172)"],[0.2267611504793664,"rgb(0,77,172)"],[0.2271779908295123,"rgb(0,77,172)"],[0.2275948311796582,"rgb(0,77,172)"],[0.2280116715298041,"rgb(0,77,172)"],[0.22842851187994997,"rgb(0,77,172)"],[0.22884535223009586,"rgb(0,77,172)"],[0.22926219258024177,"rgb(0,78,172)"],[0.22967903293038766,"rgb(0,78,172)"],[0.23009587328053355,"rgb(0,78,172)"],[0.23051271363067946,"rgb(0,78,172)"],[0.23092955398082535,"rgb(0,78,172)"],[0.23134639433097123,"rgb(0,78,172)"],[0.23176323468111712,"rgb(0,79,172)"],[0.23218007503126303,"rgb(0,79,172)"],[0.23259691538140892,"rgb(0,79,172)"],[0.2330137557315548,"rgb(0,79,172)"],[0.23343059608170072,"rgb(0,79,172)"],[0.2338474364318466,"rgb(0,79,172)"],[0.2342642767819925,"rgb(0,80,172)"],[0.23468111713213838,"rgb(0,80,172)"],[0.2350979574822843,"rgb(0,80,172)"],[0.23551479783243018,"rgb(0,80,172)"],[0.23593163818257606,"rgb(0,80,172)"],[0.23634847853272198,"rgb(0,80,172)"],[0.23676531888286786,"rgb(0,81,172)"],[0.23718215923301375,"rgb(0,81,172)"],[0.23759899958315964,"rgb(0,81,172)"],[0.23801583993330555,"rgb(0,81,172)"],[0.23843268028345144,"rgb(0,81,172)"],[0.23884952063359732,"rgb(0,81,172)"],[0.23926636098374324,"rgb(0,82,172)"],[0.23968320133388912,"rgb(0,82,172)"],[0.240100041684035,"rgb(0,82,172)"],[0.2405168820341809,"rgb(0,82,172)"],[0.2409337223843268,"rgb(0,82,172)"],[0.2413505627344727,"rgb(0,82,172)"],[0.24176740308461858,"rgb(0,82,172)"],[0.2421842434347645,"rgb(0,83,172)"],[0.24260108378491038,"rgb(0,83,172)"],[0.24301792413505627,"rgb(0,83,172)"],[0.24343476448520215,"rgb(0,83,172)"],[0.24385160483534807,"rgb(0,83,172)"],[0.24426844518549395,"rgb(0,83,172)"],[0.24468528553563984,"rgb(0,84,172)"],[0.24510212588578575,"rgb(0,84,172)"],[0.24551896623593164,"rgb(0,84,172)"],[0.24593580658607753,"rgb(0,84,172)"],[0.2463526469362234,"rgb(0,84,172)"],[0.24676948728636933,"rgb(0,84,172)"],[0.2471863276365152,"rgb(0,85,172)"],[0.2476031679866611,"rgb(0,85,172)"],[0.248020008336807,"rgb(0,85,172)"],[0.2484368486869529,"rgb(0,85,172)"],[0.24885368903709879,"rgb(0,85,172)"],[0.24927052938724467,"rgb(0,85,172)"],[0.24968736973739059,"rgb(0,85,172)"],[0.25010421008753647,"rgb(0,86,172)"],[0.25052105043768236,"rgb(0,86,172)"],[0.25093789078782824,"rgb(0,86,172)"],[0.25135473113797413,"rgb(0,86,172)"],[0.25177157148812007,"rgb(0,86,172)"],[0.25218841183826596,"rgb(0,86,172)"],[0.25260525218841184,"rgb(0,87,172)"],[0.25302209253855773,"rgb(0,87,172)"],[0.2534389328887036,"rgb(0,87,172)"],[0.2538557732388495,"rgb(0,87,172)"],[0.2542726135889954,"rgb(0,87,172)"],[0.25468945393914133,"rgb(0,87,172)"],[0.2551062942892872,"rgb(0,88,172)"],[0.2555231346394331,"rgb(0,88,172)"],[0.255939974989579,"rgb(0,88,172)"],[0.2563568153397249,"rgb(0,88,172)"],[0.25677365568987076,"rgb(0,88,172)"],[0.25719049604001665,"rgb(0,88,172)"],[0.2576073363901626,"rgb(0,88,172)"],[0.2580241767403085,"rgb(0,89,172)"],[0.25844101709045436,"rgb(0,89,172)"],[0.25885785744060025,"rgb(0,89,172)"],[0.25927469779074613,"rgb(0,89,172)"],[0.259691538140892,"rgb(0,89,172)"],[0.2601083784910379,"rgb(0,89,172)"],[0.26052521884118385,"rgb(0,90,172)"],[0.26094205919132973,"rgb(0,90,172)"],[0.2613588995414756,"rgb(0,90,172)"],[0.2617757398916215,"rgb(0,90,172)"],[0.2621925802417674,"rgb(0,90,172)"],[0.2626094205919133,"rgb(0,90,172)"],[0.26302626094205916,"rgb(0,90,172)"],[0.2634431012922051,"rgb(0,91,172)"],[0.263859941642351,"rgb(0,91,172)"],[0.2642767819924969,"rgb(0,91,172)"],[0.26469362234264276,"rgb(0,91,172)"],[0.26511046269278865,"rgb(0,91,172)"],[0.26552730304293454,"rgb(0,91,172)"],[0.2659441433930804,"rgb(0,91,172)"],[0.26636098374322636,"rgb(0,92,172)"],[0.26677782409337225,"rgb(0,92,172)"],[0.26719466444351814,"rgb(0,92,172)"],[0.267611504793664,"rgb(0,92,172)"],[0.2680283451438099,"rgb(0,92,172)"],[0.2684451854939558,"rgb(0,92,172)"],[0.2688620258441017,"rgb(0,93,172)"],[0.2692788661942476,"rgb(0,93,172)"],[0.2696957065443935,"rgb(0,93,172)"],[0.2701125468945394,"rgb(0,93,172)"],[0.2705293872446853,"rgb(0,93,172)"],[0.27094622759483117,"rgb(0,93,172)"],[0.27136306794497705,"rgb(0,93,172)"],[0.27177990829512294,"rgb(0,94,172)"],[0.2721967486452689,"rgb(0,94,172)"],[0.27261358899541477,"rgb(0,94,172)"],[0.27303042934556065,"rgb(0,94,172)"],[0.27344726969570654,"rgb(0,94,172)"],[0.2738641100458524,"rgb(0,94,172)"],[0.2742809503959983,"rgb(0,94,172)"],[0.2746977907461442,"rgb(0,95,172)"],[0.27511463109629014,"rgb(0,95,172)"],[0.275531471446436,"rgb(0,95,172)"],[0.2759483117965819,"rgb(0,95,172)"],[0.2763651521467278,"rgb(0,95,172)"],[0.2767819924968737,"rgb(0,95,171)"],[0.27719883284701957,"rgb(0,95,171)"],[0.27761567319716546,"rgb(0,96,171)"],[0.2780325135473114,"rgb(0,96,171)"],[0.2784493538974573,"rgb(0,96,171)"],[0.27886619424760317,"rgb(0,96,171)"],[0.27928303459774906,"rgb(0,96,171)"],[0.27969987494789494,"rgb(0,96,171)"],[0.28011671529804083,"rgb(0,96,171)"],[0.28053355564818677,"rgb(0,97,171)"],[0.28095039599833266,"rgb(0,97,171)"],[0.28136723634847854,"rgb(0,97,171)"],[0.28178407669862443,"rgb(0,97,171)"],[0.2822009170487703,"rgb(0,97,171)"],[0.2826177573989162,"rgb(0,97,171)"],[0.2830345977490621,"rgb(0,97,171)"],[0.28345143809920803,"rgb(0,98,171)"],[0.2838682784493539,"rgb(0,98,171)"],[0.2842851187994998,"rgb(0,98,171)"],[0.2847019591496457,"rgb(0,98,171)"],[0.2851187994997916,"rgb(0,98,171)"],[0.28553563984993746,"rgb(0,98,171)"],[0.28595248020008335,"rgb(0,98,171)"],[0.2863693205502293,"rgb(0,99,171)"],[0.2867861609003752,"rgb(0,99,171)"],[0.28720300125052106,"rgb(0,99,171)"],[0.28761984160066695,"rgb(0,99,171)"],[0.28803668195081283,"rgb(0,99,171)"],[0.2884535223009587,"rgb(0,99,171)"],[0.2888703626511046,"rgb(0,99,171)"],[0.28928720300125055,"rgb(0,99,171)"],[0.28970404335139643,"rgb(0,100,171)"],[0.2901208837015423,"rgb(0,100,171)"],[0.2905377240516882,"rgb(0,100,171)"],[0.2909545644018341,"rgb(0,100,171)"],[0.29137140475198,"rgb(0,100,171)"],[0.29178824510212586,"rgb(0,100,171)"],[0.2922050854522718,"rgb(0,100,171)"],[0.2926219258024177,"rgb(0,101,171)"],[0.2930387661525636,"rgb(0,101,171)"],[0.29345560650270947,"rgb(0,101,171)"],[0.29387244685285535,"rgb(0,101,170)"],[0.29428928720300124,"rgb(0,101,170)"],[0.2947061275531471,"rgb(0,101,170)"],[0.29512296790329307,"rgb(0,101,170)"],[0.29553980825343895,"rgb(0,102,170)"],[0.29595664860358484,"rgb(0,102,170)"],[0.2963734889537307,"rgb(0,102,170)"],[0.2967903293038766,"rgb(0,102,170)"],[0.2972071696540225,"rgb(0,102,170)"],[0.2976240100041684,"rgb(0,102,170)"],[0.2980408503543143,"rgb(0,102,170)"],[0.2984576907044602,"rgb(0,102,170)"],[0.2988745310546061,"rgb(0,103,170)"],[0.299291371404752,"rgb(0,103,170)"],[0.29970821175489787,"rgb(0,103,170)"],[0.30012505210504375,"rgb(0,103,170)"],[0.30054189245518964,"rgb(0,103,170)"],[0.3009587328053356,"rgb(0,103,170)"],[0.30137557315548147,"rgb(0,103,170)"],[0.30179241350562735,"rgb(0,104,170)"],[0.30220925385577324,"rgb(0,104,170)"],[0.3026260942059191,"rgb(0,104,170)"],[0.303042934556065,"rgb(0,104,170)"],[0.3034597749062109,"rgb(0,104,170)"],[0.30387661525635684,"rgb(0,104,170)"],[0.3042934556065027,"rgb(0,104,170)"],[0.3047102959566486,"rgb(0,104,170)"],[0.3051271363067945,"rgb(0,105,170)"],[0.3055439766569404,"rgb(0,105,170)"],[0.30596081700708627,"rgb(0,105,170)"],[0.30637765735723216,"rgb(0,105,169)"],[0.3067944977073781,"rgb(0,105,169)"],[0.307211338057524,"rgb(0,105,169)"],[0.30762817840766987,"rgb(0,105,169)"],[0.30804501875781576,"rgb(0,105,169)"],[0.30846185910796164,"rgb(0,106,169)"],[0.30887869945810753,"rgb(0,106,169)"],[0.3092955398082534,"rgb(0,106,169)"],[0.30971238015839936,"rgb(0,106,169)"],[0.31012922050854524,"rgb(0,106,169)"],[0.31054606085869113,"rgb(0,106,169)"],[0.310962901208837,"rgb(0,106,169)"],[0.3113797415589829,"rgb(0,106,169)"],[0.3117965819091288,"rgb(0,107,169)"],[0.3122134222592747,"rgb(0,107,169)"],[0.3126302626094206,"rgb(0,107,169)"],[0.3130471029595665,"rgb(0,107,169)"],[0.3134639433097124,"rgb(0,107,169)"],[0.3138807836598583,"rgb(0,107,169)"],[0.31429762401000416,"rgb(0,107,169)"],[0.31471446436015005,"rgb(0,107,169)"],[0.31513130471029593,"rgb(0,108,169)"],[0.3155481450604419,"rgb(0,108,169)"],[0.31596498541058776,"rgb(0,108,169)"],[0.31638182576073365,"rgb(0,108,169)"],[0.31679866611087953,"rgb(0,108,168)"],[0.3172155064610254,"rgb(0,108,168)"],[0.3176323468111713,"rgb(0,108,168)"],[0.3180491871613172,"rgb(0,108,168)"],[0.31846602751146313,"rgb(0,109,168)"],[0.318882867861609,"rgb(0,109,168)"],[0.3192997082117549,"rgb(0,109,168)"],[0.3197165485619008,"rgb(0,109,168)"],[0.3201333889120467,"rgb(0,109,168)"],[0.32055022926219257,"rgb(0,109,168)"],[0.32096706961233845,"rgb(0,109,168)"],[0.3213839099624844,"rgb(0,109,168)"],[0.3218007503126303,"rgb(0,110,168)"],[0.32221759066277617,"rgb(0,110,168)"],[0.32263443101292205,"rgb(0,110,168)"],[0.32305127136306794,"rgb(0,110,168)"],[0.3234681117132138,"rgb(0,110,168)"],[0.3238849520633597,"rgb(0,110,168)"],[0.32430179241350565,"rgb(0,110,168)"],[0.32471863276365154,"rgb(0,110,168)"],[0.3251354731137974,"rgb(0,111,168)"],[0.3255523134639433,"rgb(0,111,168)"],[0.3259691538140892,"rgb(0,111,168)"],[0.3263859941642351,"rgb(0,111,167)"],[0.32680283451438097,"rgb(0,111,167)"],[0.3272196748645269,"rgb(0,111,167)"],[0.3276365152146728,"rgb(0,111,167)"],[0.3280533555648187,"rgb(0,111,167)"],[0.32847019591496457,"rgb(0,112,167)"],[0.32888703626511046,"rgb(0,112,167)"],[0.32930387661525634,"rgb(0,112,167)"],[0.3297207169654022,"rgb(0,112,167)"],[0.33013755731554817,"rgb(0,112,167)"],[0.33055439766569406,"rgb(0,112,167)"],[0.33097123801583994,"rgb(0,112,167)"],[0.3313880783659858,"rgb(0,112,167)"],[0.3318049187161317,"rgb(0,112,167)"],[0.3322217590662776,"rgb(0,113,167)"],[0.3326385994164235,"rgb(0,113,167)"],[0.3330554397665694,"rgb(0,113,167)"],[0.3334722801167153,"rgb(0,113,167)"],[0.3338891204668612,"rgb(0,113,167)"],[0.3343059608170071,"rgb(0,113,167)"],[0.334722801167153,"rgb(0,113,166)"],[0.33513964151729886,"rgb(0,113,166)"],[0.33555648186744474,"rgb(0,113,166)"],[0.3359733222175907,"rgb(0,114,166)"],[0.3363901625677366,"rgb(0,114,166)"],[0.33680700291788246,"rgb(0,114,166)"],[0.33722384326802834,"rgb(0,114,166)"],[0.33764068361817423,"rgb(0,114,166)"],[0.3380575239683201,"rgb(0,114,166)"],[0.338474364318466,"rgb(0,114,166)"],[0.33889120466861195,"rgb(0,114,166)"],[0.33930804501875783,"rgb(0,115,166)"],[0.3397248853689037,"rgb(0,115,166)"],[0.3401417257190496,"rgb(0,115,166)"],[0.3405585660691955,"rgb(0,115,166)"],[0.3409754064193414,"rgb(0,115,166)"],[0.34139224676948726,"rgb(0,115,166)"],[0.3418090871196332,"rgb(0,115,166)"],[0.3422259274697791,"rgb(0,115,165)"],[0.342642767819925,"rgb(0,115,165)"],[0.34305960817007086,"rgb(0,116,165)"],[0.34347644852021675,"rgb(0,116,165)"],[0.34389328887036263,"rgb(0,116,165)"],[0.3443101292205085,"rgb(0,116,165)"],[0.34472696957065446,"rgb(0,116,165)"],[0.34514380992080035,"rgb(0,116,165)"],[0.34556065027094623,"rgb(0,116,165)"],[0.3459774906210921,"rgb(0,116,165)"],[0.346394330971238,"rgb(0,116,165)"],[0.3468111713213839,"rgb(0,117,165)"],[0.3472280116715298,"rgb(0,117,165)"],[0.3476448520216757,"rgb(0,117,165)"],[0.3480616923718216,"rgb(0,117,165)"],[0.3484785327219675,"rgb(0,117,165)"],[0.3488953730721134,"rgb(0,117,165)"],[0.34931221342225927,"rgb(0,117,165)"],[0.34972905377240515,"rgb(0,117,164)"],[0.35014589412255104,"rgb(0,117,164)"],[0.350562734472697,"rgb(0,118,164)"],[0.35097957482284287,"rgb(0,118,164)"],[0.35139641517298875,"rgb(0,118,164)"],[0.35181325552313464,"rgb(0,118,164)"],[0.3522300958732805,"rgb(0,118,164)"],[0.3526469362234264,"rgb(0,118,164)"],[0.3530637765735723,"rgb(0,118,164)"],[0.35348061692371824,"rgb(0,118,164)"],[0.3538974572738641,"rgb(0,118,164)"],[0.35431429762401,"rgb(0,118,164)"],[0.3547311379741559,"rgb(0,119,164)"],[0.3551479783243018,"rgb(0,119,164)"],[0.35556481867444767,"rgb(0,119,164)"],[0.35598165902459356,"rgb(0,119,164)"],[0.3563984993747395,"rgb(0,119,163)"],[0.3568153397248854,"rgb(0,119,163)"],[0.35723218007503127,"rgb(0,119,163)"],[0.35764902042517716,"rgb(0,119,163)"],[0.35806586077532304,"rgb(0,119,163)"],[0.3584827011254689,"rgb(0,120,163)"],[0.3588995414756148,"rgb(0,120,163)"],[0.35931638182576076,"rgb(0,120,163)"],[0.35973322217590664,"rgb(0,120,163)"],[0.36015006252605253,"rgb(0,120,163)"],[0.3605669028761984,"rgb(0,120,163)"],[0.3609837432263443,"rgb(0,120,163)"],[0.3614005835764902,"rgb(0,120,163)"],[0.3618174239266361,"rgb(0,120,163)"],[0.362234264276782,"rgb(0,120,163)"],[0.3626511046269279,"rgb(0,121,162)"],[0.3630679449770738,"rgb(0,121,162)"],[0.3634847853272197,"rgb(0,121,162)"],[0.36390162567736556,"rgb(0,121,162)"],[0.36431846602751145,"rgb(0,121,162)"],[0.36473530637765733,"rgb(0,121,162)"],[0.3651521467278033,"rgb(0,121,162)"],[0.36556898707794916,"rgb(0,121,162)"],[0.36598582742809505,"rgb(0,121,162)"],[0.36640266777824093,"rgb(0,121,162)"],[0.3668195081283868,"rgb(0,122,162)"],[0.3672363484785327,"rgb(0,122,162)"],[0.3676531888286786,"rgb(0,122,162)"],[0.36807002917882453,"rgb(0,122,162)"],[0.3684868695289704,"rgb(0,122,162)"],[0.3689037098791163,"rgb(0,122,161)"],[0.3693205502292622,"rgb(0,122,161)"],[0.3697373905794081,"rgb(0,122,161)"],[0.37015423092955396,"rgb(0,122,161)"],[0.37057107127969985,"rgb(0,123,161)"],[0.3709879116298458,"rgb(0,123,161)"],[0.3714047519799917,"rgb(0,123,161)"],[0.37182159233013756,"rgb(0,123,161)"],[0.37223843268028345,"rgb(0,123,161)"],[0.37265527303042933,"rgb(0,123,161)"],[0.3730721133805752,"rgb(0,123,161)"],[0.3734889537307211,"rgb(0,123,161)"],[0.37390579408086705,"rgb(0,123,161)"],[0.37432263443101293,"rgb(0,123,161)"],[0.3747394747811588,"rgb(0,123,160)"],[0.3751563151313047,"rgb(0,124,160)"],[0.3755731554814506,"rgb(0,124,160)"],[0.3759899958315965,"rgb(0,124,160)"],[0.37640683618174237,"rgb(0,124,160)"],[0.3768236765318883,"rgb(0,124,160)"],[0.3772405168820342,"rgb(0,124,160)"],[0.3776573572321801,"rgb(0,124,160)"],[0.37807419758232597,"rgb(0,124,160)"],[0.37849103793247185,"rgb(0,124,160)"],[0.37890787828261774,"rgb(0,124,160)"],[0.3793247186327636,"rgb(0,125,160)"],[0.37974155898290957,"rgb(0,125,160)"],[0.38015839933305545,"rgb(0,125,159)"],[0.38057523968320134,"rgb(0,125,159)"],[0.3809920800333472,"rgb(0,125,159)"],[0.3814089203834931,"rgb(0,125,159)"],[0.381825760733639,"rgb(0,125,159)"],[0.3822426010837849,"rgb(0,125,159)"],[0.3826594414339308,"rgb(0,125,159)"],[0.3830762817840767,"rgb(0,125,159)"],[0.3834931221342226,"rgb(0,126,159)"],[0.3839099624843685,"rgb(0,126,159)"],[0.38432680283451437,"rgb(0,126,159)"],[0.38474364318466026,"rgb(0,126,159)"],[0.38516048353480614,"rgb(0,126,159)"],[0.3855773238849521,"rgb(0,126,158)"],[0.38599416423509797,"rgb(0,126,158)"],[0.38641100458524386,"rgb(0,126,158)"],[0.38682784493538974,"rgb(0,126,158)"],[0.38724468528553563,"rgb(0,126,158)"],[0.3876615256356815,"rgb(0,126,158)"],[0.3880783659858274,"rgb(0,127,158)"],[0.38849520633597334,"rgb(0,127,158)"],[0.38891204668611923,"rgb(0,127,158)"],[0.3893288870362651,"rgb(0,127,158)"],[0.389745727386411,"rgb(0,127,158)"],[0.3901625677365569,"rgb(0,127,158)"],[0.3905794080867028,"rgb(0,127,158)"],[0.3909962484368487,"rgb(0,127,157)"],[0.3914130887869946,"rgb(0,127,157)"],[0.3918299291371405,"rgb(0,127,157)"],[0.3922467694872864,"rgb(0,127,157)"],[0.39266360983743226,"rgb(0,128,157)"],[0.39308045018757815,"rgb(0,128,157)"],[0.39349729053772403,"rgb(0,128,157)"],[0.39391413088787,"rgb(0,128,157)"],[0.39433097123801586,"rgb(0,128,157)"],[0.39474781158816175,"rgb(0,128,157)"],[0.39516465193830763,"rgb(0,128,157)"],[0.3955814922884535,"rgb(0,128,157)"],[0.3959983326385994,"rgb(0,128,156)"],[0.3964151729887453,"rgb(0,128,156)"],[0.39683201333889123,"rgb(0,128,156)"],[0.3972488536890371,"rgb(0,129,156)"],[0.397665694039183,"rgb(0,129,156)"],[0.3980825343893289,"rgb(0,129,156)"],[0.3984993747394748,"rgb(0,129,156)"],[0.39891621508962066,"rgb(0,129,156)"],[0.39933305543976655,"rgb(0,129,156)"],[0.3997498957899125,"rgb(0,129,156)"],[0.4001667361400584,"rgb(0,129,156)"],[0.40058357649020426,"rgb(0,129,156)"],[0.40100041684035015,"rgb(0,129,155)"],[0.40141725719049604,"rgb(0,129,155)"],[0.4018340975406419,"rgb(0,130,155)"],[0.4022509378907878,"rgb(0,130,155)"],[0.40266777824093375,"rgb(0,130,155)"],[0.40308461859107964,"rgb(0,130,155)"],[0.4035014589412255,"rgb(0,130,155)"],[0.4039182992913714,"rgb(0,130,155)"],[0.4043351396415173,"rgb(0,130,155)"],[0.4047519799916632,"rgb(0,130,155)"],[0.40516882034180907,"rgb(0,130,155)"],[0.405585660691955,"rgb(0,130,154)"],[0.4060025010421009,"rgb(0,130,154)"],[0.4064193413922468,"rgb(0,130,154)"],[0.40683618174239267,"rgb(0,131,154)"],[0.40725302209253855,"rgb(0,131,154)"],[0.40766986244268444,"rgb(0,131,154)"],[0.4080867027928303,"rgb(0,131,154)"],[0.40850354314297627,"rgb(0,131,154)"],[0.40892038349312215,"rgb(0,131,154)"],[0.40933722384326804,"rgb(0,131,154)"],[0.4097540641934139,"rgb(0,131,154)"],[0.4101709045435598,"rgb(0,131,153)"],[0.4105877448937057,"rgb(0,131,153)"],[0.4110045852438516,"rgb(0,131,153)"],[0.4114214255939975,"rgb(0,131,153)"],[0.4118382659441434,"rgb(0,132,153)"],[0.4122551062942893,"rgb(0,132,153)"],[0.4126719466444352,"rgb(0,132,153)"],[0.41308878699458107,"rgb(0,132,153)"],[0.41350562734472696,"rgb(0,132,153)"],[0.41392246769487284,"rgb(0,132,153)"],[0.4143393080450188,"rgb(0,132,153)"],[0.41475614839516467,"rgb(0,132,152)"],[0.41517298874531056,"rgb(0,132,152)"],[0.41558982909545644,"rgb(0,132,152)"],[0.41600666944560233,"rgb(0,132,152)"],[0.4164235097957482,"rgb(0,132,152)"],[0.4168403501458941,"rgb(0,133,152)"],[0.41725719049604004,"rgb(0,133,152)"],[0.41767403084618593,"rgb(0,133,152)"],[0.4180908711963318,"rgb(0,133,152)"],[0.4185077115464777,"rgb(0,133,152)"],[0.4189245518966236,"rgb(0,133,152)"],[0.4193413922467695,"rgb(0,133,151)"],[0.41975823259691536,"rgb(0,133,151)"],[0.4201750729470613,"rgb(0,133,151)"],[0.4205919132972072,"rgb(0,133,151)"],[0.4210087536473531,"rgb(0,133,151)"],[0.42142559399749896,"rgb(0,133,151)"],[0.42184243434764485,"rgb(0,134,151)"],[0.42225927469779073,"rgb(0,134,151)"],[0.4226761150479366,"rgb(0,134,151)"],[0.42309295539808256,"rgb(0,134,151)"],[0.42350979574822845,"rgb(0,134,150)"],[0.42392663609837433,"rgb(0,134,150)"],[0.4243434764485202,"rgb(0,134,150)"],[0.4247603167986661,"rgb(0,134,150)"],[0.425177157148812,"rgb(0,134,150)"],[0.4255939974989579,"rgb(0,134,150)"],[0.4260108378491038,"rgb(0,134,150)"],[0.4264276781992497,"rgb(0,134,150)"],[0.4268445185493956,"rgb(0,134,150)"],[0.4272613588995415,"rgb(0,135,150)"],[0.42767819924968736,"rgb(0,135,150)"],[0.42809503959983325,"rgb(0,135,149)"],[0.42851187994997914,"rgb(0,135,149)"],[0.4289287203001251,"rgb(0,135,149)"],[0.42934556065027096,"rgb(0,135,149)"],[0.42976240100041685,"rgb(0,135,149)"],[0.43017924135056274,"rgb(0,135,149)"],[0.4305960817007086,"rgb(0,135,149)"],[0.4310129220508545,"rgb(1,135,149)"],[0.4314297624010004,"rgb(1,135,149)"],[0.43184660275114634,"rgb(1,135,149)"],[0.4322634431012922,"rgb(1,135,148)"],[0.4326802834514381,"rgb(1,136,148)"],[0.433097123801584,"rgb(1,136,148)"],[0.4335139641517299,"rgb(1,136,148)"],[0.43393080450187577,"rgb(1,136,148)"],[0.43434764485202165,"rgb(1,136,148)"],[0.4347644852021676,"rgb(1,136,148)"],[0.4351813255523135,"rgb(1,136,148)"],[0.43559816590245937,"rgb(1,136,148)"],[0.43601500625260525,"rgb(1,136,148)"],[0.43643184660275114,"rgb(1,136,147)"],[0.436848686952897,"rgb(1,136,147)"],[0.4372655273030429,"rgb(1,136,147)"],[0.43768236765318885,"rgb(1,136,147)"],[0.43809920800333474,"rgb(1,137,147)"],[0.4385160483534806,"rgb(1,137,147)"],[0.4389328887036265,"rgb(1,137,147)"],[0.4393497290537724,"rgb(1,137,147)"],[0.4397665694039183,"rgb(1,137,147)"],[0.44018340975406417,"rgb(1,137,146)"],[0.4406002501042101,"rgb(1,137,146)"],[0.441017090454356,"rgb(1,137,146)"],[0.4414339308045019,"rgb(1,137,146)"],[0.44185077115464777,"rgb(1,137,146)"],[0.44226761150479366,"rgb(1,137,146)"],[0.44268445185493954,"rgb(2,137,146)"],[0.44310129220508543,"rgb(2,137,146)"],[0.44351813255523137,"rgb(2,137,146)"],[0.44393497290537726,"rgb(2,138,146)"],[0.44435181325552314,"rgb(2,138,145)"],[0.44476865360566903,"rgb(2,138,145)"],[0.4451854939558149,"rgb(2,138,145)"],[0.4456023343059608,"rgb(2,138,145)"],[0.4460191746561067,"rgb(2,138,145)"],[0.44643601500625263,"rgb(2,138,145)"],[0.4468528553563985,"rgb(2,138,145)"],[0.4472696957065444,"rgb(2,138,145)"],[0.4476865360566903,"rgb(2,138,145)"],[0.4481033764068362,"rgb(2,138,144)"],[0.44852021675698206,"rgb(2,138,144)"],[0.44893705710712795,"rgb(2,138,144)"],[0.4493538974572739,"rgb(2,138,144)"],[0.4497707378074198,"rgb(2,139,144)"],[0.45018757815756566,"rgb(2,139,144)"],[0.45060441850771155,"rgb(2,139,144)"],[0.45102125885785743,"rgb(3,139,144)"],[0.4514380992080033,"rgb(3,139,144)"],[0.4518549395581492,"rgb(3,139,144)"],[0.45227177990829515,"rgb(3,139,143)"],[0.45268862025844103,"rgb(3,139,143)"],[0.4531054606085869,"rgb(3,139,143)"],[0.4535223009587328,"rgb(3,139,143)"],[0.4539391413088787,"rgb(3,139,143)"],[0.4543559816590246,"rgb(3,139,143)"],[0.45477282200917046,"rgb(3,139,143)"],[0.4551896623593164,"rgb(3,139,143)"],[0.4556065027094623,"rgb(3,140,143)"],[0.4560233430596082,"rgb(3,140,142)"],[0.45644018340975406,"rgb(3,140,142)"],[0.45685702375989995,"rgb(3,140,142)"],[0.45727386411004584,"rgb(3,140,142)"],[0.4576907044601917,"rgb(4,140,142)"],[0.45810754481033766,"rgb(4,140,142)"],[0.45852438516048355,"rgb(4,140,142)"],[0.45894122551062944,"rgb(4,140,142)"],[0.4593580658607753,"rgb(4,140,142)"],[0.4597749062109212,"rgb(4,140,141)"],[0.4601917465610671,"rgb(4,140,141)"],[0.460608586911213,"rgb(4,140,141)"],[0.4610254272613589,"rgb(4,140,141)"],[0.4614422676115048,"rgb(4,140,141)"],[0.4618591079616507,"rgb(4,141,141)"],[0.4622759483117966,"rgb(4,141,141)"],[0.46269278866194247,"rgb(4,141,141)"],[0.46310962901208835,"rgb(5,141,141)"],[0.46352646936223424,"rgb(5,141,140)"],[0.4639433097123802,"rgb(5,141,140)"],[0.46436015006252607,"rgb(5,141,140)"],[0.46477699041267195,"rgb(5,141,140)"],[0.46519383076281784,"rgb(5,141,140)"],[0.4656106711129637,"rgb(5,141,140)"],[0.4660275114631096,"rgb(5,141,140)"],[0.4664443518132555,"rgb(5,141,140)"],[0.46686119216340144,"rgb(5,141,140)"],[0.4672780325135473,"rgb(5,141,139)"],[0.4676948728636932,"rgb(5,141,139)"],[0.4681117132138391,"rgb(6,142,139)"],[0.468528553563985,"rgb(6,142,139)"],[0.46894539391413087,"rgb(6,142,139)"],[0.46936223426427676,"rgb(6,142,139)"],[0.4697790746144227,"rgb(6,142,139)"],[0.4701959149645686,"rgb(6,142,139)"],[0.47061275531471447,"rgb(6,142,138)"],[0.47102959566486036,"rgb(6,142,138)"],[0.47144643601500624,"rgb(6,142,138)"],[0.47186327636515213,"rgb(6,142,138)"],[0.472280116715298,"rgb(6,142,138)"],[0.47269695706544396,"rgb(7,142,138)"],[0.47311379741558984,"rgb(7,142,138)"],[0.47353063776573573,"rgb(7,142,138)"],[0.4739474781158816,"rgb(7,142,138)"],[0.4743643184660275,"rgb(7,142,137)"],[0.4747811588161734,"rgb(7,143,137)"],[0.4751979991663193,"rgb(7,143,137)"],[0.4756148395164652,"rgb(7,143,137)"],[0.4760316798666111,"rgb(7,143,137)"],[0.476448520216757,"rgb(7,143,137)"],[0.4768653605669029,"rgb(8,143,137)"],[0.47728220091704876,"rgb(8,143,137)"],[0.47769904126719465,"rgb(8,143,136)"],[0.47811588161734053,"rgb(8,143,136)"],[0.4785327219674865,"rgb(8,143,136)"],[0.47894956231763236,"rgb(8,143,136)"],[0.47936640266777825,"rgb(8,143,136)"],[0.47978324301792413,"rgb(8,143,136)"],[0.48020008336807,"rgb(8,143,136)"],[0.4806169237182159,"rgb(9,143,136)"],[0.4810337640683618,"rgb(9,143,136)"],[0.48145060441850773,"rgb(9,144,135)"],[0.4818674447686536,"rgb(9,144,135)"],[0.4822842851187995,"rgb(9,144,135)"],[0.4827011254689454,"rgb(9,144,135)"],[0.4831179658190913,"rgb(9,144,135)"],[0.48353480616923716,"rgb(9,144,135)"],[0.48395164651938305,"rgb(9,144,135)"],[0.484368486869529,"rgb(10,144,135)"],[0.4847853272196749,"rgb(10,144,134)"],[0.48520216756982076,"rgb(10,144,134)"],[0.48561900791996665,"rgb(10,144,134)"],[0.48603584827011254,"rgb(10,144,134)"],[0.4864526886202584,"rgb(10,144,134)"],[0.4868695289704043,"rgb(10,144,134)"],[0.48728636932055025,"rgb(10,144,134)"],[0.48770320967069614,"rgb(10,144,134)"],[0.488120050020842,"rgb(11,144,134)"],[0.4885368903709879,"rgb(11,145,133)"],[0.4889537307211338,"rgb(11,145,133)"],[0.4893705710712797,"rgb(11,145,133)"],[0.48978741142142557,"rgb(11,145,133)"],[0.4902042517715715,"rgb(11,145,133)"],[0.4906210921217174,"rgb(11,145,133)"],[0.4910379324718633,"rgb(11,145,133)"],[0.49145477282200917,"rgb(12,145,133)"],[0.49187161317215505,"rgb(12,145,132)"],[0.49228845352230094,"rgb(12,145,132)"],[0.4927052938724468,"rgb(12,145,132)"],[0.49312213422259277,"rgb(12,145,132)"],[0.49353897457273865,"rgb(12,145,132)"],[0.49395581492288454,"rgb(12,145,132)"],[0.4943726552730304,"rgb(13,145,132)"],[0.4947894956231763,"rgb(13,145,132)"],[0.4952063359733222,"rgb(13,145,131)"],[0.4956231763234681,"rgb(13,146,131)"],[0.496040016673614,"rgb(13,146,131)"],[0.4964568570237599,"rgb(13,146,131)"],[0.4968736973739058,"rgb(13,146,131)"],[0.4972905377240517,"rgb(13,146,131)"],[0.49770737807419757,"rgb(14,146,131)"],[0.49812421842434346,"rgb(14,146,131)"],[0.49854105877448934,"rgb(14,146,130)"],[0.4989578991246353,"rgb(14,146,130)"],[0.49937473947478117,"rgb(14,146,130)"],[0.49979157982492706,"rgb(14,146,130)"],[0.5002084201750729,"rgb(14,146,130)"],[0.5006252605252188,"rgb(15,146,130)"],[0.5010421008753647,"rgb(15,146,130)"],[0.5014589412255106,"rgb(15,146,130)"],[0.5018757815756565,"rgb(15,146,129)"],[0.5022926219258024,"rgb(15,146,129)"],[0.5027094622759483,"rgb(15,146,129)"],[0.5031263026260943,"rgb(15,147,129)"],[0.5035431429762401,"rgb(16,147,129)"],[0.503959983326386,"rgb(16,147,129)"],[0.5043768236765319,"rgb(16,147,129)"],[0.5047936640266778,"rgb(16,147,129)"],[0.5052105043768237,"rgb(16,147,128)"],[0.5056273447269696,"rgb(16,147,128)"],[0.5060441850771155,"rgb(16,147,128)"],[0.5064610254272613,"rgb(17,147,128)"],[0.5068778657774072,"rgb(17,147,128)"],[0.5072947061275531,"rgb(17,147,128)"],[0.507711546477699,"rgb(17,147,128)"],[0.5081283868278449,"rgb(17,147,128)"],[0.5085452271779908,"rgb(17,147,127)"],[0.5089620675281368,"rgb(17,147,127)"],[0.5093789078782827,"rgb(18,147,127)"],[0.5097957482284285,"rgb(18,147,127)"],[0.5102125885785744,"rgb(18,147,127)"],[0.5106294289287203,"rgb(18,147,127)"],[0.5110462692788662,"rgb(18,148,127)"],[0.5114631096290121,"rgb(18,148,127)"],[0.511879949979158,"rgb(19,148,126)"],[0.5122967903293039,"rgb(19,148,126)"],[0.5127136306794498,"rgb(19,148,126)"],[0.5131304710295956,"rgb(19,148,126)"],[0.5135473113797415,"rgb(19,148,126)"],[0.5139641517298874,"rgb(19,148,126)"],[0.5143809920800333,"rgb(19,148,126)"],[0.5147978324301793,"rgb(20,148,126)"],[0.5152146727803252,"rgb(20,148,125)"],[0.5156315131304711,"rgb(20,148,125)"],[0.516048353480617,"rgb(20,148,125)"],[0.5164651938307628,"rgb(20,148,125)"],[0.5168820341809087,"rgb(20,148,125)"],[0.5172988745310546,"rgb(21,148,125)"],[0.5177157148812005,"rgb(21,148,125)"],[0.5181325552313464,"rgb(21,148,125)"],[0.5185493955814923,"rgb(21,148,124)"],[0.5189662359316382,"rgb(21,149,124)"],[0.519383076281784,"rgb(21,149,124)"],[0.5197999166319299,"rgb(22,149,124)"],[0.5202167569820758,"rgb(22,149,124)"],[0.5206335973322218,"rgb(22,149,124)"],[0.5210504376823677,"rgb(22,149,124)"],[0.5214672780325136,"rgb(22,149,124)"],[0.5218841183826595,"rgb(22,149,123)"],[0.5223009587328054,"rgb(23,149,123)"],[0.5227177990829512,"rgb(23,149,123)"],[0.5231346394330971,"rgb(23,149,123)"],[0.523551479783243,"rgb(23,149,123)"],[0.5239683201333889,"rgb(23,149,123)"],[0.5243851604835348,"rgb(23,149,123)"],[0.5248020008336807,"rgb(24,149,123)"],[0.5252188411838266,"rgb(24,149,122)"],[0.5256356815339724,"rgb(24,149,122)"],[0.5260525218841183,"rgb(24,149,122)"],[0.5264693622342643,"rgb(24,149,122)"],[0.5268862025844102,"rgb(24,149,122)"],[0.5273030429345561,"rgb(25,150,122)"],[0.527719883284702,"rgb(25,150,122)"],[0.5281367236348479,"rgb(25,150,122)"],[0.5285535639849938,"rgb(25,150,121)"],[0.5289704043351396,"rgb(25,150,121)"],[0.5293872446852855,"rgb(25,150,121)"],[0.5298040850354314,"rgb(26,150,121)"],[0.5302209253855773,"rgb(26,150,121)"],[0.5306377657357232,"rgb(26,150,121)"],[0.5310546060858691,"rgb(26,150,121)"],[0.531471446436015,"rgb(26,150,120)"],[0.5318882867861608,"rgb(27,150,120)"],[0.5323051271363068,"rgb(27,150,120)"],[0.5327219674864527,"rgb(27,150,120)"],[0.5331388078365986,"rgb(27,150,120)"],[0.5335556481867445,"rgb(27,150,120)"],[0.5339724885368904,"rgb(27,150,120)"],[0.5343893288870363,"rgb(28,150,120)"],[0.5348061692371822,"rgb(28,150,119)"],[0.535223009587328,"rgb(28,150,119)"],[0.5356398499374739,"rgb(28,150,119)"],[0.5360566902876198,"rgb(28,151,119)"],[0.5364735306377657,"rgb(28,151,119)"],[0.5368903709879116,"rgb(29,151,119)"],[0.5373072113380575,"rgb(29,151,119)"],[0.5377240516882034,"rgb(29,151,119)"],[0.5381408920383494,"rgb(29,151,118)"],[0.5385577323884952,"rgb(29,151,118)"],[0.5389745727386411,"rgb(30,151,118)"],[0.539391413088787,"rgb(30,151,118)"],[0.5398082534389329,"rgb(30,151,118)"],[0.5402250937890788,"rgb(30,151,118)"],[0.5406419341392247,"rgb(30,151,118)"],[0.5410587744893706,"rgb(30,151,118)"],[0.5414756148395165,"rgb(31,151,117)"],[0.5418924551896623,"rgb(31,151,117)"],[0.5423092955398082,"rgb(31,151,117)"],[0.5427261358899541,"rgb(31,151,117)"],[0.5431429762401,"rgb(31,151,117)"],[0.5435598165902459,"rgb(32,151,117)"],[0.5439766569403919,"rgb(32,151,117)"],[0.5443934972905378,"rgb(32,151,117)"],[0.5448103376406837,"rgb(32,151,116)"],[0.5452271779908295,"rgb(32,152,116)"],[0.5456440183409754,"rgb(32,152,116)"],[0.5460608586911213,"rgb(33,152,116)"],[0.5464776990412672,"rgb(33,152,116)"],[0.5468945393914131,"rgb(33,152,116)"],[0.547311379741559,"rgb(33,152,116)"],[0.5477282200917049,"rgb(33,152,115)"],[0.5481450604418507,"rgb(34,152,115)"],[0.5485619007919966,"rgb(34,152,115)"],[0.5489787411421425,"rgb(34,152,115)"],[0.5493955814922884,"rgb(34,152,115)"],[0.5498124218424344,"rgb(34,152,115)"],[0.5502292621925803,"rgb(35,152,115)"],[0.5506461025427262,"rgb(35,152,115)"],[0.551062942892872,"rgb(35,152,114)"],[0.5514797832430179,"rgb(35,152,114)"],[0.5518966235931638,"rgb(35,152,114)"],[0.5523134639433097,"rgb(35,152,114)"],[0.5527303042934556,"rgb(36,152,114)"],[0.5531471446436015,"rgb(36,152,114)"],[0.5535639849937474,"rgb(36,152,114)"],[0.5539808253438933,"rgb(36,152,114)"],[0.5543976656940391,"rgb(36,152,113)"],[0.554814506044185,"rgb(37,153,113)"],[0.5552313463943309,"rgb(37,153,113)"],[0.5556481867444769,"rgb(37,153,113)"],[0.5560650270946228,"rgb(37,153,113)"],[0.5564818674447687,"rgb(37,153,113)"],[0.5568987077949146,"rgb(38,153,113)"],[0.5573155481450605,"rgb(38,153,113)"],[0.5577323884952063,"rgb(38,153,112)"],[0.5581492288453522,"rgb(38,153,112)"],[0.5585660691954981,"rgb(38,153,112)"],[0.558982909545644,"rgb(39,153,112)"],[0.5593997498957899,"rgb(39,153,112)"],[0.5598165902459358,"rgb(39,153,112)"],[0.5602334305960817,"rgb(39,153,112)"],[0.5606502709462275,"rgb(39,153,111)"],[0.5610671112963735,"rgb(39,153,111)"],[0.5614839516465194,"rgb(40,153,111)"],[0.5619007919966653,"rgb(40,153,111)"],[0.5623176323468112,"rgb(40,153,111)"],[0.5627344726969571,"rgb(40,153,111)"],[0.563151313047103,"rgb(40,153,111)"],[0.5635681533972489,"rgb(41,153,111)"],[0.5639849937473947,"rgb(41,153,110)"],[0.5644018340975406,"rgb(41,153,110)"],[0.5648186744476865,"rgb(41,153,110)"],[0.5652355147978324,"rgb(41,154,110)"],[0.5656523551479783,"rgb(42,154,110)"],[0.5660691954981242,"rgb(42,154,110)"],[0.5664860358482701,"rgb(42,154,110)"],[0.5669028761984161,"rgb(42,154,110)"],[0.567319716548562,"rgb(42,154,109)"],[0.5677365568987078,"rgb(43,154,109)"],[0.5681533972488537,"rgb(43,154,109)"],[0.5685702375989996,"rgb(43,154,109)"],[0.5689870779491455,"rgb(43,154,109)"],[0.5694039182992914,"rgb(43,154,109)"],[0.5698207586494373,"rgb(44,154,109)"],[0.5702375989995832,"rgb(44,154,109)"],[0.570654439349729,"rgb(44,154,108)"],[0.5710712796998749,"rgb(44,154,108)"],[0.5714881200500208,"rgb(44,154,108)"],[0.5719049604001667,"rgb(45,154,108)"],[0.5723218007503126,"rgb(45,154,108)"],[0.5727386411004586,"rgb(45,154,108)"],[0.5731554814506045,"rgb(45,154,108)"],[0.5735723218007504,"rgb(45,154,108)"],[0.5739891621508962,"rgb(46,154,107)"],[0.5744060025010421,"rgb(46,154,107)"],[0.574822842851188,"rgb(46,154,107)"],[0.5752396832013339,"rgb(46,154,107)"],[0.5756565235514798,"rgb(46,155,107)"],[0.5760733639016257,"rgb(47,155,107)"],[0.5764902042517716,"rgb(47,155,107)"],[0.5769070446019174,"rgb(47,155,107)"],[0.5773238849520633,"rgb(47,155,106)"],[0.5777407253022092,"rgb(47,155,106)"],[0.5781575656523551,"rgb(48,155,106)"],[0.5785744060025011,"rgb(48,155,106)"],[0.578991246352647,"rgb(48,155,106)"],[0.5794080867027929,"rgb(48,155,106)"],[0.5798249270529388,"rgb(48,155,106)"],[0.5802417674030846,"rgb(49,155,106)"],[0.5806586077532305,"rgb(49,155,105)"],[0.5810754481033764,"rgb(49,155,105)"],[0.5814922884535223,"rgb(49,155,105)"],[0.5819091288036682,"rgb(49,155,105)"],[0.5823259691538141,"rgb(50,155,105)"],[0.58274280950396,"rgb(50,155,105)"],[0.5831596498541058,"rgb(50,155,105)"],[0.5835764902042517,"rgb(50,155,105)"],[0.5839933305543976,"rgb(50,155,104)"],[0.5844101709045436,"rgb(51,155,104)"],[0.5848270112546895,"rgb(51,155,104)"],[0.5852438516048354,"rgb(51,155,104)"],[0.5856606919549813,"rgb(51,155,104)"],[0.5860775323051272,"rgb(51,155,104)"],[0.586494372655273,"rgb(52,155,104)"],[0.5869112130054189,"rgb(52,155,104)"],[0.5873280533555648,"rgb(52,156,103)"],[0.5877448937057107,"rgb(52,156,103)"],[0.5881617340558566,"rgb(52,156,103)"],[0.5885785744060025,"rgb(53,156,103)"],[0.5889954147561484,"rgb(53,156,103)"],[0.5894122551062942,"rgb(53,156,103)"],[0.5898290954564401,"rgb(53,156,103)"],[0.5902459358065861,"rgb(53,156,103)"],[0.590662776156732,"rgb(54,156,102)"],[0.5910796165068779,"rgb(54,156,102)"],[0.5914964568570238,"rgb(54,156,102)"],[0.5919132972071697,"rgb(54,156,102)"],[0.5923301375573156,"rgb(54,156,102)"],[0.5927469779074614,"rgb(55,156,102)"],[0.5931638182576073,"rgb(55,156,102)"],[0.5935806586077532,"rgb(55,156,102)"],[0.5939974989578991,"rgb(55,156,101)"],[0.594414339308045,"rgb(55,156,101)"],[0.5948311796581909,"rgb(56,156,101)"],[0.5952480200083368,"rgb(56,156,101)"],[0.5956648603584827,"rgb(56,156,101)"],[0.5960817007086286,"rgb(56,156,101)"],[0.5964985410587745,"rgb(56,156,101)"],[0.5969153814089204,"rgb(57,156,101)"],[0.5973322217590663,"rgb(57,156,100)"],[0.5977490621092122,"rgb(57,156,100)"],[0.5981659024593581,"rgb(57,156,100)"],[0.598582742809504,"rgb(57,156,100)"],[0.5989995831596499,"rgb(58,156,100)"],[0.5994164235097957,"rgb(58,156,100)"],[0.5998332638599416,"rgb(58,157,100)"],[0.6002501042100875,"rgb(58,157,100)"],[0.6006669445602334,"rgb(58,157,100)"],[0.6010837849103793,"rgb(59,157,99)"],[0.6015006252605252,"rgb(59,157,99)"],[0.6019174656106712,"rgb(59,157,99)"],[0.602334305960817,"rgb(59,157,99)"],[0.6027511463109629,"rgb(59,157,99)"],[0.6031679866611088,"rgb(60,157,99)"],[0.6035848270112547,"rgb(60,157,99)"],[0.6040016673614006,"rgb(60,157,99)"],[0.6044185077115465,"rgb(60,157,98)"],[0.6048353480616924,"rgb(60,157,98)"],[0.6052521884118383,"rgb(61,157,98)"],[0.6056690287619841,"rgb(61,157,98)"],[0.60608586911213,"rgb(61,157,98)"],[0.6065027094622759,"rgb(61,157,98)"],[0.6069195498124218,"rgb(61,157,98)"],[0.6073363901625677,"rgb(62,157,98)"],[0.6077532305127137,"rgb(62,157,98)"],[0.6081700708628596,"rgb(62,157,97)"],[0.6085869112130055,"rgb(62,157,97)"],[0.6090037515631513,"rgb(62,157,97)"],[0.6094205919132972,"rgb(63,157,97)"],[0.6098374322634431,"rgb(63,157,97)"],[0.610254272613589,"rgb(63,157,97)"],[0.6106711129637349,"rgb(63,157,97)"],[0.6110879533138808,"rgb(63,157,97)"],[0.6115047936640267,"rgb(64,157,96)"],[0.6119216340141725,"rgb(64,157,96)"],[0.6123384743643184,"rgb(64,157,96)"],[0.6127553147144643,"rgb(64,157,96)"],[0.6131721550646102,"rgb(64,158,96)"],[0.6135889954147562,"rgb(65,158,96)"],[0.6140058357649021,"rgb(65,158,96)"],[0.614422676115048,"rgb(65,158,96)"],[0.6148395164651939,"rgb(65,158,96)"],[0.6152563568153397,"rgb(65,158,95)"],[0.6156731971654856,"rgb(66,158,95)"],[0.6160900375156315,"rgb(66,158,95)"],[0.6165068778657774,"rgb(66,158,95)"],[0.6169237182159233,"rgb(66,158,95)"],[0.6173405585660692,"rgb(66,158,95)"],[0.6177573989162151,"rgb(67,158,95)"],[0.618174239266361,"rgb(67,158,95)"],[0.6185910796165068,"rgb(67,158,95)"],[0.6190079199666527,"rgb(67,158,94)"],[0.6194247603167987,"rgb(67,158,94)"],[0.6198416006669446,"rgb(68,158,94)"],[0.6202584410170905,"rgb(68,158,94)"],[0.6206752813672364,"rgb(68,158,94)"],[0.6210921217173823,"rgb(68,158,94)"],[0.6215089620675281,"rgb(68,158,94)"],[0.621925802417674,"rgb(69,158,94)"],[0.6223426427678199,"rgb(69,158,93)"],[0.6227594831179658,"rgb(69,158,93)"],[0.6231763234681117,"rgb(69,158,93)"],[0.6235931638182576,"rgb(69,158,93)"],[0.6240100041684035,"rgb(70,158,93)"],[0.6244268445185494,"rgb(70,158,93)"],[0.6248436848686952,"rgb(70,158,93)"],[0.6252605252188412,"rgb(70,158,93)"],[0.6256773655689871,"rgb(70,158,93)"],[0.626094205919133,"rgb(71,158,92)"],[0.6265110462692789,"rgb(71,158,92)"],[0.6269278866194248,"rgb(71,158,92)"],[0.6273447269695707,"rgb(71,158,92)"],[0.6277615673197166,"rgb(71,159,92)"],[0.6281784076698624,"rgb(72,159,92)"],[0.6285952480200083,"rgb(72,159,92)"],[0.6290120883701542,"rgb(72,159,92)"],[0.6294289287203001,"rgb(72,159,92)"],[0.629845769070446,"rgb(72,159,92)"],[0.6302626094205919,"rgb(73,159,91)"],[0.6306794497707378,"rgb(73,159,91)"],[0.6310962901208838,"rgb(73,159,91)"],[0.6315131304710296,"rgb(73,159,91)"],[0.6319299708211755,"rgb(73,159,91)"],[0.6323468111713214,"rgb(74,159,91)"],[0.6327636515214673,"rgb(74,159,91)"],[0.6331804918716132,"rgb(74,159,91)"],[0.6335973322217591,"rgb(74,159,91)"],[0.634014172571905,"rgb(74,159,90)"],[0.6344310129220508,"rgb(75,159,90)"],[0.6348478532721967,"rgb(75,159,90)"],[0.6352646936223426,"rgb(75,159,90)"],[0.6356815339724885,"rgb(75,159,90)"],[0.6360983743226344,"rgb(75,159,90)"],[0.6365152146727803,"rgb(76,159,90)"],[0.6369320550229263,"rgb(76,159,90)"],[0.6373488953730722,"rgb(76,159,90)"],[0.637765735723218,"rgb(76,159,89)"],[0.6381825760733639,"rgb(76,159,89)"],[0.6385994164235098,"rgb(77,159,89)"],[0.6390162567736557,"rgb(77,159,89)"],[0.6394330971238016,"rgb(77,159,89)"],[0.6398499374739475,"rgb(77,159,89)"],[0.6402667778240934,"rgb(77,159,89)"],[0.6406836181742392,"rgb(78,159,89)"],[0.6411004585243851,"rgb(78,159,89)"],[0.641517298874531,"rgb(78,159,89)"],[0.6419341392246769,"rgb(78,159,88)"],[0.6423509795748228,"rgb(78,159,88)"],[0.6427678199249688,"rgb(79,159,88)"],[0.6431846602751147,"rgb(79,159,88)"],[0.6436015006252606,"rgb(79,159,88)"],[0.6440183409754064,"rgb(79,160,88)"],[0.6444351813255523,"rgb(79,160,88)"],[0.6448520216756982,"rgb(80,160,88)"],[0.6452688620258441,"rgb(80,160,88)"],[0.64568570237599,"rgb(80,160,88)"],[0.6461025427261359,"rgb(80,160,87)"],[0.6465193830762818,"rgb(80,160,87)"],[0.6469362234264276,"rgb(81,160,87)"],[0.6473530637765735,"rgb(81,160,87)"],[0.6477699041267194,"rgb(81,160,87)"],[0.6481867444768653,"rgb(81,160,87)"],[0.6486035848270113,"rgb(81,160,87)"],[0.6490204251771572,"rgb(81,160,87)"],[0.6494372655273031,"rgb(82,160,87)"],[0.649854105877449,"rgb(82,160,87)"],[0.6502709462275948,"rgb(82,160,86)"],[0.6506877865777407,"rgb(82,160,86)"],[0.6511046269278866,"rgb(82,160,86)"],[0.6515214672780325,"rgb(83,160,86)"],[0.6519383076281784,"rgb(83,160,86)"],[0.6523551479783243,"rgb(83,160,86)"],[0.6527719883284702,"rgb(83,160,86)"],[0.653188828678616,"rgb(83,160,86)"],[0.6536056690287619,"rgb(84,160,86)"],[0.6540225093789078,"rgb(84,160,86)"],[0.6544393497290538,"rgb(84,160,85)"],[0.6548561900791997,"rgb(84,160,85)"],[0.6552730304293456,"rgb(84,160,85)"],[0.6556898707794915,"rgb(85,160,85)"],[0.6561067111296374,"rgb(85,160,85)"],[0.6565235514797833,"rgb(85,160,85)"],[0.6569403918299291,"rgb(85,160,85)"],[0.657357232180075,"rgb(85,160,85)"],[0.6577740725302209,"rgb(86,160,85)"],[0.6581909128803668,"rgb(86,160,85)"],[0.6586077532305127,"rgb(86,160,85)"],[0.6590245935806586,"rgb(86,160,84)"],[0.6594414339308045,"rgb(86,160,84)"],[0.6598582742809503,"rgb(87,160,84)"],[0.6602751146310963,"rgb(87,160,84)"],[0.6606919549812422,"rgb(87,160,84)"],[0.6611087953313881,"rgb(87,160,84)"],[0.661525635681534,"rgb(87,160,84)"],[0.6619424760316799,"rgb(87,160,84)"],[0.6623593163818258,"rgb(88,161,84)"],[0.6627761567319717,"rgb(88,161,84)"],[0.6631929970821175,"rgb(88,161,83)"],[0.6636098374322634,"rgb(88,161,83)"],[0.6640266777824093,"rgb(88,161,83)"],[0.6644435181325552,"rgb(89,161,83)"],[0.6648603584827011,"rgb(89,161,83)"],[0.665277198832847,"rgb(89,161,83)"],[0.6656940391829929,"rgb(89,161,83)"],[0.6661108795331389,"rgb(89,161,83)"],[0.6665277198832847,"rgb(90,161,83)"],[0.6669445602334306,"rgb(90,161,83)"],[0.6673614005835765,"rgb(90,161,83)"],[0.6677782409337224,"rgb(90,161,83)"],[0.6681950812838683,"rgb(90,161,82)"],[0.6686119216340142,"rgb(90,161,82)"],[0.6690287619841601,"rgb(91,161,82)"],[0.669445602334306,"rgb(91,161,82)"],[0.6698624426844518,"rgb(91,161,82)"],[0.6702792830345977,"rgb(91,161,82)"],[0.6706961233847436,"rgb(91,161,82)"],[0.6711129637348895,"rgb(92,161,82)"],[0.6715298040850355,"rgb(92,161,82)"],[0.6719466444351814,"rgb(92,161,82)"],[0.6723634847853273,"rgb(92,161,82)"],[0.6727803251354731,"rgb(92,161,81)"],[0.673197165485619,"rgb(93,161,81)"],[0.6736140058357649,"rgb(93,161,81)"],[0.6740308461859108,"rgb(93,161,81)"],[0.6744476865360567,"rgb(93,161,81)"],[0.6748645268862026,"rgb(93,161,81)"],[0.6752813672363485,"rgb(93,161,81)"],[0.6756982075864943,"rgb(94,161,81)"],[0.6761150479366402,"rgb(94,161,81)"],[0.6765318882867861,"rgb(94,161,81)"],[0.676948728636932,"rgb(94,161,81)"],[0.677365568987078,"rgb(94,161,81)"],[0.6777824093372239,"rgb(95,161,80)"],[0.6781992496873698,"rgb(95,161,80)"],[0.6786160900375157,"rgb(95,161,80)"],[0.6790329303876615,"rgb(95,161,80)"],[0.6794497707378074,"rgb(95,161,80)"],[0.6798666110879533,"rgb(96,161,80)"],[0.6802834514380992,"rgb(96,161,80)"],[0.6807002917882451,"rgb(96,161,80)"],[0.681117132138391,"rgb(96,161,80)"],[0.6815339724885369,"rgb(96,161,80)"],[0.6819508128386828,"rgb(96,161,80)"],[0.6823676531888286,"rgb(97,161,80)"],[0.6827844935389745,"rgb(97,161,80)"],[0.6832013338891205,"rgb(97,161,79)"],[0.6836181742392664,"rgb(97,161,79)"],[0.6840350145894123,"rgb(97,162,79)"],[0.6844518549395582,"rgb(98,162,79)"],[0.6848686952897041,"rgb(98,162,79)"],[0.68528553563985,"rgb(98,162,79)"],[0.6857023759899958,"rgb(98,162,79)"],[0.6861192163401417,"rgb(98,162,79)"],[0.6865360566902876,"rgb(98,162,79)"],[0.6869528970404335,"rgb(99,162,79)"],[0.6873697373905794,"rgb(99,162,79)"],[0.6877865777407253,"rgb(99,162,79)"],[0.6882034180908712,"rgb(99,162,79)"],[0.688620258441017,"rgb(99,162,78)"],[0.689037098791163,"rgb(100,162,78)"],[0.6894539391413089,"rgb(100,162,78)"],[0.6898707794914548,"rgb(100,162,78)"],[0.6902876198416007,"rgb(100,162,78)"],[0.6907044601917466,"rgb(100,162,78)"],[0.6911213005418925,"rgb(100,162,78)"],[0.6915381408920384,"rgb(101,162,78)"],[0.6919549812421842,"rgb(101,162,78)"],[0.6923718215923301,"rgb(101,162,78)"],[0.692788661942476,"rgb(101,162,78)"],[0.6932055022926219,"rgb(101,162,78)"],[0.6936223426427678,"rgb(102,162,78)"],[0.6940391829929137,"rgb(102,162,77)"],[0.6944560233430596,"rgb(102,162,77)"],[0.6948728636932056,"rgb(102,162,77)"],[0.6952897040433514,"rgb(102,162,77)"],[0.6957065443934973,"rgb(102,162,77)"],[0.6961233847436432,"rgb(103,162,77)"],[0.6965402250937891,"rgb(103,162,77)"],[0.696957065443935,"rgb(103,162,77)"],[0.6973739057940809,"rgb(103,162,77)"],[0.6977907461442268,"rgb(103,162,77)"],[0.6982075864943726,"rgb(104,162,77)"],[0.6986244268445185,"rgb(104,162,77)"],[0.6990412671946644,"rgb(104,162,77)"],[0.6994581075448103,"rgb(104,162,77)"],[0.6998749478949562,"rgb(104,162,77)"],[0.7002917882451021,"rgb(104,162,76)"],[0.7007086285952481,"rgb(105,162,76)"],[0.701125468945394,"rgb(105,162,76)"],[0.7015423092955398,"rgb(105,162,76)"],[0.7019591496456857,"rgb(105,162,76)"],[0.7023759899958316,"rgb(105,162,76)"],[0.7027928303459775,"rgb(105,162,76)"],[0.7032096706961234,"rgb(106,162,76)"],[0.7036265110462693,"rgb(106,162,76)"],[0.7040433513964152,"rgb(106,162,76)"],[0.704460191746561,"rgb(106,162,76)"],[0.7048770320967069,"rgb(106,162,76)"],[0.7052938724468528,"rgb(106,162,76)"],[0.7057107127969987,"rgb(107,162,76)"],[0.7061275531471446,"rgb(107,162,76)"],[0.7065443934972906,"rgb(107,162,75)"],[0.7069612338474365,"rgb(107,162,75)"],[0.7073780741975824,"rgb(107,162,75)"],[0.7077949145477282,"rgb(108,162,75)"],[0.7082117548978741,"rgb(108,162,75)"],[0.70862859524802,"rgb(108,162,75)"],[0.7090454355981659,"rgb(108,162,75)"],[0.7094622759483118,"rgb(108,162,75)"],[0.7098791162984577,"rgb(108,162,75)"],[0.7102959566486036,"rgb(109,162,75)"],[0.7107127969987495,"rgb(109,162,75)"],[0.7111296373488953,"rgb(109,163,75)"],[0.7115464776990412,"rgb(109,163,75)"],[0.7119633180491871,"rgb(109,163,75)"],[0.7123801583993331,"rgb(109,163,75)"],[0.712796998749479,"rgb(110,163,75)"],[0.7132138390996249,"rgb(110,163,75)"],[0.7136306794497708,"rgb(110,163,74)"],[0.7140475197999167,"rgb(110,163,74)"],[0.7144643601500625,"rgb(110,163,74)"],[0.7148812005002084,"rgb(110,163,74)"],[0.7152980408503543,"rgb(111,163,74)"],[0.7157148812005002,"rgb(111,163,74)"],[0.7161317215506461,"rgb(111,163,74)"],[0.716548561900792,"rgb(111,163,74)"],[0.7169654022509379,"rgb(111,163,74)"],[0.7173822426010837,"rgb(111,163,74)"],[0.7177990829512296,"rgb(112,163,74)"],[0.7182159233013756,"rgb(112,163,74)"],[0.7186327636515215,"rgb(112,163,74)"],[0.7190496040016674,"rgb(112,163,74)"],[0.7194664443518133,"rgb(112,163,74)"],[0.7198832847019592,"rgb(112,163,74)"],[0.7203001250521051,"rgb(113,163,74)"],[0.7207169654022509,"rgb(113,163,74)"],[0.7211338057523968,"rgb(113,163,73)"],[0.7215506461025427,"rgb(113,163,73)"],[0.7219674864526886,"rgb(113,163,73)"],[0.7223843268028345,"rgb(113,163,73)"],[0.7228011671529804,"rgb(114,163,73)"],[0.7232180075031263,"rgb(114,163,73)"],[0.7236348478532721,"rgb(114,163,73)"],[0.7240516882034181,"rgb(114,163,73)"],[0.724468528553564,"rgb(114,163,73)"],[0.7248853689037099,"rgb(114,163,73)"],[0.7253022092538558,"rgb(115,163,73)"],[0.7257190496040017,"rgb(115,163,73)"],[0.7261358899541476,"rgb(115,163,73)"],[0.7265527303042935,"rgb(115,163,73)"],[0.7269695706544393,"rgb(115,163,73)"],[0.7273864110045852,"rgb(115,163,73)"],[0.7278032513547311,"rgb(116,163,73)"],[0.728220091704877,"rgb(116,163,73)"],[0.7286369320550229,"rgb(116,163,73)"],[0.7290537724051688,"rgb(116,163,73)"],[0.7294706127553147,"rgb(116,163,72)"],[0.7298874531054607,"rgb(116,163,72)"],[0.7303042934556065,"rgb(117,163,72)"],[0.7307211338057524,"rgb(117,163,72)"],[0.7311379741558983,"rgb(117,163,72)"],[0.7315548145060442,"rgb(117,163,72)"],[0.7319716548561901,"rgb(117,163,72)"],[0.732388495206336,"rgb(117,163,72)"],[0.7328053355564819,"rgb(118,163,72)"],[0.7332221759066277,"rgb(118,163,72)"],[0.7336390162567736,"rgb(118,163,72)"],[0.7340558566069195,"rgb(118,163,72)"],[0.7344726969570654,"rgb(118,163,72)"],[0.7348895373072113,"rgb(118,163,72)"],[0.7353063776573572,"rgb(119,163,72)"],[0.7357232180075032,"rgb(119,163,72)"],[0.7361400583576491,"rgb(119,163,72)"],[0.736556898707795,"rgb(119,163,72)"],[0.7369737390579408,"rgb(119,163,72)"],[0.7373905794080867,"rgb(119,163,72)"],[0.7378074197582326,"rgb(120,163,72)"],[0.7382242601083785,"rgb(120,163,72)"],[0.7386411004585244,"rgb(120,163,72)"],[0.7390579408086703,"rgb(120,163,71)"],[0.7394747811588162,"rgb(120,163,71)"],[0.739891621508962,"rgb(120,163,71)"],[0.7403084618591079,"rgb(120,163,71)"],[0.7407253022092538,"rgb(121,163,71)"],[0.7411421425593997,"rgb(121,163,71)"],[0.7415589829095457,"rgb(121,163,71)"],[0.7419758232596916,"rgb(121,163,71)"],[0.7423926636098375,"rgb(121,163,71)"],[0.7428095039599834,"rgb(121,163,71)"],[0.7432263443101292,"rgb(122,163,71)"],[0.7436431846602751,"rgb(122,163,71)"],[0.744060025010421,"rgb(122,163,71)"],[0.7444768653605669,"rgb(122,163,71)"],[0.7448937057107128,"rgb(122,163,71)"],[0.7453105460608587,"rgb(122,163,71)"],[0.7457273864110046,"rgb(123,163,71)"],[0.7461442267611504,"rgb(123,163,71)"],[0.7465610671112963,"rgb(123,163,71)"],[0.7469779074614422,"rgb(123,163,71)"],[0.7473947478115882,"rgb(123,163,71)"],[0.7478115881617341,"rgb(123,163,71)"],[0.74822842851188,"rgb(123,163,71)"],[0.7486452688620259,"rgb(124,163,71)"],[0.7490621092121718,"rgb(124,163,71)"],[0.7494789495623176,"rgb(124,163,71)"],[0.7498957899124635,"rgb(124,163,71)"],[0.7503126302626094,"rgb(124,163,71)"],[0.7507294706127553,"rgb(124,163,71)"],[0.7511463109629012,"rgb(125,164,70)"],[0.7515631513130471,"rgb(125,164,70)"],[0.751979991663193,"rgb(125,164,70)"],[0.7523968320133388,"rgb(125,164,70)"],[0.7528136723634847,"rgb(125,164,70)"],[0.7532305127136307,"rgb(125,164,70)"],[0.7536473530637766,"rgb(125,164,70)"],[0.7540641934139225,"rgb(126,164,70)"],[0.7544810337640684,"rgb(126,164,70)"],[0.7548978741142143,"rgb(126,164,70)"],[0.7553147144643602,"rgb(126,164,70)"],[0.755731554814506,"rgb(126,164,70)"],[0.7561483951646519,"rgb(126,164,70)"],[0.7565652355147978,"rgb(127,164,70)"],[0.7569820758649437,"rgb(127,164,70)"],[0.7573989162150896,"rgb(127,164,70)"],[0.7578157565652355,"rgb(127,164,70)"],[0.7582325969153814,"rgb(127,164,70)"],[0.7586494372655272,"rgb(127,164,70)"],[0.7590662776156732,"rgb(127,164,70)"],[0.7594831179658191,"rgb(128,164,70)"],[0.759899958315965,"rgb(128,164,70)"],[0.7603167986661109,"rgb(128,164,70)"],[0.7607336390162568,"rgb(128,164,70)"],[0.7611504793664027,"rgb(128,164,70)"],[0.7615673197165486,"rgb(128,164,70)"],[0.7619841600666944,"rgb(128,164,70)"],[0.7624010004168403,"rgb(129,164,70)"],[0.7628178407669862,"rgb(129,164,70)"],[0.7632346811171321,"rgb(129,164,70)"],[0.763651521467278,"rgb(129,164,70)"],[0.7640683618174239,"rgb(129,164,70)"],[0.7644852021675698,"rgb(129,164,70)"],[0.7649020425177158,"rgb(129,164,70)"],[0.7653188828678616,"rgb(130,164,70)"],[0.7657357232180075,"rgb(130,164,70)"],[0.7661525635681534,"rgb(130,164,70)"],[0.7665694039182993,"rgb(130,164,70)"],[0.7669862442684452,"rgb(130,164,70)"],[0.7674030846185911,"rgb(130,164,70)"],[0.767819924968737,"rgb(131,164,70)"],[0.7682367653188829,"rgb(131,164,70)"],[0.7686536056690287,"rgb(131,164,69)"],[0.7690704460191746,"rgb(131,164,69)"],[0.7694872863693205,"rgb(131,164,69)"],[0.7699041267194664,"rgb(131,164,69)"],[0.7703209670696123,"rgb(131,164,69)"],[0.7707378074197583,"rgb(132,164,69)"],[0.7711546477699042,"rgb(132,164,69)"],[0.77157148812005,"rgb(132,164,69)"],[0.7719883284701959,"rgb(132,164,69)"],[0.7724051688203418,"rgb(132,164,69)"],[0.7728220091704877,"rgb(132,164,69)"],[0.7732388495206336,"rgb(132,164,69)"],[0.7736556898707795,"rgb(133,164,69)"],[0.7740725302209254,"rgb(133,164,69)"],[0.7744893705710713,"rgb(133,164,69)"],[0.7749062109212171,"rgb(133,164,69)"],[0.775323051271363,"rgb(133,164,69)"],[0.7757398916215089,"rgb(133,164,69)"],[0.7761567319716548,"rgb(133,164,69)"],[0.7765735723218008,"rgb(134,164,69)"],[0.7769904126719467,"rgb(134,164,69)"],[0.7774072530220926,"rgb(134,164,69)"],[0.7778240933722385,"rgb(134,164,69)"],[0.7782409337223843,"rgb(134,164,69)"],[0.7786577740725302,"rgb(134,164,69)"],[0.7790746144226761,"rgb(134,164,69)"],[0.779491454772822,"rgb(134,164,69)"],[0.7799082951229679,"rgb(135,164,69)"],[0.7803251354731138,"rgb(135,164,69)"],[0.7807419758232597,"rgb(135,164,69)"],[0.7811588161734055,"rgb(135,164,69)"],[0.7815756565235514,"rgb(135,164,69)"],[0.7819924968736974,"rgb(135,164,69)"],[0.7824093372238433,"rgb(135,164,69)"],[0.7828261775739892,"rgb(136,164,69)"],[0.7832430179241351,"rgb(136,164,69)"],[0.783659858274281,"rgb(136,164,69)"],[0.7840766986244269,"rgb(136,164,69)"],[0.7844935389745727,"rgb(136,164,69)"],[0.7849103793247186,"rgb(136,164,69)"],[0.7853272196748645,"rgb(136,164,69)"],[0.7857440600250104,"rgb(137,164,69)"],[0.7861609003751563,"rgb(137,164,69)"],[0.7865777407253022,"rgb(137,164,69)"],[0.7869945810754481,"rgb(137,164,69)"],[0.787411421425594,"rgb(137,164,69)"],[0.78782826177574,"rgb(137,164,69)"],[0.7882451021258858,"rgb(137,164,69)"],[0.7886619424760317,"rgb(138,164,69)"],[0.7890787828261776,"rgb(138,164,69)"],[0.7894956231763235,"rgb(138,164,69)"],[0.7899124635264694,"rgb(138,164,69)"],[0.7903293038766153,"rgb(138,164,69)"],[0.7907461442267611,"rgb(138,164,69)"],[0.791162984576907,"rgb(138,164,69)"],[0.7915798249270529,"rgb(138,164,69)"],[0.7919966652771988,"rgb(139,164,69)"],[0.7924135056273447,"rgb(139,164,69)"],[0.7928303459774906,"rgb(139,164,69)"],[0.7932471863276365,"rgb(139,164,69)"],[0.7936640266777825,"rgb(139,164,69)"],[0.7940808670279283,"rgb(139,164,69)"],[0.7944977073780742,"rgb(139,164,69)"],[0.7949145477282201,"rgb(140,164,69)"],[0.795331388078366,"rgb(140,164,69)"],[0.7957482284285119,"rgb(140,164,69)"],[0.7961650687786578,"rgb(140,164,69)"],[0.7965819091288037,"rgb(140,164,69)"],[0.7969987494789496,"rgb(140,164,69)"],[0.7974155898290954,"rgb(140,164,69)"],[0.7978324301792413,"rgb(140,164,69)"],[0.7982492705293872,"rgb(141,164,69)"],[0.7986661108795331,"rgb(141,164,69)"],[0.799082951229679,"rgb(141,164,69)"],[0.799499791579825,"rgb(141,164,69)"],[0.7999166319299709,"rgb(141,164,69)"],[0.8003334722801168,"rgb(141,164,69)"],[0.8007503126302626,"rgb(141,164,69)"],[0.8011671529804085,"rgb(141,164,69)"],[0.8015839933305544,"rgb(142,164,69)"],[0.8020008336807003,"rgb(142,164,69)"],[0.8024176740308462,"rgb(142,164,69)"],[0.8028345143809921,"rgb(142,164,69)"],[0.803251354731138,"rgb(142,164,69)"],[0.8036681950812838,"rgb(142,164,69)"],[0.8040850354314297,"rgb(142,164,69)"],[0.8045018757815756,"rgb(142,164,69)"],[0.8049187161317215,"rgb(143,164,69)"],[0.8053355564818675,"rgb(143,164,69)"],[0.8057523968320134,"rgb(143,164,69)"],[0.8061692371821593,"rgb(143,164,69)"],[0.8065860775323052,"rgb(143,164,69)"],[0.807002917882451,"rgb(143,164,69)"],[0.8074197582325969,"rgb(143,164,69)"],[0.8078365985827428,"rgb(143,164,69)"],[0.8082534389328887,"rgb(144,164,69)"],[0.8086702792830346,"rgb(144,164,69)"],[0.8090871196331805,"rgb(144,164,69)"],[0.8095039599833264,"rgb(144,164,69)"],[0.8099208003334722,"rgb(144,164,69)"],[0.8103376406836181,"rgb(144,164,69)"],[0.810754481033764,"rgb(144,164,69)"],[0.81117132138391,"rgb(144,164,69)"],[0.8115881617340559,"rgb(145,164,69)"],[0.8120050020842018,"rgb(145,164,69)"],[0.8124218424343477,"rgb(145,164,69)"],[0.8128386827844936,"rgb(145,164,69)"],[0.8132555231346394,"rgb(145,164,69)"],[0.8136723634847853,"rgb(145,164,69)"],[0.8140892038349312,"rgb(145,164,70)"],[0.8145060441850771,"rgb(145,164,70)"],[0.814922884535223,"rgb(146,164,70)"],[0.8153397248853689,"rgb(146,164,70)"],[0.8157565652355148,"rgb(146,164,70)"],[0.8161734055856606,"rgb(146,164,70)"],[0.8165902459358065,"rgb(146,164,70)"],[0.8170070862859525,"rgb(146,164,70)"],[0.8174239266360984,"rgb(146,164,70)"],[0.8178407669862443,"rgb(146,164,70)"],[0.8182576073363902,"rgb(147,164,70)"],[0.8186744476865361,"rgb(147,164,70)"],[0.819091288036682,"rgb(147,164,70)"],[0.8195081283868278,"rgb(147,164,70)"],[0.8199249687369737,"rgb(147,164,70)"],[0.8203418090871196,"rgb(147,164,70)"],[0.8207586494372655,"rgb(147,164,70)"],[0.8211754897874114,"rgb(147,164,70)"],[0.8215923301375573,"rgb(148,164,70)"],[0.8220091704877032,"rgb(148,164,70)"],[0.822426010837849,"rgb(148,164,70)"],[0.822842851187995,"rgb(148,164,70)"],[0.8232596915381409,"rgb(148,164,70)"],[0.8236765318882868,"rgb(148,164,70)"],[0.8240933722384327,"rgb(148,164,70)"],[0.8245102125885786,"rgb(148,164,70)"],[0.8249270529387245,"rgb(148,164,70)"],[0.8253438932888704,"rgb(149,164,70)"],[0.8257607336390163,"rgb(149,164,70)"],[0.8261775739891621,"rgb(149,164,70)"],[0.826594414339308,"rgb(149,164,70)"],[0.8270112546894539,"rgb(149,164,70)"],[0.8274280950395998,"rgb(149,164,70)"],[0.8278449353897457,"rgb(149,164,70)"],[0.8282617757398916,"rgb(149,164,70)"],[0.8286786160900376,"rgb(150,164,70)"],[0.8290954564401835,"rgb(150,164,70)"],[0.8295122967903293,"rgb(150,164,70)"],[0.8299291371404752,"rgb(150,164,70)"],[0.8303459774906211,"rgb(150,164,70)"],[0.830762817840767,"rgb(150,164,70)"],[0.8311796581909129,"rgb(150,164,70)"],[0.8315964985410588,"rgb(150,164,71)"],[0.8320133388912047,"rgb(150,164,71)"],[0.8324301792413505,"rgb(151,164,71)"],[0.8328470195914964,"rgb(151,164,71)"],[0.8332638599416423,"rgb(151,164,71)"],[0.8336807002917882,"rgb(151,164,71)"],[0.8340975406419341,"rgb(151,164,71)"],[0.8345143809920801,"rgb(151,164,71)"],[0.834931221342226,"rgb(151,164,71)"],[0.8353480616923719,"rgb(151,164,71)"],[0.8357649020425177,"rgb(151,164,71)"],[0.8361817423926636,"rgb(152,164,71)"],[0.8365985827428095,"rgb(152,164,71)"],[0.8370154230929554,"rgb(152,164,71)"],[0.8374322634431013,"rgb(152,164,71)"],[0.8378491037932472,"rgb(152,164,71)"],[0.8382659441433931,"rgb(152,164,71)"],[0.838682784493539,"rgb(152,164,71)"],[0.8390996248436848,"rgb(152,164,71)"],[0.8395164651938307,"rgb(152,164,71)"],[0.8399333055439766,"rgb(153,164,71)"],[0.8403501458941226,"rgb(153,164,71)"],[0.8407669862442685,"rgb(153,164,71)"],[0.8411838265944144,"rgb(153,164,71)"],[0.8416006669445603,"rgb(153,164,71)"],[0.8420175072947061,"rgb(153,164,71)"],[0.842434347644852,"rgb(153,164,71)"],[0.8428511879949979,"rgb(153,164,71)"],[0.8432680283451438,"rgb(153,164,71)"],[0.8436848686952897,"rgb(154,164,72)"],[0.8441017090454356,"rgb(154,164,72)"],[0.8445185493955815,"rgb(154,164,72)"],[0.8449353897457273,"rgb(154,164,72)"],[0.8453522300958732,"rgb(154,164,72)"],[0.8457690704460191,"rgb(154,164,72)"],[0.8461859107961651,"rgb(154,164,72)"],[0.846602751146311,"rgb(154,164,72)"],[0.8470195914964569,"rgb(154,164,72)"],[0.8474364318466028,"rgb(155,164,72)"],[0.8478532721967487,"rgb(155,164,72)"],[0.8482701125468946,"rgb(155,164,72)"],[0.8486869528970404,"rgb(155,164,72)"],[0.8491037932471863,"rgb(155,164,72)"],[0.8495206335973322,"rgb(155,164,72)"],[0.8499374739474781,"rgb(155,164,72)"],[0.850354314297624,"rgb(155,164,72)"],[0.8507711546477699,"rgb(155,164,72)"],[0.8511879949979158,"rgb(155,164,72)"],[0.8516048353480616,"rgb(156,164,72)"],[0.8520216756982076,"rgb(156,164,72)"],[0.8524385160483535,"rgb(156,164,72)"],[0.8528553563984994,"rgb(156,164,72)"],[0.8532721967486453,"rgb(156,164,73)"],[0.8536890370987912,"rgb(156,164,73)"],[0.8541058774489371,"rgb(156,164,73)"],[0.854522717799083,"rgb(156,164,73)"],[0.8549395581492288,"rgb(156,164,73)"],[0.8553563984993747,"rgb(156,164,73)"],[0.8557732388495206,"rgb(157,164,73)"],[0.8561900791996665,"rgb(157,164,73)"],[0.8566069195498124,"rgb(157,164,73)"],[0.8570237598999583,"rgb(157,164,73)"],[0.8574406002501042,"rgb(157,164,73)"],[0.8578574406002502,"rgb(157,164,73)"],[0.858274280950396,"rgb(157,164,73)"],[0.8586911213005419,"rgb(157,164,73)"],[0.8591079616506878,"rgb(157,164,73)"],[0.8595248020008337,"rgb(158,164,73)"],[0.8599416423509796,"rgb(158,164,73)"],[0.8603584827011255,"rgb(158,164,73)"],[0.8607753230512714,"rgb(158,164,73)"],[0.8611921634014172,"rgb(158,164,73)"],[0.8616090037515631,"rgb(158,164,73)"],[0.862025844101709,"rgb(158,164,74)"],[0.8624426844518549,"rgb(158,164,74)"],[0.8628595248020008,"rgb(158,164,74)"],[0.8632763651521467,"rgb(158,164,74)"],[0.8636932055022927,"rgb(159,164,74)"],[0.8641100458524386,"rgb(159,164,74)"],[0.8645268862025844,"rgb(159,164,74)"],[0.8649437265527303,"rgb(159,164,74)"],[0.8653605669028762,"rgb(159,164,74)"],[0.8657774072530221,"rgb(159,164,74)"],[0.866194247603168,"rgb(159,164,74)"],[0.8666110879533139,"rgb(159,164,74)"],[0.8670279283034598,"rgb(159,164,74)"],[0.8674447686536056,"rgb(159,164,74)"],[0.8678616090037515,"rgb(159,164,74)"],[0.8682784493538974,"rgb(160,164,74)"],[0.8686952897040433,"rgb(160,164,74)"],[0.8691121300541892,"rgb(160,164,74)"],[0.8695289704043352,"rgb(160,164,75)"],[0.8699458107544811,"rgb(160,164,75)"],[0.870362651104627,"rgb(160,164,75)"],[0.8707794914547728,"rgb(160,164,75)"],[0.8711963318049187,"rgb(160,164,75)"],[0.8716131721550646,"rgb(160,164,75)"],[0.8720300125052105,"rgb(160,164,75)"],[0.8724468528553564,"rgb(161,164,75)"],[0.8728636932055023,"rgb(161,164,75)"],[0.8732805335556482,"rgb(161,164,75)"],[0.873697373905794,"rgb(161,164,75)"],[0.8741142142559399,"rgb(161,164,75)"],[0.8745310546060858,"rgb(161,164,75)"],[0.8749478949562317,"rgb(161,164,75)"],[0.8753647353063777,"rgb(161,164,75)"],[0.8757815756565236,"rgb(161,164,75)"],[0.8761984160066695,"rgb(161,164,76)"],[0.8766152563568154,"rgb(161,164,76)"],[0.8770320967069613,"rgb(162,164,76)"],[0.8774489370571071,"rgb(162,164,76)"],[0.877865777407253,"rgb(162,164,76)"],[0.8782826177573989,"rgb(162,164,76)"],[0.8786994581075448,"rgb(162,164,76)"],[0.8791162984576907,"rgb(162,164,76)"],[0.8795331388078366,"rgb(162,164,76)"],[0.8799499791579825,"rgb(162,164,76)"],[0.8803668195081283,"rgb(162,164,76)"],[0.8807836598582742,"rgb(162,164,76)"],[0.8812005002084202,"rgb(162,164,76)"],[0.8816173405585661,"rgb(163,164,76)"],[0.882034180908712,"rgb(163,164,76)"],[0.8824510212588579,"rgb(163,164,76)"],[0.8828678616090038,"rgb(163,164,77)"],[0.8832847019591497,"rgb(163,164,77)"],[0.8837015423092955,"rgb(163,164,77)"],[0.8841183826594414,"rgb(163,164,77)"],[0.8845352230095873,"rgb(163,164,77)"],[0.8849520633597332,"rgb(163,164,77)"],[0.8853689037098791,"rgb(163,164,77)"],[0.885785744060025,"rgb(163,164,77)"],[0.8862025844101709,"rgb(164,164,77)"],[0.8866194247603167,"rgb(164,164,77)"],[0.8870362651104627,"rgb(164,164,77)"],[0.8874531054606086,"rgb(164,164,77)"],[0.8878699458107545,"rgb(164,164,77)"],[0.8882867861609004,"rgb(164,164,77)"],[0.8887036265110463,"rgb(164,164,78)"],[0.8891204668611922,"rgb(164,164,78)"],[0.8895373072113381,"rgb(164,164,78)"],[0.8899541475614839,"rgb(164,164,78)"],[0.8903709879116298,"rgb(164,164,78)"],[0.8907878282617757,"rgb(165,164,78)"],[0.8912046686119216,"rgb(165,164,78)"],[0.8916215089620675,"rgb(165,164,78)"],[0.8920383493122134,"rgb(165,164,78)"],[0.8924551896623594,"rgb(165,164,78)"],[0.8928720300125053,"rgb(165,164,78)"],[0.8932888703626511,"rgb(165,164,78)"],[0.893705710712797,"rgb(165,164,78)"],[0.8941225510629429,"rgb(165,164,78)"],[0.8945393914130888,"rgb(165,164,79)"],[0.8949562317632347,"rgb(165,164,79)"],[0.8953730721133806,"rgb(165,164,79)"],[0.8957899124635265,"rgb(166,164,79)"],[0.8962067528136723,"rgb(166,164,79)"],[0.8966235931638182,"rgb(166,164,79)"],[0.8970404335139641,"rgb(166,164,79)"],[0.89745727386411,"rgb(166,164,79)"],[0.8978741142142559,"rgb(166,164,79)"],[0.8982909545644019,"rgb(166,164,79)"],[0.8987077949145478,"rgb(166,164,79)"],[0.8991246352646937,"rgb(166,164,79)"],[0.8995414756148395,"rgb(166,164,79)"],[0.8999583159649854,"rgb(166,164,80)"],[0.9003751563151313,"rgb(166,164,80)"],[0.9007919966652772,"rgb(167,164,80)"],[0.9012088370154231,"rgb(167,164,80)"],[0.901625677365569,"rgb(167,164,80)"],[0.9020425177157149,"rgb(167,164,80)"],[0.9024593580658608,"rgb(167,164,80)"],[0.9028761984160066,"rgb(167,164,80)"],[0.9032930387661525,"rgb(167,164,80)"],[0.9037098791162984,"rgb(167,164,80)"],[0.9041267194664444,"rgb(167,164,80)"],[0.9045435598165903,"rgb(167,164,80)"],[0.9049604001667362,"rgb(167,164,81)"],[0.9053772405168821,"rgb(167,164,81)"],[0.905794080867028,"rgb(168,164,81)"],[0.9062109212171738,"rgb(168,164,81)"],[0.9066277615673197,"rgb(168,164,81)"],[0.9070446019174656,"rgb(168,164,81)"],[0.9074614422676115,"rgb(168,164,81)"],[0.9078782826177574,"rgb(168,164,81)"],[0.9082951229679033,"rgb(168,164,81)"],[0.9087119633180492,"rgb(168,164,81)"],[0.909128803668195,"rgb(168,164,81)"],[0.9095456440183409,"rgb(168,164,81)"],[0.9099624843684869,"rgb(168,164,82)"],[0.9103793247186328,"rgb(168,164,82)"],[0.9107961650687787,"rgb(169,164,82)"],[0.9112130054189246,"rgb(169,164,82)"],[0.9116298457690705,"rgb(169,164,82)"],[0.9120466861192164,"rgb(169,164,82)"],[0.9124635264693622,"rgb(169,164,82)"],[0.9128803668195081,"rgb(169,164,82)"],[0.913297207169654,"rgb(169,163,82)"],[0.9137140475197999,"rgb(169,163,82)"],[0.9141308878699458,"rgb(169,163,82)"],[0.9145477282200917,"rgb(169,163,83)"],[0.9149645685702376,"rgb(169,163,83)"],[0.9153814089203834,"rgb(169,163,83)"],[0.9157982492705294,"rgb(169,163,83)"],[0.9162150896206753,"rgb(170,163,83)"],[0.9166319299708212,"rgb(170,163,83)"],[0.9170487703209671,"rgb(170,163,83)"],[0.917465610671113,"rgb(170,163,83)"],[0.9178824510212589,"rgb(170,163,83)"],[0.9182992913714048,"rgb(170,163,83)"],[0.9187161317215506,"rgb(170,163,83)"],[0.9191329720716965,"rgb(170,163,83)"],[0.9195498124218424,"rgb(170,163,84)"],[0.9199666527719883,"rgb(170,163,84)"],[0.9203834931221342,"rgb(170,163,84)"],[0.9208003334722801,"rgb(170,163,84)"],[0.921217173822426,"rgb(170,163,84)"],[0.921634014172572,"rgb(170,163,84)"],[0.9220508545227178,"rgb(171,163,84)"],[0.9224676948728637,"rgb(171,163,84)"],[0.9228845352230096,"rgb(171,163,84)"],[0.9233013755731555,"rgb(171,163,84)"],[0.9237182159233014,"rgb(171,163,85)"],[0.9241350562734473,"rgb(171,163,85)"],[0.9245518966235932,"rgb(171,163,85)"],[0.924968736973739,"rgb(171,163,85)"],[0.9253855773238849,"rgb(171,163,85)"],[0.9258024176740308,"rgb(171,163,85)"],[0.9262192580241767,"rgb(171,163,85)"],[0.9266360983743226,"rgb(171,163,85)"],[0.9270529387244685,"rgb(171,163,85)"],[0.9274697790746145,"rgb(172,163,85)"],[0.9278866194247604,"rgb(172,163,85)"],[0.9283034597749062,"rgb(172,163,86)"],[0.9287203001250521,"rgb(172,163,86)"],[0.929137140475198,"rgb(172,163,86)"],[0.9295539808253439,"rgb(172,163,86)"],[0.9299708211754898,"rgb(172,163,86)"],[0.9303876615256357,"rgb(172,163,86)"],[0.9308045018757816,"rgb(172,163,86)"],[0.9312213422259275,"rgb(172,163,86)"],[0.9316381825760733,"rgb(172,163,86)"],[0.9320550229262192,"rgb(172,163,86)"],[0.9324718632763651,"rgb(172,163,87)"],[0.932888703626511,"rgb(172,163,87)"],[0.933305543976657,"rgb(172,163,87)"],[0.9337223843268029,"rgb(173,163,87)"],[0.9341392246769488,"rgb(173,163,87)"],[0.9345560650270947,"rgb(173,163,87)"],[0.9349729053772405,"rgb(173,163,87)"],[0.9353897457273864,"rgb(173,163,87)"],[0.9358065860775323,"rgb(173,163,87)"],[0.9362234264276782,"rgb(173,163,87)"],[0.9366402667778241,"rgb(173,163,88)"],[0.93705710712797,"rgb(173,163,88)"],[0.9374739474781159,"rgb(173,163,88)"],[0.9378907878282617,"rgb(173,163,88)"],[0.9383076281784076,"rgb(173,163,88)"],[0.9387244685285535,"rgb(173,163,88)"],[0.9391413088786995,"rgb(173,163,88)"],[0.9395581492288454,"rgb(174,163,88)"],[0.9399749895789913,"rgb(174,163,88)"],[0.9403918299291372,"rgb(174,163,88)"],[0.940808670279283,"rgb(174,163,89)"],[0.9412255106294289,"rgb(174,163,89)"],[0.9416423509795748,"rgb(174,163,89)"],[0.9420591913297207,"rgb(174,163,89)"],[0.9424760316798666,"rgb(174,163,89)"],[0.9428928720300125,"rgb(174,163,89)"],[0.9433097123801584,"rgb(174,163,89)"],[0.9437265527303043,"rgb(174,163,89)"],[0.9441433930804501,"rgb(174,163,89)"],[0.944560233430596,"rgb(174,163,90)"],[0.944977073780742,"rgb(174,163,90)"],[0.9453939141308879,"rgb(174,163,90)"],[0.9458107544810338,"rgb(175,163,90)"],[0.9462275948311797,"rgb(175,163,90)"],[0.9466444351813256,"rgb(175,163,90)"],[0.9470612755314715,"rgb(175,163,90)"],[0.9474781158816173,"rgb(175,163,90)"],[0.9478949562317632,"rgb(175,163,90)"],[0.9483117965819091,"rgb(175,163,90)"],[0.948728636932055,"rgb(175,163,91)"],[0.9491454772822009,"rgb(175,163,91)"],[0.9495623176323468,"rgb(175,163,91)"],[0.9499791579824927,"rgb(175,163,91)"],[0.9503959983326385,"rgb(175,163,91)"],[0.9508128386827845,"rgb(175,163,91)"],[0.9512296790329304,"rgb(175,163,91)"],[0.9516465193830763,"rgb(175,163,91)"],[0.9520633597332222,"rgb(175,163,91)"],[0.9524802000833681,"rgb(176,163,92)"],[0.952897040433514,"rgb(176,163,92)"],[0.9533138807836599,"rgb(176,163,92)"],[0.9537307211338057,"rgb(176,163,92)"],[0.9541475614839516,"rgb(176,163,92)"],[0.9545644018340975,"rgb(176,163,92)"],[0.9549812421842434,"rgb(176,163,92)"],[0.9553980825343893,"rgb(176,163,92)"],[0.9558149228845352,"rgb(176,163,92)"],[0.9562317632346811,"rgb(176,163,93)"],[0.9566486035848271,"rgb(176,163,93)"],[0.957065443934973,"rgb(176,163,93)"],[0.9574822842851188,"rgb(176,163,93)"],[0.9578991246352647,"rgb(176,163,93)"],[0.9583159649854106,"rgb(176,163,93)"],[0.9587328053355565,"rgb(176,163,93)"],[0.9591496456857024,"rgb(176,163,93)"],[0.9595664860358483,"rgb(177,163,93)"],[0.9599833263859942,"rgb(177,163,94)"],[0.96040016673614,"rgb(177,163,94)"],[0.9608170070862859,"rgb(177,163,94)"],[0.9612338474364318,"rgb(177,163,94)"],[0.9616506877865777,"rgb(177,163,94)"],[0.9620675281367236,"rgb(177,163,94)"],[0.9624843684868696,"rgb(177,163,94)"],[0.9629012088370155,"rgb(177,163,94)"],[0.9633180491871614,"rgb(177,163,94)"],[0.9637348895373072,"rgb(177,163,95)"],[0.9641517298874531,"rgb(177,163,95)"],[0.964568570237599,"rgb(177,163,95)"],[0.9649854105877449,"rgb(177,163,95)"],[0.9654022509378908,"rgb(177,163,95)"],[0.9658190912880367,"rgb(177,163,95)"],[0.9662359316381826,"rgb(177,163,95)"],[0.9666527719883284,"rgb(178,163,95)"],[0.9670696123384743,"rgb(178,163,96)"],[0.9674864526886202,"rgb(178,163,96)"],[0.9679032930387661,"rgb(178,163,96)"],[0.9683201333889121,"rgb(178,163,96)"],[0.968736973739058,"rgb(178,163,96)"],[0.9691538140892039,"rgb(178,163,96)"],[0.9695706544393498,"rgb(178,163,96)"],[0.9699874947894956,"rgb(178,163,96)"],[0.9704043351396415,"rgb(178,163,96)"],[0.9708211754897874,"rgb(178,163,97)"],[0.9712380158399333,"rgb(178,163,97)"],[0.9716548561900792,"rgb(178,163,97)"],[0.9720716965402251,"rgb(178,163,97)"],[0.972488536890371,"rgb(178,163,97)"],[0.9729053772405168,"rgb(178,163,97)"],[0.9733222175906627,"rgb(178,163,97)"],[0.9737390579408086,"rgb(178,163,97)"],[0.9741558982909546,"rgb(179,163,98)"],[0.9745727386411005,"rgb(179,163,98)"],[0.9749895789912464,"rgb(179,163,98)"],[0.9754064193413923,"rgb(179,163,98)"],[0.9758232596915382,"rgb(179,163,98)"],[0.976240100041684,"rgb(179,163,98)"],[0.9766569403918299,"rgb(179,163,98)"],[0.9770737807419758,"rgb(179,163,98)"],[0.9774906210921217,"rgb(179,163,98)"],[0.9779074614422676,"rgb(179,163,99)"],[0.9783243017924135,"rgb(179,163,99)"],[0.9787411421425594,"rgb(179,163,99)"],[0.9791579824927052,"rgb(179,163,99)"],[0.9795748228428511,"rgb(179,163,99)"],[0.9799916631929971,"rgb(179,163,99)"],[0.980408503543143,"rgb(179,163,99)"],[0.9808253438932889,"rgb(179,163,99)"],[0.9812421842434348,"rgb(179,163,100)"],[0.9816590245935807,"rgb(179,163,100)"],[0.9820758649437266,"rgb(180,163,100)"],[0.9824927052938724,"rgb(180,163,100)"],[0.9829095456440183,"rgb(180,163,100)"],[0.9833263859941642,"rgb(180,163,100)"],[0.9837432263443101,"rgb(180,163,100)"],[0.984160066694456,"rgb(180,163,100)"],[0.9845769070446019,"rgb(180,163,101)"],[0.9849937473947478,"rgb(180,163,101)"],[0.9854105877448937,"rgb(180,163,101)"],[0.9858274280950396,"rgb(180,163,101)"],[0.9862442684451855,"rgb(180,163,101)"],[0.9866611087953314,"rgb(180,163,101)"],[0.9870779491454773,"rgb(180,163,101)"],[0.9874947894956232,"rgb(180,163,101)"],[0.9879116298457691,"rgb(180,163,102)"],[0.988328470195915,"rgb(180,163,102)"],[0.9887453105460609,"rgb(180,163,102)"],[0.9891621508962067,"rgb(180,163,102)"],[0.9895789912463526,"rgb(180,163,102)"],[0.9899958315964985,"rgb(181,163,102)"],[0.9904126719466444,"rgb(181,163,102)"],[0.9908295122967903,"rgb(181,163,102)"],[0.9912463526469362,"rgb(181,163,103)"],[0.9916631929970822,"rgb(181,163,103)"],[0.992080033347228,"rgb(181,163,103)"],[0.9924968736973739,"rgb(181,163,103)"],[0.9929137140475198,"rgb(181,163,103)"],[0.9933305543976657,"rgb(181,163,103)"],[0.9937473947478116,"rgb(181,163,103)"],[0.9941642350979575,"rgb(181,163,103)"],[0.9945810754481034,"rgb(181,163,104)"],[0.9949979157982493,"rgb(181,163,104)"],[0.9954147561483951,"rgb(181,163,104)"],[0.995831596498541,"rgb(181,163,104)"],[0.9962484368486869,"rgb(181,163,104)"],[0.9966652771988328,"rgb(181,163,104)"],[0.9970821175489787,"rgb(181,163,104)"],[0.9974989578991247,"rgb(181,163,104)"],[0.9979157982492706,"rgb(181,163,105)"],[0.9983326385994165,"rgb(181,163,105)"],[0.9987494789495623,"rgb(181,163,105)"],[0.9991663192997082,"rgb(182,163,105)"],[0.9995831596498541,"rgb(182,163,105)"],[1.0,"rgb(182,163,105)"]],"size":2,"cmax":250.0,"showscale":true}}], {"xaxis":{"gridcolor":"white","title":{"text":"x"},"zerolinecolor":"white","constrain":"domain"},"modebar":{"color":"gray","activecolor":"rgb(229,236,246)","bgcolor":"rgba(0,0,0,0)","orientation":"h"},"paper_bgcolor":"rgba(0,0,0,0)","hovermode":"closest","template":{"layout":{"coloraxis":{"colorbar":{"ticks":"","outlinewidth":0}},"xaxis":{"gridcolor":"white","zerolinewidth":2,"title":{"standoff":15},"ticks":"","zerolinecolor":"white","automargin":true,"linecolor":"white"},"hovermode":"closest","paper_bgcolor":"white","geo":{"showlakes":true,"showland":true,"landcolor":"#E5ECF6","bgcolor":"white","subunitcolor":"white","lakecolor":"white"},"colorscale":{"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]},"yaxis":{"gridcolor":"white","zerolinewidth":2,"title":{"standoff":15},"ticks":"","zerolinecolor":"white","automargin":true,"linecolor":"white"},"shapedefaults":{"line":{"color":"#2a3f5f"}},"hoverlabel":{"align":"left"},"mapbox":{"style":"light"},"polar":{"angularaxis":{"gridcolor":"white","ticks":"","linecolor":"white"},"bgcolor":"#E5ECF6","radialaxis":{"gridcolor":"white","ticks":"","linecolor":"white"}},"autotypenumbers":"strict","font":{"color":"#2a3f5f"},"ternary":{"baxis":{"gridcolor":"white","ticks":"","linecolor":"white"},"bgcolor":"#E5ECF6","caxis":{"gridcolor":"white","ticks":"","linecolor":"white"},"aaxis":{"gridcolor":"white","ticks":"","linecolor":"white"}},"annotationdefaults":{"arrowhead":0,"arrowwidth":1,"arrowcolor":"#2a3f5f"},"plot_bgcolor":"#E5ECF6","title":{"x":0.05},"scene":{"xaxis":{"gridcolor":"white","gridwidth":2,"backgroundcolor":"#E5ECF6","ticks":"","showbackground":true,"zerolinecolor":"white","linecolor":"white"},"zaxis":{"gridcolor":"white","gridwidth":2,"backgroundcolor":"#E5ECF6","ticks":"","showbackground":true,"zerolinecolor":"white","linecolor":"white"},"yaxis":{"gridcolor":"white","gridwidth":2,"backgroundcolor":"#E5ECF6","ticks":"","showbackground":true,"zerolinecolor":"white","linecolor":"white"}},"colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"]},"data":{"barpolar":[{"type":"barpolar","marker":{"line":{"color":"#E5ECF6","width":0.5}}}],"carpet":[{"aaxis":{"gridcolor":"white","endlinecolor":"#2a3f5f","minorgridcolor":"white","startlinecolor":"#2a3f5f","linecolor":"white"},"type":"carpet","baxis":{"gridcolor":"white","endlinecolor":"#2a3f5f","minorgridcolor":"white","startlinecolor":"#2a3f5f","linecolor":"white"}}],"scatterpolar":[{"type":"scatterpolar","marker":{"colorbar":{"ticks":"","outlinewidth":0}}}],"parcoords":[{"line":{"colorbar":{"ticks":"","outlinewidth":0}},"type":"parcoords"}],"scatter":[{"type":"scatter","marker":{"colorbar":{"ticks":"","outlinewidth":0}}}],"histogram2dcontour":[{"colorbar":{"ticks":"","outlinewidth":0},"type":"histogram2dcontour","colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"contour":[{"colorbar":{"ticks":"","outlinewidth":0},"type":"contour","colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"scattercarpet":[{"type":"scattercarpet","marker":{"colorbar":{"ticks":"","outlinewidth":0}}}],"mesh3d":[{"colorbar":{"ticks":"","outlinewidth":0},"type":"mesh3d"}],"surface":[{"colorbar":{"ticks":"","outlinewidth":0},"type":"surface","colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"scattermapbox":[{"type":"scattermapbox","marker":{"colorbar":{"ticks":"","outlinewidth":0}}}],"scattergeo":[{"type":"scattergeo","marker":{"colorbar":{"ticks":"","outlinewidth":0}}}],"histogram":[{"type":"histogram","marker":{"colorbar":{"ticks":"","outlinewidth":0}}}],"pie":[{"type":"pie","automargin":true}],"choropleth":[{"colorbar":{"ticks":"","outlinewidth":0},"type":"choropleth"}],"heatmapgl":[{"colorbar":{"ticks":"","outlinewidth":0},"type":"heatmapgl","colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"bar":[{"type":"bar","error_y":{"color":"#2a3f5f"},"error_x":{"color":"#2a3f5f"},"marker":{"line":{"color":"#E5ECF6","width":0.5}}}],"heatmap":[{"colorbar":{"ticks":"","outlinewidth":0},"type":"heatmap","colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"contourcarpet":[{"colorbar":{"ticks":"","outlinewidth":0},"type":"contourcarpet"}],"table":[{"type":"table","header":{"line":{"color":"white"},"fill":{"color":"#C8D4E3"}},"cells":{"line":{"color":"white"},"fill":{"color":"#EBF0F8"}}}],"scatter3d":[{"line":{"colorbar":{"ticks":"","outlinewidth":0}},"type":"scatter3d","marker":{"colorbar":{"ticks":"","outlinewidth":0}}}],"scattergl":[{"type":"scattergl","marker":{"colorbar":{"ticks":"","outlinewidth":0}}}],"histogram2d":[{"colorbar":{"ticks":"","outlinewidth":0},"type":"histogram2d","colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"scatterternary":[{"type":"scatterternary","marker":{"colorbar":{"ticks":"","outlinewidth":0}}}],"scatterpolargl":[{"type":"scatterpolargl","marker":{"colorbar":{"ticks":"","outlinewidth":0}}}]}},"height":400,"yaxis":{"gridcolor":"white","scaleanchor":"x","title":{"text":"y"},"zerolinecolor":"white"},"font":{"color":"gray"},"scene":{"xaxis":{"gridcolor":"white","backgroundcolor":"rgb(229,236,246)","title":"x","range":[-10.6,10.6],"ticksuffix":" cm","zerolinecolor":"white"},"aspectratio":{"y":1,"z":1,"x":1},"yaxis":{"gridcolor":"white","backgroundcolor":"rgb(229,236,246)","title":"y","range":[-10.6,10.6],"ticksuffix":" cm","zerolinecolor":"white"},"zaxis":{"gridcolor":"white","backgroundcolor":"rgb(229,236,246)","title":"z","range":[-10.6,10.6],"ticksuffix":" cm","zerolinecolor":"white"},"aspectmode":"manual"},"title":"brain3D: T2","plot_bgcolor":"rgb(229,236,246)","margin":{"l":0,"b":50,"r":0,"t":50}}, {"modeBarButtonsToRemove":["zoom","pan","tableRotation","resetCameraLastSave3d","orbitRotation","resetCameraDefault3d"],"displaylogo":false,"toImageButtonOptions":{"format":"svg"},"editable":false,"responsive":true,"staticPlot":false,"scrollZoom":true}, diff --git a/dev/assets/examples/3-profile.html b/dev/assets/examples/3-profile.html index 1f07f10d9..2a6e26121 100644 --- a/dev/assets/examples/3-profile.html +++ b/dev/assets/examples/3-profile.html @@ -9,7 +9,7 @@
@@ -17,9 +17,9 @@ window.PLOTLYENV = window.PLOTLYENV || {} - if (document.getElementById('6f21cf2f-52bb-4024-aad2-e243d90b1362')) { + if (document.getElementById('319d8823-a7ac-47bc-a573-013aa3bd9db1')) { Plotly.newPlot( - '6f21cf2f-52bb-4024-aad2-e243d90b1362', + '319d8823-a7ac-47bc-a573-013aa3bd9db1', [{"y":[2.2010569e-5,2.3161881e-5,1.5105233e-5,1.7800938e-6,8.983168e-6,1.0341484e-5,1.831812e-7,1.7137627e-5,3.172857e-5,3.4703513e-5,2.269983e-5,1.3259992e-6,1.755733e-5,2.1526961e-5,5.4353213e-6,2.4290444e-5,5.1866577e-5,6.04203e-5,4.1164363e-5,1.1112404e-6,3.825224e-5,5.201695e-5,2.5938465e-5,3.2822416e-5,9.5020274e-5,0.00012327047,9.2130904e-5,7.383173e-6,9.0073256e-5,0.00014126471,0.00010049846,3.2413674e-5,0.00020073334,0.00030803666,0.00026952935,6.840098e-5,0.00021050924,0.00039738044,0.00031249988,0.0001247268,0.0008105687,0.0014541507,0.001688993,0.0012915831,0.00041896623,0.00026207813,0.00031826572,0.003214663,0.008780128,0.015878381,0.0212762,0.019499324,0.003364829,0.0347813,0.10122335,0.19870576,0.32429504,0.4683488,0.61566544,0.7490962,0.8552285,0.92813873,0.97043514,0.9905619,0.9979649,0.99981743,1.0000145,1.0000416,0.9994531,0.9963839,0.98575675,0.9592658,0.9075231,0.8234053,0.70712256,0.56726646,0.41911617,0.27974096,0.16279036,0.075656705,0.019175904,0.01082108,0.021308115,0.019961337,0.013494369,0.0066588516,0.0019468305,8.761223e-5,0.000117491734,0.00073205377,0.0014949095,0.0016753952,0.0012677094,0.0005692729,5.835738e-5,0.00037924826,0.00035715598,0.00011825945,0.0001504452,0.00030190128,0.00028503244,0.0001463291,1.9591052e-5,0.00012573543,0.00013285856,5.9518105e-5,3.968963e-5,0.00010947554,0.00011977709,7.615971e-5,1.1145916e-5,3.9240975e-5,5.164713e-5,2.6790589e-5,1.569147e-5,5.0510618e-5,6.0480805e-5,4.402303e-5,1.3610557e-5,1.291955e-5,2.2400878e-5,1.2315685e-5,8.881037e-6,2.8182616e-5,3.532621e-5,2.7880553e-5,1.1138791e-5,4.64323e-6,1.1247354e-5,6.207962e-6,6.332885e-6,1.8693221e-5,2.3855708e-5,1.9582574e-5,8.8737315e-6,1.9426361e-6,7.072144e-6,4.1411504e-6,4.6141317e-6,1.3846434e-5,1.8315082e-5,1.5733594e-5,7.78312e-6,9.568212e-7,5.6139893e-6,4.0945265e-6,2.5412564e-6,1.0495553e-5,1.5189111e-5,1.40291195e-5,7.905568e-6,1.5743221e-7,4.9226383e-6,4.8977317e-6,2.5712424e-7,7.422712e-6,1.2643998e-5,1.3148848e-5,8.766997e-6,1.8263198e-6,3.9751094e-6,5.4498205e-6,2.1170972e-6,4.2796087e-6,1.0095532e-5,1.2390522e-5,9.7847405e-6,3.7894454e-6,2.36017e-6,5.5499645e-6,4.095236e-6,1.1093928e-6,7.272313e-6,1.0931195e-5,1.0472464e-5,5.871406e-6,2.4626934e-7,4.756689e-6,5.2776895e-6,1.7607338e-6,4.09057e-6,8.986305e-6,1.0428119e-5,7.735841e-6,2.161442e-6,3.0217502e-6,5.5080204e-6,3.8877793e-6,9.335241e-7,6.3432067e-6,9.517851e-6,8.882283e-6,4.6994683e-6,7.8810336e-7,4.736504e-6,5.0767444e-6,1.833304e-6,3.3548727e-6,7.82431e-6,9.039553e-6],"type":"scatter","name":"Slice 1","x":[-2.0,-1.9798994974874373,-1.9597989949748744,-1.9396984924623115,-1.9195979899497488,-1.899497487437186,-1.8793969849246233,-1.8592964824120604,-1.8391959798994975,-1.8190954773869348,-1.7989949748743719,-1.778894472361809,-1.7587939698492463,-1.7386934673366834,-1.7185929648241207,-1.6984924623115578,-1.678391959798995,-1.6582914572864322,-1.6381909547738693,-1.6180904522613067,-1.5979899497487438,-1.5778894472361809,-1.5577889447236182,-1.5376884422110553,-1.5175879396984926,-1.4974874371859297,-1.4773869346733668,-1.4572864321608041,-1.4371859296482412,-1.4170854271356783,-1.3969849246231156,-1.3768844221105527,-1.35678391959799,-1.3366834170854272,-1.3165829145728642,-1.2964824120603016,-1.2763819095477387,-1.256281407035176,-1.236180904522613,-1.2160804020100502,-1.1959798994974875,-1.1758793969849246,-1.155778894472362,-1.135678391959799,-1.1155778894472361,-1.0954773869346734,-1.0753768844221105,-1.0552763819095479,-1.035175879396985,-1.015075376884422,-0.9949748743718593,-0.9748743718592965,-0.9547738693467337,-0.9346733668341709,-0.9145728643216081,-0.8944723618090452,-0.8743718592964824,-0.8542713567839196,-0.8341708542713568,-0.8140703517587939,-0.7939698492462312,-0.7738693467336684,-0.7537688442211056,-0.7336683417085428,-0.7135678391959799,-0.6934673366834171,-0.6733668341708543,-0.6532663316582915,-0.6331658291457286,-0.6130653266331658,-0.592964824120603,-0.5728643216080402,-0.5527638190954774,-0.5326633165829145,-0.5125628140703518,-0.49246231155778897,-0.4723618090452261,-0.45226130653266333,-0.4321608040201005,-0.4120603015075377,-0.3919597989949749,-0.37185929648241206,-0.35175879396984927,-0.3316582914572864,-0.31155778894472363,-0.2914572864321608,-0.271356783919598,-0.25125628140703515,-0.23115577889447236,-0.21105527638190955,-0.19095477386934673,-0.1708542713567839,-0.15075376884422112,-0.1306532663316583,-0.11055276381909548,-0.09045226130653267,-0.07035175879396985,-0.05025125628140704,-0.030150753768844223,-0.010050251256281407,0.010050251256281407,0.030150753768844223,0.05025125628140704,0.07035175879396985,0.09045226130653267,0.11055276381909548,0.1306532663316583,0.15075376884422112,0.1708542713567839,0.19095477386934673,0.21105527638190955,0.23115577889447236,0.25125628140703515,0.271356783919598,0.2914572864321608,0.31155778894472363,0.3316582914572864,0.35175879396984927,0.37185929648241206,0.3919597989949749,0.4120603015075377,0.4321608040201005,0.45226130653266333,0.4723618090452261,0.49246231155778897,0.5125628140703518,0.5326633165829145,0.5527638190954774,0.5728643216080402,0.592964824120603,0.6130653266331658,0.6331658291457286,0.6532663316582915,0.6733668341708543,0.6934673366834171,0.7135678391959799,0.7336683417085428,0.7537688442211056,0.7738693467336684,0.7939698492462312,0.8140703517587939,0.8341708542713568,0.8542713567839196,0.8743718592964824,0.8944723618090452,0.9145728643216081,0.9346733668341709,0.9547738693467337,0.9748743718592965,0.9949748743718593,1.015075376884422,1.035175879396985,1.0552763819095479,1.0753768844221105,1.0954773869346734,1.1155778894472361,1.135678391959799,1.155778894472362,1.1758793969849246,1.1959798994974875,1.2160804020100502,1.236180904522613,1.256281407035176,1.2763819095477387,1.2964824120603016,1.3165829145728642,1.3366834170854272,1.35678391959799,1.3768844221105527,1.3969849246231156,1.4170854271356783,1.4371859296482412,1.4572864321608041,1.4773869346733668,1.4974874371859297,1.5175879396984926,1.5376884422110553,1.5577889447236182,1.5778894472361809,1.5979899497487438,1.6180904522613067,1.6381909547738693,1.6582914572864322,1.678391959798995,1.6984924623115578,1.7185929648241207,1.7386934673366834,1.7587939698492463,1.778894472361809,1.7989949748743719,1.8190954773869348,1.8391959798994975,1.8592964824120604,1.8793969849246233,1.899497487437186,1.9195979899497488,1.9396984924623115,1.9597989949748744,1.9798994974874373,2.0]},{"y":[1.0541044e-5,1.2334521e-5,9.323167e-6,3.0582191e-6,2.9633281e-6,5.6449317e-6,3.2708049e-6,2.9603825e-6,9.726141e-6,1.3439214e-5,1.20689565e-5,6.2078943e-6,8.552523e-7,5.2687774e-6,4.380883e-6,1.4359752e-6,9.200495e-6,1.4607364e-5,1.4749055e-5,9.332724e-6,1.3030584e-6,4.8090474e-6,5.2919354e-6,4.406131e-7,9.359367e-6,1.660231e-5,1.8101331e-5,1.2534088e-5,2.938746e-6,5.136748e-6,6.7663177e-6,4.7230813e-7,1.08412005e-5,2.094197e-5,2.366798e-5,1.7049235e-5,4.0610253e-6,7.64743e-6,1.0892434e-5,2.3683917e-6,1.4177963e-5,2.9958213e-5,3.5226887e-5,2.5608453e-5,5.0456097e-6,1.5195824e-5,2.2274873e-5,9.485073e-6,1.8836681e-5,4.8162077e-5,6.078636e-5,4.6057055e-5,8.516815e-6,3.28123e-5,5.2414496e-5,3.3082102e-5,2.1747896e-5,8.603895e-5,0.00012233613,0.000101583515,2.4010626e-5,7.53743e-5,0.00013840514,0.0001145662,5.5433056e-6,0.00017421322,0.00029851572,0.00028805283,0.00011102044,0.00016511387,0.00038076562,0.00035086367,2.9144117e-5,0.00068967906,0.001365973,0.0016911967,0.0014014152,0.0005749747,0.00020444038,8.471111e-5,0.0025418852,0.007692361,0.014697896,0.020702433,0.02058524,0.0073826783,0.026593018,0.08800572,0.18032785,0.30172393,0.4436311,0.5916115,0.728511,0.8398119,0.9182742,0.9651377,0.9883379,0.9972702,0.99974555,1.0000317,1.0000317,0.99974555,0.9972702,0.9883379,0.9651377,0.9182742,0.8398119,0.728511,0.5916115,0.4436311,0.30172393,0.18032785,0.08800572,0.026593018,0.0073826783,0.02058524,0.020702433,0.014697896,0.007692361,0.0025418852,8.471111e-5,0.00020444038,0.0005749747,0.0014014152,0.0016911967,0.001365973,0.00068967906,2.9144117e-5,0.00035086367,0.00038076562,0.00016511387,0.00011102044,0.00028805283,0.00029851572,0.00017421322,5.5433056e-6,0.0001145662,0.00013840514,7.53743e-5,2.4010626e-5,0.000101583515,0.00012233613,8.603895e-5,2.1747896e-5,3.3082102e-5,5.2414496e-5,3.28123e-5,8.516815e-6,4.6057055e-5,6.078636e-5,4.8162077e-5,1.8836681e-5,9.485073e-6,2.2274873e-5,1.5195824e-5,5.0456097e-6,2.5608453e-5,3.5226887e-5,2.9958213e-5,1.4177963e-5,2.3683917e-6,1.0892434e-5,7.64743e-6,4.0610253e-6,1.7049235e-5,2.366798e-5,2.094197e-5,1.08412005e-5,4.7230813e-7,6.7663177e-6,5.136748e-6,2.938746e-6,1.2534088e-5,1.8101331e-5,1.660231e-5,9.359367e-6,4.406131e-7,5.2919354e-6,4.8090474e-6,1.3030584e-6,9.332724e-6,1.4749055e-5,1.4607364e-5,9.200495e-6,1.4359752e-6,4.380883e-6,5.2687774e-6,8.552523e-7,6.2078943e-6,1.20689565e-5,1.3439214e-5,9.726141e-6,2.9603825e-6,3.2708049e-6,5.6449317e-6,2.9633281e-6,3.0582191e-6,9.323167e-6,1.2334521e-5,1.0541044e-5],"type":"scatter","name":"Slice 2","x":[-2.0,-1.9798994974874373,-1.9597989949748744,-1.9396984924623115,-1.9195979899497488,-1.899497487437186,-1.8793969849246233,-1.8592964824120604,-1.8391959798994975,-1.8190954773869348,-1.7989949748743719,-1.778894472361809,-1.7587939698492463,-1.7386934673366834,-1.7185929648241207,-1.6984924623115578,-1.678391959798995,-1.6582914572864322,-1.6381909547738693,-1.6180904522613067,-1.5979899497487438,-1.5778894472361809,-1.5577889447236182,-1.5376884422110553,-1.5175879396984926,-1.4974874371859297,-1.4773869346733668,-1.4572864321608041,-1.4371859296482412,-1.4170854271356783,-1.3969849246231156,-1.3768844221105527,-1.35678391959799,-1.3366834170854272,-1.3165829145728642,-1.2964824120603016,-1.2763819095477387,-1.256281407035176,-1.236180904522613,-1.2160804020100502,-1.1959798994974875,-1.1758793969849246,-1.155778894472362,-1.135678391959799,-1.1155778894472361,-1.0954773869346734,-1.0753768844221105,-1.0552763819095479,-1.035175879396985,-1.015075376884422,-0.9949748743718593,-0.9748743718592965,-0.9547738693467337,-0.9346733668341709,-0.9145728643216081,-0.8944723618090452,-0.8743718592964824,-0.8542713567839196,-0.8341708542713568,-0.8140703517587939,-0.7939698492462312,-0.7738693467336684,-0.7537688442211056,-0.7336683417085428,-0.7135678391959799,-0.6934673366834171,-0.6733668341708543,-0.6532663316582915,-0.6331658291457286,-0.6130653266331658,-0.592964824120603,-0.5728643216080402,-0.5527638190954774,-0.5326633165829145,-0.5125628140703518,-0.49246231155778897,-0.4723618090452261,-0.45226130653266333,-0.4321608040201005,-0.4120603015075377,-0.3919597989949749,-0.37185929648241206,-0.35175879396984927,-0.3316582914572864,-0.31155778894472363,-0.2914572864321608,-0.271356783919598,-0.25125628140703515,-0.23115577889447236,-0.21105527638190955,-0.19095477386934673,-0.1708542713567839,-0.15075376884422112,-0.1306532663316583,-0.11055276381909548,-0.09045226130653267,-0.07035175879396985,-0.05025125628140704,-0.030150753768844223,-0.010050251256281407,0.010050251256281407,0.030150753768844223,0.05025125628140704,0.07035175879396985,0.09045226130653267,0.11055276381909548,0.1306532663316583,0.15075376884422112,0.1708542713567839,0.19095477386934673,0.21105527638190955,0.23115577889447236,0.25125628140703515,0.271356783919598,0.2914572864321608,0.31155778894472363,0.3316582914572864,0.35175879396984927,0.37185929648241206,0.3919597989949749,0.4120603015075377,0.4321608040201005,0.45226130653266333,0.4723618090452261,0.49246231155778897,0.5125628140703518,0.5326633165829145,0.5527638190954774,0.5728643216080402,0.592964824120603,0.6130653266331658,0.6331658291457286,0.6532663316582915,0.6733668341708543,0.6934673366834171,0.7135678391959799,0.7336683417085428,0.7537688442211056,0.7738693467336684,0.7939698492462312,0.8140703517587939,0.8341708542713568,0.8542713567839196,0.8743718592964824,0.8944723618090452,0.9145728643216081,0.9346733668341709,0.9547738693467337,0.9748743718592965,0.9949748743718593,1.015075376884422,1.035175879396985,1.0552763819095479,1.0753768844221105,1.0954773869346734,1.1155778894472361,1.135678391959799,1.155778894472362,1.1758793969849246,1.1959798994974875,1.2160804020100502,1.236180904522613,1.256281407035176,1.2763819095477387,1.2964824120603016,1.3165829145728642,1.3366834170854272,1.35678391959799,1.3768844221105527,1.3969849246231156,1.4170854271356783,1.4371859296482412,1.4572864321608041,1.4773869346733668,1.4974874371859297,1.5175879396984926,1.5376884422110553,1.5577889447236182,1.5778894472361809,1.5979899497487438,1.6180904522613067,1.6381909547738693,1.6582914572864322,1.678391959798995,1.6984924623115578,1.7185929648241207,1.7386934673366834,1.7587939698492463,1.778894472361809,1.7989949748743719,1.8190954773869348,1.8391959798994975,1.8592964824120604,1.8793969849246233,1.899497487437186,1.9195979899497488,1.9396984924623115,1.9597989949748744,1.9798994974874373,2.0]},{"y":[9.039553e-6,7.82431e-6,3.3548727e-6,1.833304e-6,5.0767444e-6,4.736504e-6,7.8810336e-7,4.6994683e-6,8.882283e-6,9.517851e-6,6.3432067e-6,9.335241e-7,3.8877793e-6,5.5080204e-6,3.0217502e-6,2.161442e-6,7.735841e-6,1.0428119e-5,8.986305e-6,4.09057e-6,1.7607338e-6,5.2776895e-6,4.756689e-6,2.4626934e-7,5.871406e-6,1.0472464e-5,1.0931195e-5,7.272313e-6,1.1093928e-6,4.095236e-6,5.5499645e-6,2.36017e-6,3.7894454e-6,9.7847405e-6,1.2390522e-5,1.0095532e-5,4.2796087e-6,2.1170972e-6,5.4498205e-6,3.9751094e-6,1.8263198e-6,8.766997e-6,1.3148848e-5,1.2643998e-5,7.422712e-6,2.5712424e-7,4.8977317e-6,4.9226383e-6,1.5743221e-7,7.905568e-6,1.40291195e-5,1.5189111e-5,1.0495553e-5,2.5412564e-6,4.0945265e-6,5.6139893e-6,9.568212e-7,7.78312e-6,1.5733594e-5,1.8315082e-5,1.3846434e-5,4.6141317e-6,4.1411504e-6,7.072144e-6,1.9426361e-6,8.8737315e-6,1.9582574e-5,2.3855708e-5,1.8693221e-5,6.332885e-6,6.207962e-6,1.1247354e-5,4.64323e-6,1.1138791e-5,2.7880553e-5,3.532621e-5,2.8182616e-5,8.881037e-6,1.2315685e-5,2.2400878e-5,1.291955e-5,1.3610557e-5,4.402303e-5,6.0480805e-5,5.0510618e-5,1.569147e-5,2.6790589e-5,5.164713e-5,3.9240975e-5,1.1145916e-5,7.615971e-5,0.00011977709,0.00010947554,3.968963e-5,5.9518105e-5,0.00013285856,0.00012573543,1.9591052e-5,0.0001463291,0.00028503244,0.00030190128,0.0001504452,0.00011825945,0.00035715598,0.00037924826,5.835738e-5,0.0005692729,0.0012677094,0.0016753952,0.0014949095,0.00073205377,0.000117491734,8.761223e-5,0.0019468305,0.0066588516,0.013494369,0.019961337,0.021308115,0.01082108,0.019175904,0.075656705,0.16279036,0.27974096,0.41911617,0.56726646,0.70712256,0.8234053,0.9075231,0.9592658,0.98575675,0.9963839,0.9994531,1.0000416,1.0000145,0.99981743,0.9979649,0.9905619,0.97043514,0.92813873,0.8552285,0.7490962,0.61566544,0.4683488,0.32429504,0.19870576,0.10122335,0.0347813,0.003364829,0.019499324,0.0212762,0.015878381,0.008780128,0.003214663,0.00031826572,0.00026207813,0.00041896623,0.0012915831,0.001688993,0.0014541507,0.0008105687,0.0001247268,0.00031249988,0.00039738044,0.00021050924,6.840098e-5,0.00026952935,0.00030803666,0.00020073334,3.2413674e-5,0.00010049846,0.00014126471,9.0073256e-5,7.383173e-6,9.2130904e-5,0.00012327047,9.5020274e-5,3.2822416e-5,2.5938465e-5,5.201695e-5,3.825224e-5,1.1112404e-6,4.1164363e-5,6.04203e-5,5.1866577e-5,2.4290444e-5,5.4353213e-6,2.1526961e-5,1.755733e-5,1.3259992e-6,2.269983e-5,3.4703513e-5,3.172857e-5,1.7137627e-5,1.831812e-7,1.0341484e-5,8.983168e-6,1.7800938e-6,1.5105233e-5,2.3161881e-5,2.2010569e-5],"type":"scatter","name":"Slice 3","x":[-2.0,-1.9798994974874373,-1.9597989949748744,-1.9396984924623115,-1.9195979899497488,-1.899497487437186,-1.8793969849246233,-1.8592964824120604,-1.8391959798994975,-1.8190954773869348,-1.7989949748743719,-1.778894472361809,-1.7587939698492463,-1.7386934673366834,-1.7185929648241207,-1.6984924623115578,-1.678391959798995,-1.6582914572864322,-1.6381909547738693,-1.6180904522613067,-1.5979899497487438,-1.5778894472361809,-1.5577889447236182,-1.5376884422110553,-1.5175879396984926,-1.4974874371859297,-1.4773869346733668,-1.4572864321608041,-1.4371859296482412,-1.4170854271356783,-1.3969849246231156,-1.3768844221105527,-1.35678391959799,-1.3366834170854272,-1.3165829145728642,-1.2964824120603016,-1.2763819095477387,-1.256281407035176,-1.236180904522613,-1.2160804020100502,-1.1959798994974875,-1.1758793969849246,-1.155778894472362,-1.135678391959799,-1.1155778894472361,-1.0954773869346734,-1.0753768844221105,-1.0552763819095479,-1.035175879396985,-1.015075376884422,-0.9949748743718593,-0.9748743718592965,-0.9547738693467337,-0.9346733668341709,-0.9145728643216081,-0.8944723618090452,-0.8743718592964824,-0.8542713567839196,-0.8341708542713568,-0.8140703517587939,-0.7939698492462312,-0.7738693467336684,-0.7537688442211056,-0.7336683417085428,-0.7135678391959799,-0.6934673366834171,-0.6733668341708543,-0.6532663316582915,-0.6331658291457286,-0.6130653266331658,-0.592964824120603,-0.5728643216080402,-0.5527638190954774,-0.5326633165829145,-0.5125628140703518,-0.49246231155778897,-0.4723618090452261,-0.45226130653266333,-0.4321608040201005,-0.4120603015075377,-0.3919597989949749,-0.37185929648241206,-0.35175879396984927,-0.3316582914572864,-0.31155778894472363,-0.2914572864321608,-0.271356783919598,-0.25125628140703515,-0.23115577889447236,-0.21105527638190955,-0.19095477386934673,-0.1708542713567839,-0.15075376884422112,-0.1306532663316583,-0.11055276381909548,-0.09045226130653267,-0.07035175879396985,-0.05025125628140704,-0.030150753768844223,-0.010050251256281407,0.010050251256281407,0.030150753768844223,0.05025125628140704,0.07035175879396985,0.09045226130653267,0.11055276381909548,0.1306532663316583,0.15075376884422112,0.1708542713567839,0.19095477386934673,0.21105527638190955,0.23115577889447236,0.25125628140703515,0.271356783919598,0.2914572864321608,0.31155778894472363,0.3316582914572864,0.35175879396984927,0.37185929648241206,0.3919597989949749,0.4120603015075377,0.4321608040201005,0.45226130653266333,0.4723618090452261,0.49246231155778897,0.5125628140703518,0.5326633165829145,0.5527638190954774,0.5728643216080402,0.592964824120603,0.6130653266331658,0.6331658291457286,0.6532663316582915,0.6733668341708543,0.6934673366834171,0.7135678391959799,0.7336683417085428,0.7537688442211056,0.7738693467336684,0.7939698492462312,0.8140703517587939,0.8341708542713568,0.8542713567839196,0.8743718592964824,0.8944723618090452,0.9145728643216081,0.9346733668341709,0.9547738693467337,0.9748743718592965,0.9949748743718593,1.015075376884422,1.035175879396985,1.0552763819095479,1.0753768844221105,1.0954773869346734,1.1155778894472361,1.135678391959799,1.155778894472362,1.1758793969849246,1.1959798994974875,1.2160804020100502,1.236180904522613,1.256281407035176,1.2763819095477387,1.2964824120603016,1.3165829145728642,1.3366834170854272,1.35678391959799,1.3768844221105527,1.3969849246231156,1.4170854271356783,1.4371859296482412,1.4572864321608041,1.4773869346733668,1.4974874371859297,1.5175879396984926,1.5376884422110553,1.5577889447236182,1.5778894472361809,1.5979899497487438,1.6180904522613067,1.6381909547738693,1.6582914572864322,1.678391959798995,1.6984924623115578,1.7185929648241207,1.7386934673366834,1.7587939698492463,1.778894472361809,1.7989949748743719,1.8190954773869348,1.8391959798994975,1.8592964824120604,1.8793969849246233,1.899497487437186,1.9195979899497488,1.9396984924623115,1.9597989949748744,1.9798994974874373,2.0]}], {"xaxis":{"title":"z [cm]"},"template":{"layout":{"coloraxis":{"colorbar":{"ticks":"","outlinewidth":0}},"xaxis":{"gridcolor":"white","zerolinewidth":2,"title":{"standoff":15},"ticks":"","zerolinecolor":"white","automargin":true,"linecolor":"white"},"hovermode":"closest","paper_bgcolor":"white","geo":{"showlakes":true,"showland":true,"landcolor":"#E5ECF6","bgcolor":"white","subunitcolor":"white","lakecolor":"white"},"colorscale":{"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]},"yaxis":{"gridcolor":"white","zerolinewidth":2,"title":{"standoff":15},"ticks":"","zerolinecolor":"white","automargin":true,"linecolor":"white"},"shapedefaults":{"line":{"color":"#2a3f5f"}},"hoverlabel":{"align":"left"},"mapbox":{"style":"light"},"polar":{"angularaxis":{"gridcolor":"white","ticks":"","linecolor":"white"},"bgcolor":"#E5ECF6","radialaxis":{"gridcolor":"white","ticks":"","linecolor":"white"}},"autotypenumbers":"strict","font":{"color":"#2a3f5f"},"ternary":{"baxis":{"gridcolor":"white","ticks":"","linecolor":"white"},"bgcolor":"#E5ECF6","caxis":{"gridcolor":"white","ticks":"","linecolor":"white"},"aaxis":{"gridcolor":"white","ticks":"","linecolor":"white"}},"annotationdefaults":{"arrowhead":0,"arrowwidth":1,"arrowcolor":"#2a3f5f"},"plot_bgcolor":"#E5ECF6","title":{"x":0.05},"scene":{"xaxis":{"gridcolor":"white","gridwidth":2,"backgroundcolor":"#E5ECF6","ticks":"","showbackground":true,"zerolinecolor":"white","linecolor":"white"},"zaxis":{"gridcolor":"white","gridwidth":2,"backgroundcolor":"#E5ECF6","ticks":"","showbackground":true,"zerolinecolor":"white","linecolor":"white"},"yaxis":{"gridcolor":"white","gridwidth":2,"backgroundcolor":"#E5ECF6","ticks":"","showbackground":true,"zerolinecolor":"white","linecolor":"white"}},"colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"]},"data":{"barpolar":[{"type":"barpolar","marker":{"line":{"color":"#E5ECF6","width":0.5}}}],"carpet":[{"aaxis":{"gridcolor":"white","endlinecolor":"#2a3f5f","minorgridcolor":"white","startlinecolor":"#2a3f5f","linecolor":"white"},"type":"carpet","baxis":{"gridcolor":"white","endlinecolor":"#2a3f5f","minorgridcolor":"white","startlinecolor":"#2a3f5f","linecolor":"white"}}],"scatterpolar":[{"type":"scatterpolar","marker":{"colorbar":{"ticks":"","outlinewidth":0}}}],"parcoords":[{"line":{"colorbar":{"ticks":"","outlinewidth":0}},"type":"parcoords"}],"scatter":[{"type":"scatter","marker":{"colorbar":{"ticks":"","outlinewidth":0}}}],"histogram2dcontour":[{"colorbar":{"ticks":"","outlinewidth":0},"type":"histogram2dcontour","colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"contour":[{"colorbar":{"ticks":"","outlinewidth":0},"type":"contour","colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"scattercarpet":[{"type":"scattercarpet","marker":{"colorbar":{"ticks":"","outlinewidth":0}}}],"mesh3d":[{"colorbar":{"ticks":"","outlinewidth":0},"type":"mesh3d"}],"surface":[{"colorbar":{"ticks":"","outlinewidth":0},"type":"surface","colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"scattermapbox":[{"type":"scattermapbox","marker":{"colorbar":{"ticks":"","outlinewidth":0}}}],"scattergeo":[{"type":"scattergeo","marker":{"colorbar":{"ticks":"","outlinewidth":0}}}],"histogram":[{"type":"histogram","marker":{"colorbar":{"ticks":"","outlinewidth":0}}}],"pie":[{"type":"pie","automargin":true}],"choropleth":[{"colorbar":{"ticks":"","outlinewidth":0},"type":"choropleth"}],"heatmapgl":[{"colorbar":{"ticks":"","outlinewidth":0},"type":"heatmapgl","colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"bar":[{"type":"bar","error_y":{"color":"#2a3f5f"},"error_x":{"color":"#2a3f5f"},"marker":{"line":{"color":"#E5ECF6","width":0.5}}}],"heatmap":[{"colorbar":{"ticks":"","outlinewidth":0},"type":"heatmap","colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"contourcarpet":[{"colorbar":{"ticks":"","outlinewidth":0},"type":"contourcarpet"}],"table":[{"type":"table","header":{"line":{"color":"white"},"fill":{"color":"#C8D4E3"}},"cells":{"line":{"color":"white"},"fill":{"color":"#EBF0F8"}}}],"scatter3d":[{"line":{"colorbar":{"ticks":"","outlinewidth":0}},"type":"scatter3d","marker":{"colorbar":{"ticks":"","outlinewidth":0}}}],"scattergl":[{"type":"scattergl","marker":{"colorbar":{"ticks":"","outlinewidth":0}}}],"histogram2d":[{"colorbar":{"ticks":"","outlinewidth":0},"type":"histogram2d","colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"scatterternary":[{"type":"scatterternary","marker":{"colorbar":{"ticks":"","outlinewidth":0}}}],"scatterpolargl":[{"type":"scatterpolargl","marker":{"colorbar":{"ticks":"","outlinewidth":0}}}]}},"height":300,"margin":{"l":0,"b":50,"r":0,"t":40},"title":"Slice profiles for the slice-selective sequence"}, {"editable":false,"responsive":true,"staticPlot":false,"scrollZoom":true}, diff --git a/dev/assets/examples/3-seq.html b/dev/assets/examples/3-seq.html index 554213a11..a7dc6788a 100644 --- a/dev/assets/examples/3-seq.html +++ b/dev/assets/examples/3-seq.html @@ -9,7 +9,7 @@
@@ -17,9 +17,9 @@ window.PLOTLYENV = window.PLOTLYENV || {} - if (document.getElementById('d810da3b-76f2-49bc-b4b5-aaa0529d3ede')) { + if (document.getElementById('d5349a8f-e3a8-4cf8-a16a-d6f7a443081b')) { Plotly.newPlot( - 'd810da3b-76f2-49bc-b4b5-aaa0529d3ede', + 'd5349a8f-e3a8-4cf8-a16a-d6f7a443081b', [{"y":[null,null,null,null,null,null,0.0,-10.786855417764993,-10.786855417764993,0.0,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,0.0,10.786855417764993,10.786855417764993,0.0,null,null,null,null,null,null,null,null,null,null,null,0.0,-10.786855417764993,-10.786855417764993,0.0,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,0.0,10.786855417764993,10.786855417764993,0.0,null,null,null,null,null,null,null,null,null,null,null,0.0,-10.786855417764993,-10.786855417764993,0.0,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,null,null,null,null,null,0.0,25.528995279306034,25.528995279306034,0.0,null,null,null,null,null,null,0.0,-25.528995279306034,-25.528995279306034,0.0,null,0.0,10.786855417764993,10.786855417764993,0.0,null,null,null,null,null],"type":"scatter","name":"Gx","hovertemplate":"(%{x:.4f} ms, %{y:.2f} mT/m)","x":[0.0,0.0,0.0,0.0,0.0,3.1800000000000006,3.1800000000000006,3.2700000000000005,3.8900000000000006,3.980000000000001,3.980000000000001,3.980000000000001,4.180000000000001,4.580000000000001,4.780000000000001,4.780000000000001,4.780000000000001,4.780000000000001,4.780000000000001,4.780000000000001,4.840000000000002,4.840000000000002,5.040000000000001,5.440000000000001,5.640000000000001,5.6400000000000015,5.6400000000000015,5.6400000000000015,5.6400000000000015,5.6400000000000015,5.700000000000002,5.700000000000002,5.900000000000001,6.300000000000002,6.500000000000003,6.500000000000003,6.500000000000003,6.500000000000003,6.500000000000003,6.500000000000003,6.560000000000002,6.560000000000002,6.7600000000000025,7.160000000000002,7.360000000000002,7.360000000000003,7.360000000000003,7.360000000000003,7.360000000000003,7.360000000000003,7.420000000000003,7.420000000000003,7.620000000000003,8.020000000000003,8.220000000000004,8.220000000000004,8.220000000000004,8.220000000000004,8.220000000000004,8.220000000000004,8.280000000000003,8.280000000000003,8.480000000000004,8.880000000000003,9.080000000000004,9.080000000000004,9.080000000000004,9.080000000000004,9.080000000000004,9.080000000000004,9.140000000000002,9.140000000000002,9.340000000000003,9.740000000000002,9.940000000000003,9.940000000000003,9.940000000000003,9.940000000000003,9.940000000000003,9.940000000000003,10.000000000000002,10.000000000000002,10.200000000000003,10.600000000000001,10.800000000000002,10.800000000000002,10.800000000000002,10.800000000000002,10.800000000000002,10.800000000000002,10.860000000000001,10.860000000000001,11.060000000000002,11.46,11.660000000000002,11.660000000000002,11.660000000000002,11.660000000000002,11.660000000000002,11.660000000000002,11.72,11.72,11.920000000000002,12.32,12.520000000000001,12.520000000000001,12.520000000000001,12.520000000000001,12.520000000000001,12.520000000000001,12.58,12.58,12.780000000000001,13.180000000000001,13.38,13.38,13.38,13.38,13.38,13.38,13.440000000000001,13.440000000000001,13.64,14.040000000000001,14.24,14.24,14.24,14.24,14.24,14.24,14.3,14.3,14.5,14.9,15.100000000000001,15.100000000000001,15.100000000000001,15.100000000000001,15.100000000000001,15.100000000000001,15.16,15.16,15.360000000000001,15.76,15.959999999999999,15.959999999999999,15.959999999999999,15.959999999999999,15.959999999999999,15.959999999999999,16.02,16.02,16.22,16.62,16.819999999999997,16.819999999999997,16.819999999999997,16.819999999999997,16.819999999999997,16.819999999999997,16.88,16.88,17.08,17.48,17.679999999999996,17.679999999999996,17.679999999999996,17.679999999999996,17.679999999999996,17.679999999999996,17.74,17.74,17.939999999999998,18.34,18.54,18.54,18.54,18.54,18.54,18.54,18.599999999999998,18.599999999999998,18.799999999999997,19.2,19.4,19.4,19.4,19.4,19.4,19.4,19.459999999999997,19.459999999999997,19.659999999999997,20.06,20.259999999999998,20.259999999999998,20.259999999999998,20.259999999999998,20.259999999999998,20.259999999999998,20.319999999999997,20.319999999999997,20.519999999999996,20.919999999999998,21.119999999999997,21.119999999999997,21.119999999999997,21.119999999999997,21.119999999999997,21.119999999999997,21.179999999999996,21.179999999999996,21.379999999999995,21.779999999999998,21.979999999999997,21.979999999999997,21.979999999999997,21.979999999999997,21.979999999999997,21.979999999999997,22.039999999999996,22.039999999999996,22.239999999999995,22.639999999999997,22.839999999999996,22.839999999999996,22.839999999999996,22.839999999999996,22.839999999999996,22.839999999999996,22.899999999999995,22.899999999999995,23.099999999999994,23.499999999999996,23.699999999999996,23.699999999999996,23.699999999999996,23.699999999999996,23.699999999999996,23.699999999999996,23.759999999999998,23.759999999999998,23.959999999999994,24.359999999999996,24.559999999999995,24.559999999999995,24.559999999999995,24.559999999999995,24.559999999999995,24.559999999999995,24.619999999999997,24.619999999999997,24.819999999999993,25.219999999999995,25.419999999999995,25.419999999999995,25.419999999999995,25.419999999999995,25.419999999999995,25.419999999999995,25.479999999999997,25.479999999999997,25.679999999999996,26.079999999999995,26.279999999999994,26.279999999999994,26.279999999999994,26.279999999999994,26.279999999999994,26.279999999999994,26.339999999999996,26.339999999999996,26.539999999999996,26.939999999999994,27.139999999999993,27.139999999999993,27.139999999999993,27.139999999999993,27.139999999999993,27.139999999999993,27.199999999999996,27.199999999999996,27.399999999999995,27.799999999999994,27.999999999999993,27.999999999999993,27.999999999999993,27.999999999999993,27.999999999999993,27.999999999999993,28.059999999999995,28.059999999999995,28.259999999999994,28.659999999999993,28.859999999999992,28.859999999999992,28.859999999999992,28.859999999999992,28.859999999999992,28.859999999999992,28.919999999999995,28.919999999999995,29.119999999999994,29.519999999999992,29.71999999999999,29.71999999999999,29.71999999999999,29.71999999999999,29.71999999999999,29.71999999999999,29.779999999999994,29.779999999999994,29.979999999999993,30.379999999999995,30.57999999999999,30.57999999999999,30.57999999999999,30.57999999999999,30.57999999999999,30.57999999999999,30.639999999999993,30.639999999999993,30.839999999999993,31.239999999999995,31.439999999999994,31.439999999999994,31.439999999999994,31.439999999999994,31.439999999999994,31.439999999999994,31.499999999999993,31.499999999999993,31.699999999999992,32.099999999999994,32.3,32.3,32.3,32.3,32.3,32.3,32.35999999999999,32.35999999999999,32.559999999999995,32.959999999999994,33.16,33.16,33.16,33.16,33.16,33.16,33.21999999999999,33.21999999999999,33.419999999999995,33.81999999999999,34.019999999999996,34.019999999999996,34.019999999999996,34.019999999999996,34.019999999999996,34.019999999999996,34.07999999999999,34.07999999999999,34.279999999999994,34.67999999999999,34.879999999999995,34.879999999999995,34.879999999999995,34.879999999999995,34.879999999999995,34.879999999999995,34.93999999999999,34.93999999999999,35.13999999999999,35.53999999999999,35.739999999999995,35.739999999999995,35.739999999999995,35.739999999999995,35.739999999999995,35.739999999999995,35.79999999999999,35.79999999999999,35.99999999999999,36.39999999999999,36.599999999999994,36.599999999999994,36.599999999999994,36.599999999999994,36.599999999999994,36.599999999999994,36.65999999999999,36.65999999999999,36.85999999999999,37.26,37.459999999999994,37.459999999999994,37.459999999999994,37.459999999999994,37.459999999999994,37.459999999999994,37.51999999999999,37.51999999999999,37.71999999999999,38.12,38.31999999999999,38.31999999999999,38.31999999999999,38.31999999999999,38.31999999999999,38.31999999999999,38.37999999999999,38.37999999999999,38.57999999999999,38.98,39.17999999999999,39.17999999999999,39.17999999999999,39.17999999999999,39.17999999999999,39.17999999999999,39.23999999999999,39.23999999999999,39.43999999999999,39.839999999999996,40.03999999999999,40.03999999999999,40.03999999999999,40.03999999999999,40.03999999999999,40.03999999999999,40.09999999999999,40.09999999999999,40.29999999999999,40.699999999999996,40.89999999999999,40.89999999999999,40.89999999999999,40.89999999999999,40.89999999999999,40.89999999999999,40.959999999999994,40.959999999999994,41.16,41.56,41.76,41.75999999999999,41.75999999999999,41.75999999999999,41.75999999999999,41.75999999999999,41.81999999999999,41.81999999999999,42.019999999999996,42.42,42.62,42.61999999999999,42.61999999999999,42.61999999999999,42.61999999999999,42.61999999999999,42.67999999999999,42.67999999999999,42.879999999999995,43.28,43.48,43.47999999999999,43.47999999999999,43.47999999999999,43.47999999999999,43.47999999999999,43.53999999999999,43.53999999999999,43.739999999999995,44.14,44.339999999999996,44.33999999999999,44.33999999999999,44.33999999999999,44.33999999999999,44.33999999999999,44.39999999999999,44.39999999999999,44.599999999999994,45.0,45.199999999999996,45.19999999999999,45.19999999999999,45.19999999999999,45.19999999999999,45.19999999999999,45.26,45.26,45.459999999999994,45.86,46.059999999999995,46.05999999999999,46.05999999999999,46.05999999999999,46.05999999999999,46.05999999999999,46.12,46.12,46.31999999999999,46.72,46.919999999999995,46.91999999999999,46.91999999999999,46.91999999999999,46.91999999999999,46.91999999999999,46.98,46.98,47.17999999999999,47.58,47.779999999999994,47.77999999999999,47.77999999999999,47.77999999999999,47.77999999999999,47.77999999999999,47.839999999999996,47.839999999999996,48.03999999999999,48.44,48.63999999999999,48.639999999999986,48.639999999999986,48.639999999999986,48.639999999999986,48.639999999999986,48.699999999999996,48.699999999999996,48.89999999999999,49.3,49.49999999999999,49.499999999999986,49.499999999999986,49.499999999999986,49.499999999999986,49.499999999999986,49.559999999999995,49.559999999999995,49.75999999999999,50.16,50.35999999999999,50.359999999999985,50.359999999999985,50.359999999999985,50.359999999999985,50.359999999999985,50.419999999999995,50.419999999999995,50.61999999999999,51.019999999999996,51.21999999999999,51.219999999999985,51.219999999999985,51.219999999999985,51.219999999999985,51.219999999999985,51.279999999999994,51.279999999999994,51.47999999999999,51.879999999999995,52.07999999999999,52.079999999999984,52.079999999999984,52.079999999999984,52.079999999999984,52.079999999999984,52.13999999999999,52.13999999999999,52.33999999999999,52.739999999999995,52.93999999999999,52.93999999999998,52.93999999999998,52.93999999999998,52.93999999999998,52.93999999999998,52.99999999999999,52.99999999999999,53.19999999999999,53.599999999999994,53.8,53.79999999999999,53.79999999999999,53.79999999999999,53.79999999999999,53.79999999999999,53.85999999999999,53.85999999999999,54.05999999999999,54.459999999999994,54.66,54.65999999999999,54.65999999999999,54.65999999999999,54.65999999999999,54.65999999999999,54.71999999999999,54.71999999999999,54.91999999999999,55.31999999999999,55.519999999999996,55.51999999999999,55.51999999999999,55.51999999999999,55.51999999999999,55.51999999999999,55.57999999999999,55.57999999999999,55.77999999999999,56.17999999999999,56.379999999999995,56.37999999999999,56.37999999999999,56.37999999999999,56.37999999999999,56.37999999999999,56.43999999999999,56.43999999999999,56.639999999999986,57.03999999999999,57.239999999999995,57.23999999999999,57.23999999999999,57.23999999999999,57.23999999999999,57.23999999999999,57.29999999999999,57.29999999999999,57.499999999999986,57.89999999999999,58.099999999999994,58.09999999999999,58.09999999999999,58.09999999999999,58.09999999999999,58.09999999999999,58.15999999999999,58.15999999999999,58.359999999999985,58.75999999999999,58.959999999999994,58.95999999999999,58.95999999999999,58.95999999999999,58.95999999999999,58.95999999999999,59.01999999999999,59.01999999999999,59.219999999999985,59.61999999999999,59.81999999999999,59.819999999999986,59.819999999999986,59.819999999999986,59.819999999999986,59.819999999999986,59.87999999999999,59.87999999999999,60.079999999999984,60.47999999999999,60.67999999999999,60.679999999999986,60.679999999999986,60.679999999999986,60.679999999999986,60.679999999999986,60.73999999999999,60.73999999999999,60.93999999999999,61.33999999999999,61.53999999999999,61.539999999999985,61.539999999999985,61.539999999999985,61.539999999999985,61.539999999999985,61.59999999999999,61.59999999999999,61.79999999999999,62.19999999999999,62.39999999999999,62.399999999999984,62.399999999999984,62.399999999999984,62.399999999999984,62.399999999999984,62.45999999999999,62.45999999999999,62.66,63.05999999999999,63.259999999999984,63.259999999999984,63.259999999999984,63.259999999999984,63.259999999999984,63.259999999999984,63.319999999999986,63.319999999999986,63.519999999999996,63.91999999999999,64.11999999999998,64.11999999999998,64.11999999999998,64.11999999999998,64.11999999999998,64.11999999999998,64.17999999999999,64.17999999999999,64.38,64.77999999999999,64.97999999999998,64.97999999999998,64.97999999999998,64.97999999999998,64.97999999999998,64.97999999999998,65.03999999999999,65.03999999999999,65.24,65.63999999999999,65.83999999999997,65.83999999999997,65.83999999999997,65.83999999999997,65.83999999999997,65.83999999999997,65.89999999999999,65.89999999999999,66.1,66.49999999999999,66.69999999999999,66.69999999999999,66.69999999999999,66.69999999999999,66.69999999999999,66.69999999999999,66.75999999999999,66.75999999999999,66.96,67.35999999999999,67.55999999999999,67.55999999999999,67.55999999999999,67.55999999999999,67.55999999999999,67.55999999999999,67.61999999999999,67.61999999999999,67.82,68.21999999999998,68.41999999999999,68.41999999999999,68.41999999999999,68.41999999999999,68.41999999999999,68.41999999999999,68.47999999999999,68.47999999999999,68.67999999999999,69.07999999999998,69.27999999999999,69.27999999999999,69.27999999999999,69.27999999999999,69.27999999999999,69.27999999999999,69.33999999999999,69.33999999999999,69.53999999999999,69.93999999999998,70.13999999999999,70.13999999999999,70.13999999999999,70.13999999999999,70.13999999999999,70.13999999999999,70.19999999999999,70.19999999999999,70.39999999999999,70.79999999999998,70.99999999999999,70.99999999999999,70.99999999999999,70.99999999999999,70.99999999999999,70.99999999999999,71.05999999999999,71.05999999999999,71.25999999999999,71.65999999999998,71.85999999999999,71.85999999999999,71.85999999999999,71.85999999999999,71.85999999999999,71.85999999999999,71.91999999999999,71.91999999999999,72.11999999999999,72.51999999999998,72.71999999999998,72.71999999999998,72.71999999999998,72.71999999999998,72.71999999999998,72.71999999999998,72.77999999999999,72.77999999999999,72.97999999999999,73.37999999999998,73.57999999999998,73.58,73.58,73.58,73.58,73.58,73.63999999999999,73.63999999999999,73.83999999999999,74.23999999999998,74.43999999999998,74.44,74.44,74.44,74.44,74.44,74.49999999999999,74.49999999999999,74.69999999999999,75.09999999999998,75.29999999999998,75.3,75.3,75.3,75.3,75.3,75.35999999999999,75.35999999999999,75.55999999999999,75.95999999999998,76.15999999999998,76.16,76.16,76.16,76.16,76.16,76.21999999999998,76.21999999999998,76.41999999999999,76.81999999999998,77.01999999999998,77.02,77.02,77.02,77.02,77.02,77.07999999999998,77.07999999999998,77.27999999999999,77.67999999999998,77.87999999999998,77.88,77.88,77.88,77.88,77.88,77.93999999999998,77.93999999999998,78.13999999999999,78.53999999999998,78.73999999999998,78.74,78.74,78.74,78.74,78.74,78.79999999999998,78.79999999999998,78.99999999999999,79.39999999999999,79.59999999999998,79.6,79.6,79.6,79.6,79.6,79.65999999999998,79.65999999999998,79.85999999999999,80.25999999999999,80.45999999999998,80.46,80.46,80.46,80.46,80.46,80.51999999999998,80.51999999999998,80.71999999999998,81.11999999999999,81.31999999999998,81.32,81.32,81.32,81.32,81.32,81.37999999999998,81.37999999999998,81.57999999999998,81.97999999999999,82.17999999999998,82.17999999999999,82.17999999999999,82.17999999999999,82.17999999999999,82.17999999999999,82.23999999999998,82.23999999999998,82.43999999999998,82.83999999999999,83.03999999999998,83.03999999999999,83.03999999999999,83.03999999999999,83.03999999999999,83.03999999999999,83.09999999999998,83.09999999999998,83.29999999999998,83.69999999999999,83.89999999999998,83.89999999999999,83.89999999999999,83.89999999999999,83.89999999999999,83.89999999999999,83.95999999999998,83.95999999999998,84.15999999999998,84.55999999999999,84.75999999999998,84.75999999999999,84.75999999999999,84.75999999999999,84.75999999999999,84.75999999999999,84.81999999999998,84.81999999999998,85.01999999999998,85.41999999999999,85.61999999999998,85.61999999999999,85.61999999999999,85.61999999999999,85.61999999999999,85.61999999999999,85.67999999999998,85.67999999999998,85.87999999999998,86.27999999999999,86.47999999999998,86.47999999999999,86.47999999999999,86.47999999999999,86.47999999999999,86.47999999999999,86.53999999999998,86.53999999999998,86.73999999999998,87.13999999999999,87.33999999999997,87.33999999999999,87.33999999999999,87.33999999999999,87.33999999999999,87.33999999999999,87.39999999999998,87.39999999999998,87.59999999999998,87.99999999999999,88.19999999999997,88.19999999999999,88.19999999999999,88.19999999999999,88.19999999999999,88.19999999999999,88.25999999999998,88.25999999999998,88.45999999999998,88.85999999999999,89.05999999999997,89.05999999999999,89.05999999999999,89.05999999999999,89.05999999999999,89.05999999999999,89.11999999999998,89.11999999999998,89.31999999999998,89.71999999999998,89.91999999999997,89.91999999999999,89.91999999999999,90.00999999999999,90.63,90.71999999999998,90.71999999999998,90.71999999999998,90.71999999999998,90.71999999999998,90.71999999999998,110.71999999999998,110.71999999999998,110.71999999999998,110.71999999999998,110.71999999999998,113.89999999999999,113.89999999999999,113.99,114.60999999999999,114.69999999999999,114.7,114.7,114.9,115.3,115.49999999999999,115.49999999999999,115.49999999999999,115.49999999999999,115.49999999999999,115.49999999999999,115.56,115.56,115.76,116.16,116.35999999999999,116.35999999999999,116.35999999999999,116.35999999999999,116.35999999999999,116.35999999999999,116.42,116.42,116.62,117.02,117.21999999999998,117.21999999999998,117.21999999999998,117.21999999999998,117.21999999999998,117.21999999999998,117.28,117.28,117.48,117.88,118.07999999999998,118.07999999999998,118.07999999999998,118.07999999999998,118.07999999999998,118.07999999999998,118.14,118.14,118.34,118.74,118.93999999999998,118.93999999999998,118.93999999999998,118.93999999999998,118.93999999999998,118.93999999999998,119.0,119.0,119.2,119.6,119.79999999999998,119.79999999999998,119.79999999999998,119.79999999999998,119.79999999999998,119.79999999999998,119.86,119.86,120.06,120.46,120.66,120.66,120.66,120.66,120.66,120.66,120.72,120.72,120.92,121.32,121.52,121.52,121.52,121.52,121.52,121.52,121.58,121.58,121.78,122.17999999999999,122.38,122.38,122.38,122.38,122.38,122.38,122.44,122.44,122.64,123.03999999999999,123.24,123.24,123.24,123.24,123.24,123.24,123.3,123.3,123.5,123.89999999999999,124.1,124.1,124.1,124.1,124.1,124.1,124.16,124.16,124.36,124.75999999999999,124.96,124.96,124.96,124.96,124.96,124.96,125.02,125.02,125.22,125.61999999999998,125.82,125.82,125.82,125.82,125.82,125.82,125.88,125.88,126.08,126.47999999999998,126.67999999999999,126.67999999999999,126.67999999999999,126.67999999999999,126.67999999999999,126.67999999999999,126.74,126.74,126.94,127.33999999999997,127.53999999999999,127.53999999999999,127.53999999999999,127.53999999999999,127.53999999999999,127.53999999999999,127.6,127.6,127.8,128.2,128.39999999999998,128.39999999999998,128.39999999999998,128.39999999999998,128.39999999999998,128.39999999999998,128.45999999999998,128.45999999999998,128.66,129.05999999999997,129.26,129.26,129.26,129.26,129.26,129.26,129.32,129.32,129.52,129.92,130.11999999999998,130.11999999999998,130.11999999999998,130.11999999999998,130.11999999999998,130.11999999999998,130.17999999999998,130.17999999999998,130.38,130.77999999999997,130.98,130.98,130.98,130.98,130.98,130.98,131.04,131.04,131.24,131.64,131.83999999999997,131.83999999999997,131.83999999999997,131.83999999999997,131.83999999999997,131.83999999999997,131.89999999999998,131.89999999999998,132.1,132.49999999999997,132.7,132.7,132.7,132.7,132.7,132.7,132.76,132.76,132.96,133.35999999999999,133.55999999999997,133.55999999999997,133.55999999999997,133.55999999999997,133.55999999999997,133.55999999999997,133.61999999999998,133.61999999999998,133.82,134.21999999999997,134.42,134.42,134.42,134.42,134.42,134.42,134.48,134.48,134.68,135.07999999999998,135.27999999999997,135.27999999999997,135.27999999999997,135.27999999999997,135.27999999999997,135.27999999999997,135.33999999999997,135.33999999999997,135.54,135.93999999999997,136.14,136.14,136.14,136.14,136.14,136.14,136.2,136.2,136.4,136.79999999999998,136.99999999999997,136.99999999999997,136.99999999999997,136.99999999999997,136.99999999999997,136.99999999999997,137.05999999999997,137.05999999999997,137.26,137.65999999999997,137.85999999999999,137.85999999999999,137.85999999999999,137.85999999999999,137.85999999999999,137.85999999999999,137.92,137.92,138.12,138.51999999999998,138.71999999999997,138.71999999999997,138.71999999999997,138.71999999999997,138.71999999999997,138.71999999999997,138.77999999999997,138.77999999999997,138.98,139.37999999999997,139.57999999999998,139.57999999999998,139.57999999999998,139.57999999999998,139.57999999999998,139.57999999999998,139.64,139.64,139.84,140.23999999999998,140.43999999999997,140.43999999999997,140.43999999999997,140.43999999999997,140.43999999999997,140.43999999999997,140.5,140.5,140.7,141.09999999999997,141.29999999999998,141.29999999999998,141.29999999999998,141.29999999999998,141.29999999999998,141.29999999999998,141.35999999999999,141.35999999999999,141.56,141.95999999999998,142.15999999999997,142.15999999999997,142.15999999999997,142.15999999999997,142.15999999999997,142.15999999999997,142.22,142.22,142.42,142.81999999999996,143.01999999999998,143.01999999999998,143.01999999999998,143.01999999999998,143.01999999999998,143.01999999999998,143.07999999999998,143.07999999999998,143.28,143.67999999999998,143.87999999999997,143.87999999999997,143.87999999999997,143.87999999999997,143.87999999999997,143.87999999999997,143.94,143.94,144.14,144.53999999999996,144.73999999999998,144.73999999999998,144.73999999999998,144.73999999999998,144.73999999999998,144.73999999999998,144.79999999999998,144.79999999999998,145.0,145.39999999999998,145.59999999999997,145.59999999999997,145.59999999999997,145.59999999999997,145.59999999999997,145.59999999999997,145.66,145.66,145.85999999999999,146.25999999999996,146.45999999999998,146.45999999999998,146.45999999999998,146.45999999999998,146.45999999999998,146.45999999999998,146.51999999999998,146.51999999999998,146.72,147.11999999999998,147.31999999999996,147.31999999999996,147.31999999999996,147.31999999999996,147.31999999999996,147.31999999999996,147.38,147.38,147.57999999999998,147.97999999999996,148.17999999999998,148.17999999999998,148.17999999999998,148.17999999999998,148.17999999999998,148.17999999999998,148.23999999999998,148.23999999999998,148.44,148.83999999999997,149.04,149.04,149.04,149.04,149.04,149.04,149.1,149.1,149.29999999999998,149.69999999999996,149.89999999999998,149.89999999999998,149.89999999999998,149.89999999999998,149.89999999999998,149.89999999999998,149.95999999999998,149.95999999999998,150.16,150.55999999999997,150.76,150.76,150.76,150.76,150.76,150.76,150.82,150.82,151.01999999999998,151.41999999999996,151.61999999999998,151.61999999999998,151.61999999999998,151.61999999999998,151.61999999999998,151.61999999999998,151.67999999999998,151.67999999999998,151.88,152.27999999999997,152.48,152.48,152.48,152.48,152.48,152.48,152.54,152.54,152.73999999999998,153.13999999999996,153.33999999999997,153.33999999999997,153.33999999999997,153.33999999999997,153.33999999999997,153.33999999999997,153.39999999999998,153.39999999999998,153.6,153.99999999999997,154.2,154.2,154.2,154.2,154.2,154.2,154.26,154.26,154.45999999999998,154.85999999999996,155.05999999999997,155.05999999999997,155.05999999999997,155.05999999999997,155.05999999999997,155.05999999999997,155.11999999999998,155.11999999999998,155.32,155.71999999999997,155.92,155.92,155.92,155.92,155.92,155.92,155.98,155.98,156.17999999999998,156.57999999999996,156.77999999999997,156.77999999999997,156.77999999999997,156.77999999999997,156.77999999999997,156.77999999999997,156.83999999999997,156.83999999999997,157.04,157.43999999999997,157.64,157.64,157.64,157.64,157.64,157.64,157.7,157.7,157.89999999999998,158.29999999999995,158.49999999999997,158.49999999999997,158.49999999999997,158.49999999999997,158.49999999999997,158.49999999999997,158.55999999999997,158.55999999999997,158.76,159.15999999999997,159.35999999999999,159.35999999999999,159.35999999999999,159.35999999999999,159.35999999999999,159.35999999999999,159.42,159.42,159.61999999999998,160.01999999999998,160.21999999999997,160.21999999999997,160.21999999999997,160.21999999999997,160.21999999999997,160.21999999999997,160.27999999999997,160.27999999999997,160.48,160.87999999999997,161.07999999999998,161.07999999999998,161.07999999999998,161.07999999999998,161.07999999999998,161.07999999999998,161.14,161.14,161.33999999999997,161.73999999999998,161.93999999999997,161.93999999999997,161.93999999999997,161.93999999999997,161.93999999999997,161.93999999999997,161.99999999999997,161.99999999999997,162.2,162.59999999999997,162.79999999999998,162.79999999999998,162.79999999999998,162.79999999999998,162.79999999999998,162.79999999999998,162.85999999999999,162.85999999999999,163.05999999999997,163.45999999999998,163.65999999999997,163.65999999999997,163.65999999999997,163.65999999999997,163.65999999999997,163.65999999999997,163.71999999999997,163.71999999999997,163.92,164.31999999999996,164.51999999999998,164.51999999999998,164.51999999999998,164.51999999999998,164.51999999999998,164.51999999999998,164.57999999999998,164.57999999999998,164.77999999999997,165.17999999999998,165.37999999999997,165.37999999999997,165.37999999999997,165.37999999999997,165.37999999999997,165.37999999999997,165.43999999999997,165.43999999999997,165.64,166.03999999999996,166.23999999999998,166.23999999999998,166.23999999999998,166.23999999999998,166.23999999999998,166.23999999999998,166.29999999999998,166.29999999999998,166.49999999999997,166.89999999999998,167.09999999999997,167.09999999999997,167.09999999999997,167.09999999999997,167.09999999999997,167.09999999999997,167.15999999999997,167.15999999999997,167.35999999999999,167.75999999999996,167.95999999999998,167.95999999999998,167.95999999999998,167.95999999999998,167.95999999999998,167.95999999999998,168.01999999999998,168.01999999999998,168.21999999999997,168.61999999999998,168.81999999999996,168.81999999999996,168.81999999999996,168.81999999999996,168.81999999999996,168.81999999999996,168.87999999999997,168.87999999999997,169.07999999999998,169.47999999999996,169.67999999999998,169.67999999999998,169.67999999999998,169.67999999999998,169.67999999999998,169.67999999999998,169.73999999999998,169.73999999999998,169.93999999999997,170.33999999999997,170.53999999999996,170.53999999999996,170.53999999999996,170.53999999999996,170.53999999999996,170.53999999999996,170.59999999999997,170.59999999999997,170.79999999999998,171.19999999999996,171.39999999999998,171.39999999999998,171.39999999999998,171.39999999999998,171.39999999999998,171.39999999999998,171.45999999999998,171.45999999999998,171.65999999999997,172.05999999999997,172.25999999999996,172.25999999999996,172.25999999999996,172.25999999999996,172.25999999999996,172.25999999999996,172.31999999999996,172.31999999999996,172.51999999999998,172.91999999999996,173.11999999999998,173.11999999999998,173.11999999999998,173.11999999999998,173.11999999999998,173.11999999999998,173.17999999999998,173.17999999999998,173.37999999999997,173.77999999999997,173.97999999999996,173.97999999999996,173.97999999999996,173.97999999999996,173.97999999999996,173.97999999999996,174.03999999999996,174.03999999999996,174.23999999999998,174.63999999999996,174.83999999999997,174.83999999999997,174.83999999999997,174.83999999999997,174.83999999999997,174.83999999999997,174.89999999999998,174.89999999999998,175.09999999999997,175.49999999999997,175.69999999999996,175.69999999999996,175.69999999999996,175.69999999999996,175.69999999999996,175.69999999999996,175.75999999999996,175.75999999999996,175.95999999999998,176.35999999999996,176.55999999999997,176.55999999999997,176.55999999999997,176.55999999999997,176.55999999999997,176.55999999999997,176.61999999999998,176.61999999999998,176.81999999999996,177.21999999999997,177.41999999999996,177.41999999999996,177.41999999999996,177.41999999999996,177.41999999999996,177.41999999999996,177.47999999999996,177.47999999999996,177.67999999999998,178.07999999999996,178.27999999999997,178.27999999999997,178.27999999999997,178.27999999999997,178.27999999999997,178.27999999999997,178.33999999999997,178.33999999999997,178.53999999999996,178.93999999999997,179.13999999999996,179.13999999999996,179.13999999999996,179.13999999999996,179.13999999999996,179.13999999999996,179.19999999999996,179.19999999999996,179.39999999999998,179.79999999999995,179.99999999999997,179.99999999999997,179.99999999999997,179.99999999999997,179.99999999999997,179.99999999999997,180.05999999999997,180.05999999999997,180.25999999999996,180.65999999999997,180.85999999999996,180.85999999999996,180.85999999999996,180.85999999999996,180.85999999999996,180.85999999999996,180.91999999999996,180.91999999999996,181.11999999999998,181.51999999999995,181.71999999999997,181.71999999999997,181.71999999999997,181.71999999999997,181.71999999999997,181.71999999999997,181.77999999999997,181.77999999999997,181.97999999999996,182.37999999999997,182.57999999999996,182.57999999999996,182.57999999999996,182.57999999999996,182.57999999999996,182.57999999999996,182.63999999999996,182.63999999999996,182.83999999999997,183.23999999999995,183.43999999999997,183.43999999999997,183.43999999999997,183.43999999999997,183.43999999999997,183.43999999999997,183.49999999999997,183.49999999999997,183.7,184.09999999999997,184.29999999999995,184.29999999999995,184.29999999999995,184.29999999999995,184.29999999999995,184.29999999999995,184.35999999999996,184.35999999999996,184.55999999999997,184.95999999999995,185.15999999999997,185.15999999999997,185.15999999999997,185.15999999999997,185.15999999999997,185.15999999999997,185.21999999999997,185.21999999999997,185.42,185.81999999999996,186.01999999999995,186.01999999999995,186.01999999999995,186.01999999999995,186.01999999999995,186.01999999999995,186.07999999999996,186.07999999999996,186.27999999999997,186.67999999999995,186.87999999999997,186.87999999999997,186.87999999999997,186.87999999999997,186.87999999999997,186.87999999999997,186.93999999999997,186.93999999999997,187.14,187.53999999999996,187.73999999999995,187.73999999999995,187.73999999999995,187.73999999999995,187.73999999999995,187.73999999999995,187.79999999999995,187.79999999999995,187.99999999999997,188.39999999999995,188.59999999999997,188.59999999999997,188.59999999999997,188.59999999999997,188.59999999999997,188.59999999999997,188.65999999999997,188.65999999999997,188.85999999999999,189.25999999999996,189.45999999999995,189.45999999999995,189.45999999999995,189.45999999999995,189.45999999999995,189.45999999999995,189.51999999999995,189.51999999999995,189.71999999999997,190.11999999999995,190.31999999999996,190.31999999999996,190.31999999999996,190.31999999999996,190.31999999999996,190.31999999999996,190.37999999999997,190.37999999999997,190.57999999999998,190.97999999999996,191.17999999999995,191.17999999999995,191.17999999999995,191.17999999999995,191.17999999999995,191.17999999999995,191.23999999999995,191.23999999999995,191.43999999999997,191.83999999999995,192.03999999999996,192.03999999999996,192.03999999999996,192.03999999999996,192.03999999999996,192.03999999999996,192.09999999999997,192.09999999999997,192.29999999999998,192.69999999999996,192.89999999999995,192.89999999999995,192.89999999999995,192.89999999999995,192.89999999999995,192.89999999999995,192.95999999999995,192.95999999999995,193.15999999999997,193.55999999999995,193.75999999999996,193.75999999999996,193.75999999999996,193.75999999999996,193.75999999999996,193.75999999999996,193.81999999999996,193.81999999999996,194.01999999999998,194.41999999999996,194.61999999999995,194.61999999999995,194.61999999999995,194.61999999999995,194.61999999999995,194.61999999999995,194.67999999999995,194.67999999999995,194.87999999999997,195.27999999999994,195.47999999999996,195.47999999999996,195.47999999999996,195.47999999999996,195.47999999999996,195.47999999999996,195.53999999999996,195.53999999999996,195.73999999999998,196.13999999999996,196.33999999999995,196.33999999999995,196.33999999999995,196.33999999999995,196.33999999999995,196.33999999999995,196.39999999999998,196.39999999999998,196.59999999999997,196.99999999999994,197.19999999999996,197.19999999999996,197.19999999999996,197.19999999999996,197.19999999999996,197.19999999999996,197.25999999999996,197.25999999999996,197.45999999999998,197.85999999999996,198.05999999999995,198.05999999999995,198.05999999999995,198.05999999999995,198.05999999999995,198.05999999999995,198.11999999999998,198.11999999999998,198.31999999999996,198.71999999999994,198.91999999999996,198.91999999999996,198.91999999999996,198.91999999999996,198.91999999999996,198.91999999999996,198.97999999999996,198.97999999999996,199.17999999999998,199.57999999999996,199.77999999999994,199.77999999999994,199.77999999999994,199.77999999999994,199.77999999999994,199.77999999999994,199.83999999999997,199.83999999999997,200.03999999999996,200.43999999999994,200.63999999999996,200.63999999999996,200.63999999999996,200.72999999999996,201.34999999999994,201.43999999999994,201.43999999999994,201.43999999999994,201.43999999999994,201.43999999999994,201.43999999999994,221.43999999999997,221.43999999999997,221.43999999999997,221.43999999999997,221.43999999999997,224.61999999999995,224.61999999999995,224.70999999999998,225.32999999999996,225.41999999999996,225.41999999999996,225.41999999999996,225.61999999999995,226.01999999999995,226.21999999999994,226.21999999999997,226.21999999999997,226.21999999999997,226.21999999999997,226.21999999999997,226.27999999999997,226.27999999999997,226.48,226.87999999999997,227.07999999999998,227.07999999999998,227.07999999999998,227.07999999999998,227.07999999999998,227.07999999999998,227.13999999999996,227.13999999999996,227.33999999999995,227.73999999999995,227.93999999999994,227.93999999999997,227.93999999999997,227.93999999999997,227.93999999999997,227.93999999999997,227.99999999999997,227.99999999999997,228.2,228.59999999999997,228.79999999999998,228.79999999999998,228.79999999999998,228.79999999999998,228.79999999999998,228.79999999999998,228.85999999999996,228.85999999999996,229.05999999999995,229.45999999999995,229.65999999999994,229.65999999999997,229.65999999999997,229.65999999999997,229.65999999999997,229.65999999999997,229.71999999999997,229.71999999999997,229.92,230.31999999999996,230.51999999999998,230.51999999999998,230.51999999999998,230.51999999999998,230.51999999999998,230.51999999999998,230.57999999999996,230.57999999999996,230.77999999999994,231.17999999999995,231.37999999999994,231.37999999999997,231.37999999999997,231.37999999999997,231.37999999999997,231.37999999999997,231.43999999999997,231.43999999999997,231.64,232.03999999999996,232.23999999999998,232.23999999999998,232.23999999999998,232.23999999999998,232.23999999999998,232.23999999999998,232.29999999999995,232.29999999999995,232.49999999999994,232.89999999999995,233.09999999999994,233.09999999999997,233.09999999999997,233.09999999999997,233.09999999999997,233.09999999999997,233.15999999999997,233.15999999999997,233.35999999999999,233.75999999999996,233.95999999999998,233.95999999999998,233.95999999999998,233.95999999999998,233.95999999999998,233.95999999999998,234.01999999999995,234.01999999999995,234.21999999999994,234.61999999999995,234.81999999999994,234.81999999999996,234.81999999999996,234.81999999999996,234.81999999999996,234.81999999999996,234.87999999999997,234.87999999999997,235.07999999999998,235.47999999999996,235.67999999999998,235.67999999999998,235.67999999999998,235.67999999999998,235.67999999999998,235.67999999999998,235.73999999999995,235.73999999999995,235.93999999999997,236.33999999999995,236.53999999999994,236.53999999999996,236.53999999999996,236.53999999999996,236.53999999999996,236.53999999999996,236.59999999999997,236.59999999999997,236.79999999999998,237.19999999999996,237.39999999999998,237.39999999999998,237.39999999999998,237.39999999999998,237.39999999999998,237.39999999999998,237.45999999999995,237.45999999999995,237.65999999999997,238.05999999999995,238.25999999999993,238.25999999999996,238.25999999999996,238.25999999999996,238.25999999999996,238.25999999999996,238.31999999999996,238.31999999999996,238.51999999999998,238.91999999999996,239.11999999999998,239.11999999999998,239.11999999999998,239.11999999999998,239.11999999999998,239.11999999999998,239.17999999999995,239.17999999999995,239.37999999999997,239.77999999999994,239.97999999999993,239.97999999999996,239.97999999999996,239.97999999999996,239.97999999999996,239.97999999999996,240.03999999999996,240.03999999999996,240.23999999999998,240.63999999999996,240.83999999999997,240.83999999999997,240.83999999999997,240.83999999999997,240.83999999999997,240.83999999999997,240.89999999999995,240.89999999999995,241.09999999999997,241.49999999999994,241.69999999999993,241.69999999999996,241.69999999999996,241.69999999999996,241.69999999999996,241.69999999999996,241.75999999999996,241.75999999999996,241.95999999999998,242.35999999999996,242.55999999999997,242.55999999999997,242.55999999999997,242.55999999999997,242.55999999999997,242.55999999999997,242.61999999999995,242.61999999999995,242.81999999999996,243.21999999999994,243.41999999999993,243.41999999999996,243.41999999999996,243.41999999999996,243.41999999999996,243.41999999999996,243.47999999999996,243.47999999999996,243.67999999999998,244.07999999999996,244.27999999999997,244.27999999999997,244.27999999999997,244.27999999999997,244.27999999999997,244.27999999999997,244.33999999999995,244.33999999999995,244.53999999999996,244.93999999999994,245.13999999999993,245.13999999999996,245.13999999999996,245.13999999999996,245.13999999999996,245.13999999999996,245.19999999999996,245.19999999999996,245.39999999999998,245.79999999999995,245.99999999999997,245.99999999999997,245.99999999999997,245.99999999999997,245.99999999999997,245.99999999999997,246.05999999999995,246.05999999999995,246.25999999999996,246.65999999999994,246.85999999999993,246.85999999999996,246.85999999999996,246.85999999999996,246.85999999999996,246.85999999999996,246.91999999999996,246.91999999999996,247.11999999999998,247.51999999999995,247.71999999999997,247.71999999999997,247.71999999999997,247.71999999999997,247.71999999999997,247.71999999999997,247.77999999999997,247.77999999999997,247.98,248.37999999999997,248.57999999999996,248.57999999999996,248.57999999999996,248.57999999999996,248.57999999999996,248.57999999999996,248.64,248.64,248.83999999999997,249.23999999999995,249.43999999999997,249.43999999999997,249.43999999999997,249.43999999999997,249.43999999999997,249.43999999999997,249.49999999999997,249.49999999999997,249.7,250.1,250.29999999999995,250.29999999999995,250.29999999999995,250.29999999999995,250.29999999999995,250.29999999999995,250.35999999999999,250.35999999999999,250.55999999999995,250.95999999999995,251.16,251.16,251.16,251.16,251.16,251.16,251.22,251.22,251.42,251.82,252.02,252.01999999999995,252.01999999999995,252.01999999999995,252.01999999999995,252.01999999999995,252.07999999999998,252.07999999999998,252.27999999999994,252.67999999999995,252.88,252.88,252.88,252.88,252.88,252.88,252.94,252.94,253.14,253.54,253.74,253.73999999999995,253.73999999999995,253.73999999999995,253.73999999999995,253.73999999999995,253.79999999999998,253.79999999999998,253.99999999999994,254.39999999999995,254.6,254.6,254.6,254.6,254.6,254.6,254.66,254.66,254.85999999999999,255.26,255.46,255.45999999999995,255.45999999999995,255.45999999999995,255.45999999999995,255.45999999999995,255.51999999999998,255.51999999999998,255.71999999999994,256.11999999999995,256.32,256.32,256.32,256.32,256.32,256.32,256.38,256.38,256.58,256.97999999999996,257.18,257.17999999999995,257.17999999999995,257.17999999999995,257.17999999999995,257.17999999999995,257.23999999999995,257.23999999999995,257.43999999999994,257.84,258.03999999999996,258.03999999999996,258.03999999999996,258.03999999999996,258.03999999999996,258.03999999999996,258.1,258.1,258.29999999999995,258.7,258.90000000000003,258.9,258.9,258.9,258.9,258.9,258.96,258.96,259.15999999999997,259.55999999999995,259.76,259.76,259.76,259.76,259.76,259.76,259.82,259.82,260.02,260.41999999999996,260.62,260.61999999999995,260.61999999999995,260.61999999999995,260.61999999999995,260.61999999999995,260.67999999999995,260.67999999999995,260.87999999999994,261.28,261.48,261.48,261.48,261.48,261.48,261.48,261.54,261.54,261.73999999999995,262.14,262.34000000000003,262.34,262.34,262.34,262.34,262.34,262.4,262.4,262.59999999999997,262.99999999999994,263.2,263.2,263.2,263.2,263.2,263.2,263.26,263.26,263.46,263.85999999999996,264.06,264.05999999999995,264.05999999999995,264.05999999999995,264.05999999999995,264.05999999999995,264.11999999999995,264.11999999999995,264.31999999999994,264.71999999999997,264.92,264.92,264.92,264.92,264.92,264.92,264.98,264.98,265.17999999999995,265.58,265.78000000000003,265.78,265.78,265.78,265.78,265.78,265.84,265.84,266.03999999999996,266.43999999999994,266.64,266.64,266.64,266.64,266.64,266.64,266.7,266.7,266.9,267.29999999999995,267.5,267.49999999999994,267.49999999999994,267.49999999999994,267.49999999999994,267.49999999999994,267.55999999999995,267.55999999999995,267.75999999999993,268.15999999999997,268.36,268.36,268.36,268.36,268.36,268.36,268.42,268.42,268.61999999999995,269.02,269.22,269.21999999999997,269.21999999999997,269.21999999999997,269.21999999999997,269.21999999999997,269.28,269.28,269.47999999999996,269.87999999999994,270.08,270.08,270.08,270.08,270.08,270.08,270.14,270.14,270.34,270.74,270.94,270.93999999999994,270.93999999999994,270.93999999999994,270.93999999999994,270.93999999999994,270.99999999999994,270.99999999999994,271.19999999999993,271.59999999999997,271.8,271.8,271.8,271.8,271.8,271.8,271.86,271.86,272.05999999999995,272.46,272.66,272.65999999999997,272.65999999999997,272.65999999999997,272.65999999999997,272.65999999999997,272.71999999999997,272.71999999999997,272.91999999999996,273.31999999999994,273.52,273.52,273.52,273.52,273.52,273.52,273.58,273.58,273.78,274.18,274.38,274.37999999999994,274.37999999999994,274.37999999999994,274.37999999999994,274.37999999999994,274.43999999999994,274.43999999999994,274.63999999999993,275.03999999999996,275.24,275.24,275.24,275.24,275.24,275.24,275.3,275.3,275.49999999999994,275.9,276.1,276.09999999999997,276.09999999999997,276.09999999999997,276.09999999999997,276.09999999999997,276.15999999999997,276.15999999999997,276.35999999999996,276.75999999999993,276.96,276.96,276.96,276.96,276.96,276.96,277.02,277.02,277.21999999999997,277.62,277.82,277.81999999999994,277.81999999999994,277.81999999999994,277.81999999999994,277.81999999999994,277.87999999999994,277.87999999999994,278.0799999999999,278.47999999999996,278.68,278.68,278.68,278.68,278.68,278.68,278.74,278.74,278.93999999999994,279.34,279.54,279.54,279.54,279.54,279.54,279.54,279.6,279.6,279.8,280.2,280.40000000000003,280.4,280.4,280.4,280.4,280.4,280.46,280.46,280.65999999999997,281.06,281.26,281.26,281.26,281.26,281.26,281.26,281.32,281.32,281.52,281.92,282.12000000000006,282.12,282.12,282.12,282.12,282.12,282.18,282.18,282.37999999999994,282.78,282.98,282.98,282.98,282.98,282.98,282.98,283.04,283.04,283.24,283.64,283.84000000000003,283.84,283.84,283.84,283.84,283.84,283.9,283.9,284.09999999999997,284.5,284.7,284.7,284.7,284.7,284.7,284.7,284.76,284.76,284.96,285.36,285.56000000000006,285.56,285.56,285.56,285.56,285.56,285.62,285.62,285.81999999999994,286.21999999999997,286.42,286.42,286.42,286.42,286.42,286.42,286.48,286.48,286.68,287.08,287.28000000000003,287.28,287.28,287.28,287.28,287.28,287.34,287.34,287.53999999999996,287.94,288.14,288.14,288.14,288.14,288.14,288.14,288.2,288.2,288.4,288.8,289.00000000000006,289.0,289.0,289.0,289.0,289.0,289.06,289.06,289.25999999999993,289.65999999999997,289.86,289.86,289.86,289.86,289.86,289.86,289.92,289.92,290.12,290.52,290.72,290.71999999999997,290.71999999999997,290.71999999999997,290.71999999999997,290.71999999999997,290.78,290.78,290.97999999999996,291.38,291.58,291.58,291.58,291.58,291.58,291.58,291.64,291.64,291.84,292.24,292.44000000000005,292.44,292.44,292.44,292.44,292.44,292.5,292.5,292.69999999999993,293.09999999999997,293.3,293.3,293.3,293.3,293.3,293.3,293.36,293.36,293.56,293.96,294.16,294.15999999999997,294.15999999999997,294.15999999999997,294.15999999999997,294.15999999999997,294.21999999999997,294.21999999999997,294.41999999999996,294.82,295.02,295.02,295.02,295.02,295.02,295.02,295.08,295.08,295.28,295.68,295.88000000000005,295.88,295.88,295.88,295.88,295.88,295.94,295.94,296.14,296.53999999999996,296.74,296.74,296.74,296.74,296.74,296.74,296.8,296.8,297.0,297.4,297.6,297.59999999999997,297.59999999999997,297.59999999999997,297.59999999999997,297.59999999999997,297.65999999999997,297.65999999999997,297.85999999999996,298.26,298.46,298.46,298.46,298.46,298.46,298.46,298.52,298.52,298.71999999999997,299.12,299.32000000000005,299.32,299.32,299.32,299.32,299.32,299.38,299.38,299.58,299.97999999999996,300.18,300.18,300.18,300.18,300.18,300.18,300.24,300.24,300.44,300.84,301.04,301.03999999999996,301.03999999999996,301.03999999999996,301.03999999999996,301.03999999999996,301.09999999999997,301.09999999999997,301.29999999999995,301.7,301.9,301.9,301.9,301.9,301.9,301.9,301.96,301.96,302.15999999999997,302.56,302.76000000000005,302.76,302.76,302.76,302.76,302.76,302.82,302.82,303.02,303.41999999999996,303.62,303.62,303.62,303.62,303.62,303.62,303.68,303.68,303.88,304.28,304.48,304.47999999999996,304.47999999999996,304.47999999999996,304.47999999999996,304.47999999999996,304.53999999999996,304.53999999999996,304.73999999999995,305.14,305.34,305.34,305.34,305.34,305.34,305.34,305.4,305.4,305.59999999999997,306.0,306.20000000000005,306.2,306.2,306.2,306.2,306.2,306.26,306.26,306.46,306.85999999999996,307.06,307.06,307.06,307.06,307.06,307.06,307.12,307.12,307.32,307.71999999999997,307.92,307.91999999999996,307.91999999999996,307.91999999999996,307.91999999999996,307.91999999999996,307.97999999999996,307.97999999999996,308.17999999999995,308.58,308.78,308.78,308.78,308.78,308.78,308.78,308.84000000000003,308.84000000000003,309.03999999999996,309.44,309.64000000000004,309.64,309.64,309.64,309.64,309.64,309.7,309.7,309.9,310.29999999999995,310.5,310.5,310.5,310.5,310.5,310.5,310.56,310.56,310.76,311.15999999999997,311.36,311.35999999999996,311.35999999999996,311.44999999999993,312.06999999999994,312.15999999999997,312.15999999999997,312.15999999999997,312.15999999999997,312.15999999999997,312.15999999999997]},{"y":[null,null,null,null,null,null,0.0,-6.899705602038983,-6.899705602038983,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,-6.761721824102423,-6.761721824102423,0.0,null,null,null,null,null,null,null,null,null,null,null,0.0,-6.899705602038983,-6.899705602038983,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,-6.761721824102423,-6.761721824102423,0.0,null,null,null,null,null,null,null,null,null,null,null,0.0,-6.899705602038983,-6.899705602038983,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,2.5528995279306037,2.5528995279306037,0.0,null,null,null,null,null,null,0.0,-6.761721824102423,-6.761721824102423,0.0,null,null,null,null,null],"type":"scatter","name":"Gy","hovertemplate":"(%{x:.4f} ms, %{y:.2f} mT/m)","x":[0.0,0.0,0.0,0.0,0.0,3.1800000000000006,3.1800000000000006,3.2400000000000007,3.920000000000001,3.980000000000001,3.980000000000001,3.980000000000001,3.980000000000001,3.980000000000001,3.980000000000001,4.780000000000001,4.780000000000001,4.800000000000002,4.820000000000001,4.840000000000002,4.840000000000002,4.840000000000002,4.840000000000002,4.840000000000002,4.840000000000002,5.6400000000000015,5.6400000000000015,5.660000000000002,5.6800000000000015,5.700000000000002,5.700000000000002,5.700000000000002,5.700000000000002,5.700000000000002,5.700000000000002,6.500000000000003,6.500000000000003,6.520000000000002,6.540000000000003,6.560000000000002,6.560000000000002,6.560000000000002,6.560000000000002,6.560000000000002,6.560000000000002,7.360000000000003,7.360000000000003,7.380000000000003,7.400000000000003,7.420000000000003,7.420000000000003,7.420000000000003,7.420000000000003,7.420000000000003,7.420000000000003,8.220000000000004,8.220000000000004,8.240000000000002,8.260000000000003,8.280000000000003,8.280000000000003,8.280000000000003,8.280000000000003,8.280000000000003,8.280000000000003,9.080000000000004,9.080000000000004,9.100000000000001,9.120000000000003,9.140000000000002,9.140000000000002,9.140000000000002,9.140000000000002,9.140000000000002,9.140000000000002,9.940000000000003,9.940000000000003,9.960000000000003,9.980000000000002,10.000000000000002,10.000000000000002,10.000000000000002,10.000000000000002,10.000000000000002,10.000000000000002,10.800000000000002,10.800000000000002,10.820000000000002,10.840000000000002,10.860000000000001,10.860000000000001,10.860000000000001,10.860000000000001,10.860000000000001,10.860000000000001,11.660000000000002,11.660000000000002,11.680000000000001,11.700000000000003,11.72,11.72,11.72,11.72,11.72,11.72,12.520000000000001,12.520000000000001,12.540000000000001,12.560000000000002,12.58,12.58,12.58,12.58,12.58,12.58,13.38,13.38,13.4,13.420000000000002,13.440000000000001,13.440000000000001,13.440000000000001,13.440000000000001,13.440000000000001,13.440000000000001,14.24,14.24,14.26,14.280000000000001,14.3,14.3,14.3,14.3,14.3,14.3,15.100000000000001,15.100000000000001,15.12,15.14,15.16,15.16,15.16,15.16,15.16,15.16,15.959999999999999,15.959999999999999,15.979999999999997,15.999999999999996,16.02,16.02,16.02,16.02,16.02,16.02,16.819999999999997,16.819999999999997,16.839999999999996,16.859999999999996,16.88,16.88,16.88,16.88,16.88,16.88,17.679999999999996,17.679999999999996,17.699999999999996,17.719999999999995,17.74,17.74,17.74,17.74,17.74,17.74,18.54,18.54,18.559999999999995,18.579999999999995,18.599999999999998,18.599999999999998,18.599999999999998,18.599999999999998,18.599999999999998,18.599999999999998,19.4,19.4,19.419999999999995,19.439999999999994,19.459999999999997,19.459999999999997,19.459999999999997,19.459999999999997,19.459999999999997,19.459999999999997,20.259999999999998,20.259999999999998,20.279999999999998,20.299999999999994,20.319999999999997,20.319999999999997,20.319999999999997,20.319999999999997,20.319999999999997,20.319999999999997,21.119999999999997,21.119999999999997,21.139999999999997,21.159999999999993,21.179999999999996,21.179999999999996,21.179999999999996,21.179999999999996,21.179999999999996,21.179999999999996,21.979999999999997,21.979999999999997,21.999999999999996,22.019999999999996,22.039999999999996,22.039999999999996,22.039999999999996,22.039999999999996,22.039999999999996,22.039999999999996,22.839999999999996,22.839999999999996,22.859999999999996,22.879999999999995,22.899999999999995,22.899999999999995,22.899999999999995,22.899999999999995,22.899999999999995,22.899999999999995,23.699999999999996,23.699999999999996,23.719999999999995,23.739999999999995,23.759999999999998,23.759999999999998,23.759999999999998,23.759999999999998,23.759999999999998,23.759999999999998,24.559999999999995,24.559999999999995,24.579999999999995,24.599999999999994,24.619999999999997,24.619999999999997,24.619999999999997,24.619999999999997,24.619999999999997,24.619999999999997,25.419999999999995,25.419999999999995,25.439999999999994,25.459999999999994,25.479999999999997,25.479999999999997,25.479999999999997,25.479999999999997,25.479999999999997,25.479999999999997,26.279999999999994,26.279999999999994,26.299999999999994,26.319999999999993,26.339999999999996,26.339999999999996,26.339999999999996,26.339999999999996,26.339999999999996,26.339999999999996,27.139999999999993,27.139999999999993,27.159999999999993,27.179999999999993,27.199999999999996,27.199999999999996,27.199999999999996,27.199999999999996,27.199999999999996,27.199999999999996,27.999999999999993,27.999999999999993,28.019999999999992,28.039999999999992,28.059999999999995,28.059999999999995,28.059999999999995,28.059999999999995,28.059999999999995,28.059999999999995,28.859999999999992,28.859999999999992,28.879999999999992,28.89999999999999,28.919999999999995,28.919999999999995,28.919999999999995,28.919999999999995,28.919999999999995,28.919999999999995,29.71999999999999,29.71999999999999,29.73999999999999,29.75999999999999,29.779999999999994,29.779999999999994,29.779999999999994,29.779999999999994,29.779999999999994,29.779999999999994,30.57999999999999,30.57999999999999,30.59999999999999,30.61999999999999,30.639999999999993,30.639999999999993,30.639999999999993,30.639999999999993,30.639999999999993,30.639999999999993,31.439999999999994,31.439999999999994,31.459999999999994,31.479999999999993,31.499999999999993,31.499999999999993,31.499999999999993,31.499999999999993,31.499999999999993,31.499999999999993,32.3,32.3,32.31999999999999,32.339999999999996,32.35999999999999,32.35999999999999,32.35999999999999,32.35999999999999,32.35999999999999,32.35999999999999,33.16,33.16,33.17999999999999,33.199999999999996,33.21999999999999,33.21999999999999,33.21999999999999,33.21999999999999,33.21999999999999,33.21999999999999,34.019999999999996,34.019999999999996,34.03999999999999,34.059999999999995,34.07999999999999,34.07999999999999,34.07999999999999,34.07999999999999,34.07999999999999,34.07999999999999,34.879999999999995,34.879999999999995,34.89999999999999,34.919999999999995,34.93999999999999,34.93999999999999,34.93999999999999,34.93999999999999,34.93999999999999,34.93999999999999,35.739999999999995,35.739999999999995,35.75999999999999,35.779999999999994,35.79999999999999,35.79999999999999,35.79999999999999,35.79999999999999,35.79999999999999,35.79999999999999,36.599999999999994,36.599999999999994,36.61999999999999,36.63999999999999,36.65999999999999,36.65999999999999,36.65999999999999,36.65999999999999,36.65999999999999,36.65999999999999,37.459999999999994,37.459999999999994,37.47999999999999,37.49999999999999,37.51999999999999,37.51999999999999,37.51999999999999,37.51999999999999,37.51999999999999,37.51999999999999,38.31999999999999,38.31999999999999,38.33999999999999,38.35999999999999,38.37999999999999,38.37999999999999,38.37999999999999,38.37999999999999,38.37999999999999,38.37999999999999,39.17999999999999,39.17999999999999,39.19999999999999,39.21999999999999,39.23999999999999,39.23999999999999,39.23999999999999,39.23999999999999,39.23999999999999,39.23999999999999,40.03999999999999,40.03999999999999,40.05999999999999,40.07999999999999,40.09999999999999,40.09999999999999,40.09999999999999,40.09999999999999,40.09999999999999,40.09999999999999,40.89999999999999,40.89999999999999,40.919999999999995,40.93999999999999,40.95999999999999,40.959999999999994,40.959999999999994,40.959999999999994,40.959999999999994,40.959999999999994,41.75999999999999,41.75999999999999,41.779999999999994,41.79999999999999,41.819999999999986,41.81999999999999,41.81999999999999,41.81999999999999,41.81999999999999,41.81999999999999,42.61999999999999,42.61999999999999,42.63999999999999,42.65999999999999,42.679999999999986,42.67999999999999,42.67999999999999,42.67999999999999,42.67999999999999,42.67999999999999,43.47999999999999,43.47999999999999,43.49999999999999,43.51999999999999,43.539999999999985,43.53999999999999,43.53999999999999,43.53999999999999,43.53999999999999,43.53999999999999,44.33999999999999,44.33999999999999,44.35999999999999,44.37999999999999,44.39999999999999,44.39999999999999,44.39999999999999,44.39999999999999,44.39999999999999,44.39999999999999,45.19999999999999,45.19999999999999,45.21999999999999,45.23999999999999,45.25999999999999,45.26,45.26,45.26,45.26,45.26,46.05999999999999,46.05999999999999,46.07999999999999,46.09999999999999,46.11999999999999,46.12,46.12,46.12,46.12,46.12,46.91999999999999,46.91999999999999,46.93999999999999,46.95999999999999,46.97999999999999,46.98,46.98,46.98,46.98,46.98,47.77999999999999,47.77999999999999,47.79999999999999,47.819999999999986,47.83999999999999,47.839999999999996,47.839999999999996,47.839999999999996,47.839999999999996,47.839999999999996,48.639999999999986,48.639999999999986,48.65999999999999,48.679999999999986,48.69999999999999,48.699999999999996,48.699999999999996,48.699999999999996,48.699999999999996,48.699999999999996,49.499999999999986,49.499999999999986,49.51999999999999,49.539999999999985,49.55999999999999,49.559999999999995,49.559999999999995,49.559999999999995,49.559999999999995,49.559999999999995,50.359999999999985,50.359999999999985,50.37999999999999,50.399999999999984,50.41999999999999,50.419999999999995,50.419999999999995,50.419999999999995,50.419999999999995,50.419999999999995,51.219999999999985,51.219999999999985,51.23999999999999,51.259999999999984,51.27999999999999,51.279999999999994,51.279999999999994,51.279999999999994,51.279999999999994,51.279999999999994,52.079999999999984,52.079999999999984,52.09999999999999,52.11999999999998,52.139999999999986,52.13999999999999,52.13999999999999,52.13999999999999,52.13999999999999,52.13999999999999,52.93999999999998,52.93999999999998,52.95999999999999,52.97999999999998,52.999999999999986,52.99999999999999,52.99999999999999,52.99999999999999,52.99999999999999,52.99999999999999,53.79999999999999,53.79999999999999,53.819999999999986,53.83999999999998,53.859999999999985,53.85999999999999,53.85999999999999,53.85999999999999,53.85999999999999,53.85999999999999,54.65999999999999,54.65999999999999,54.679999999999986,54.69999999999998,54.719999999999985,54.71999999999999,54.71999999999999,54.71999999999999,54.71999999999999,54.71999999999999,55.51999999999999,55.51999999999999,55.539999999999985,55.55999999999998,55.579999999999984,55.57999999999999,55.57999999999999,55.57999999999999,55.57999999999999,55.57999999999999,56.37999999999999,56.37999999999999,56.399999999999984,56.41999999999999,56.43999999999998,56.43999999999999,56.43999999999999,56.43999999999999,56.43999999999999,56.43999999999999,57.23999999999999,57.23999999999999,57.259999999999984,57.27999999999999,57.29999999999998,57.29999999999999,57.29999999999999,57.29999999999999,57.29999999999999,57.29999999999999,58.09999999999999,58.09999999999999,58.11999999999998,58.139999999999986,58.15999999999998,58.15999999999999,58.15999999999999,58.15999999999999,58.15999999999999,58.15999999999999,58.95999999999999,58.95999999999999,58.97999999999998,58.999999999999986,59.01999999999998,59.01999999999999,59.01999999999999,59.01999999999999,59.01999999999999,59.01999999999999,59.819999999999986,59.819999999999986,59.83999999999998,59.859999999999985,59.87999999999998,59.87999999999999,59.87999999999999,59.87999999999999,59.87999999999999,59.87999999999999,60.679999999999986,60.679999999999986,60.69999999999998,60.719999999999985,60.73999999999998,60.73999999999999,60.73999999999999,60.73999999999999,60.73999999999999,60.73999999999999,61.539999999999985,61.539999999999985,61.55999999999998,61.579999999999984,61.59999999999998,61.59999999999999,61.59999999999999,61.59999999999999,61.59999999999999,61.59999999999999,62.399999999999984,62.399999999999984,62.41999999999998,62.43999999999998,62.45999999999998,62.45999999999999,62.45999999999999,62.45999999999999,62.45999999999999,62.45999999999999,63.259999999999984,63.259999999999984,63.27999999999999,63.29999999999998,63.319999999999986,63.319999999999986,63.319999999999986,63.319999999999986,63.319999999999986,63.319999999999986,64.11999999999998,64.11999999999998,64.13999999999999,64.15999999999998,64.17999999999999,64.17999999999999,64.17999999999999,64.17999999999999,64.17999999999999,64.17999999999999,64.97999999999998,64.97999999999998,64.99999999999999,65.01999999999998,65.03999999999999,65.03999999999999,65.03999999999999,65.03999999999999,65.03999999999999,65.03999999999999,65.83999999999997,65.83999999999997,65.85999999999999,65.87999999999998,65.89999999999999,65.89999999999999,65.89999999999999,65.89999999999999,65.89999999999999,65.89999999999999,66.69999999999999,66.69999999999999,66.71999999999998,66.73999999999998,66.75999999999999,66.75999999999999,66.75999999999999,66.75999999999999,66.75999999999999,66.75999999999999,67.55999999999999,67.55999999999999,67.57999999999998,67.59999999999998,67.61999999999999,67.61999999999999,67.61999999999999,67.61999999999999,67.61999999999999,67.61999999999999,68.41999999999999,68.41999999999999,68.43999999999998,68.45999999999998,68.47999999999999,68.47999999999999,68.47999999999999,68.47999999999999,68.47999999999999,68.47999999999999,69.27999999999999,69.27999999999999,69.29999999999998,69.31999999999998,69.33999999999999,69.33999999999999,69.33999999999999,69.33999999999999,69.33999999999999,69.33999999999999,70.13999999999999,70.13999999999999,70.15999999999998,70.17999999999998,70.19999999999999,70.19999999999999,70.19999999999999,70.19999999999999,70.19999999999999,70.19999999999999,70.99999999999999,70.99999999999999,71.01999999999998,71.03999999999998,71.05999999999999,71.05999999999999,71.05999999999999,71.05999999999999,71.05999999999999,71.05999999999999,71.85999999999999,71.85999999999999,71.87999999999998,71.89999999999998,71.91999999999999,71.91999999999999,71.91999999999999,71.91999999999999,71.91999999999999,71.91999999999999,72.71999999999998,72.71999999999998,72.73999999999998,72.75999999999998,72.77999999999999,72.77999999999999,72.77999999999999,72.77999999999999,72.77999999999999,72.77999999999999,73.58,73.58,73.6,73.61999999999999,73.64,73.63999999999999,73.63999999999999,73.63999999999999,73.63999999999999,73.63999999999999,74.44,74.44,74.46,74.47999999999999,74.5,74.49999999999999,74.49999999999999,74.49999999999999,74.49999999999999,74.49999999999999,75.3,75.3,75.32,75.33999999999999,75.36,75.35999999999999,75.35999999999999,75.35999999999999,75.35999999999999,75.35999999999999,76.16,76.16,76.17999999999999,76.19999999999999,76.22,76.21999999999998,76.21999999999998,76.21999999999998,76.21999999999998,76.21999999999998,77.02,77.02,77.03999999999999,77.05999999999999,77.08,77.07999999999998,77.07999999999998,77.07999999999998,77.07999999999998,77.07999999999998,77.88,77.88,77.89999999999999,77.91999999999999,77.94,77.93999999999998,77.93999999999998,77.93999999999998,77.93999999999998,77.93999999999998,78.74,78.74,78.75999999999999,78.77999999999999,78.8,78.79999999999998,78.79999999999998,78.79999999999998,78.79999999999998,78.79999999999998,79.6,79.6,79.61999999999999,79.63999999999999,79.66,79.65999999999998,79.65999999999998,79.65999999999998,79.65999999999998,79.65999999999998,80.46,80.46,80.47999999999999,80.49999999999999,80.52,80.51999999999998,80.51999999999998,80.51999999999998,80.51999999999998,80.51999999999998,81.32,81.32,81.33999999999999,81.35999999999999,81.38,81.37999999999998,81.37999999999998,81.37999999999998,81.37999999999998,81.37999999999998,82.17999999999999,82.17999999999999,82.19999999999999,82.21999999999998,82.24,82.23999999999998,82.23999999999998,82.23999999999998,82.23999999999998,82.23999999999998,83.03999999999999,83.03999999999999,83.05999999999999,83.07999999999998,83.1,83.09999999999998,83.09999999999998,83.09999999999998,83.09999999999998,83.09999999999998,83.89999999999999,83.89999999999999,83.91999999999999,83.93999999999998,83.96,83.95999999999998,83.95999999999998,83.95999999999998,83.95999999999998,83.95999999999998,84.75999999999999,84.75999999999999,84.78,84.79999999999998,84.82,84.81999999999998,84.81999999999998,84.81999999999998,84.81999999999998,84.81999999999998,85.61999999999999,85.61999999999999,85.64,85.65999999999998,85.67999999999999,85.67999999999998,85.67999999999998,85.67999999999998,85.67999999999998,85.67999999999998,86.47999999999999,86.47999999999999,86.5,86.51999999999998,86.53999999999999,86.53999999999998,86.53999999999998,86.53999999999998,86.53999999999998,86.53999999999998,87.33999999999999,87.33999999999999,87.36,87.37999999999998,87.39999999999999,87.39999999999998,87.39999999999998,87.39999999999998,87.39999999999998,87.39999999999998,88.19999999999999,88.19999999999999,88.22,88.23999999999998,88.25999999999999,88.25999999999998,88.25999999999998,88.25999999999998,88.25999999999998,88.25999999999998,89.05999999999999,89.05999999999999,89.08,89.09999999999998,89.11999999999999,89.11999999999998,89.11999999999998,89.11999999999998,89.11999999999998,89.11999999999998,89.91999999999999,89.91999999999999,89.97999999999999,90.66,90.71999999999998,90.71999999999998,90.71999999999998,90.71999999999998,90.71999999999998,90.71999999999998,110.71999999999998,110.71999999999998,110.71999999999998,110.71999999999998,110.71999999999998,113.89999999999999,113.89999999999999,113.96,114.63999999999999,114.69999999999999,114.7,114.7,114.7,114.7,114.7,115.49999999999999,115.49999999999999,115.52,115.53999999999999,115.56,115.56,115.56,115.56,115.56,115.56,116.35999999999999,116.35999999999999,116.38,116.39999999999999,116.42,116.42,116.42,116.42,116.42,116.42,117.21999999999998,117.21999999999998,117.24,117.25999999999999,117.28,117.28,117.28,117.28,117.28,117.28,118.07999999999998,118.07999999999998,118.1,118.11999999999999,118.14,118.14,118.14,118.14,118.14,118.14,118.93999999999998,118.93999999999998,118.96,118.97999999999999,119.0,119.0,119.0,119.0,119.0,119.0,119.79999999999998,119.79999999999998,119.82,119.83999999999999,119.86,119.86,119.86,119.86,119.86,119.86,120.66,120.66,120.67999999999999,120.69999999999999,120.72,120.72,120.72,120.72,120.72,120.72,121.52,121.52,121.53999999999999,121.55999999999999,121.58,121.58,121.58,121.58,121.58,121.58,122.38,122.38,122.39999999999999,122.41999999999999,122.44,122.44,122.44,122.44,122.44,122.44,123.24,123.24,123.25999999999999,123.27999999999999,123.3,123.3,123.3,123.3,123.3,123.3,124.1,124.1,124.11999999999999,124.13999999999999,124.16,124.16,124.16,124.16,124.16,124.16,124.96,124.96,124.97999999999999,124.99999999999999,125.02,125.02,125.02,125.02,125.02,125.02,125.82,125.82,125.83999999999997,125.86,125.88,125.88,125.88,125.88,125.88,125.88,126.67999999999999,126.67999999999999,126.69999999999997,126.72,126.74,126.74,126.74,126.74,126.74,126.74,127.53999999999999,127.53999999999999,127.55999999999997,127.58,127.6,127.6,127.6,127.6,127.6,127.6,128.39999999999998,128.39999999999998,128.42,128.44,128.45999999999998,128.45999999999998,128.45999999999998,128.45999999999998,128.45999999999998,128.45999999999998,129.26,129.26,129.27999999999997,129.3,129.32,129.32,129.32,129.32,129.32,129.32,130.11999999999998,130.11999999999998,130.14,130.16,130.17999999999998,130.17999999999998,130.17999999999998,130.17999999999998,130.17999999999998,130.17999999999998,130.98,130.98,130.99999999999997,131.02,131.04,131.04,131.04,131.04,131.04,131.04,131.83999999999997,131.83999999999997,131.85999999999999,131.88,131.89999999999998,131.89999999999998,131.89999999999998,131.89999999999998,131.89999999999998,131.89999999999998,132.7,132.7,132.71999999999997,132.74,132.76,132.76,132.76,132.76,132.76,132.76,133.55999999999997,133.55999999999997,133.57999999999998,133.6,133.61999999999998,133.61999999999998,133.61999999999998,133.61999999999998,133.61999999999998,133.61999999999998,134.42,134.42,134.43999999999997,134.46,134.48,134.48,134.48,134.48,134.48,134.48,135.27999999999997,135.27999999999997,135.29999999999998,135.32,135.33999999999997,135.33999999999997,135.33999999999997,135.33999999999997,135.33999999999997,135.33999999999997,136.14,136.14,136.15999999999997,136.18,136.2,136.2,136.2,136.2,136.2,136.2,136.99999999999997,136.99999999999997,137.01999999999998,137.04,137.05999999999997,137.05999999999997,137.05999999999997,137.05999999999997,137.05999999999997,137.05999999999997,137.85999999999999,137.85999999999999,137.87999999999997,137.9,137.92,137.92,137.92,137.92,137.92,137.92,138.71999999999997,138.71999999999997,138.73999999999998,138.76,138.77999999999997,138.77999999999997,138.77999999999997,138.77999999999997,138.77999999999997,138.77999999999997,139.57999999999998,139.57999999999998,139.59999999999997,139.62,139.64,139.64,139.64,139.64,139.64,139.64,140.43999999999997,140.43999999999997,140.45999999999998,140.48,140.5,140.5,140.5,140.5,140.5,140.5,141.29999999999998,141.29999999999998,141.31999999999996,141.34,141.35999999999999,141.35999999999999,141.35999999999999,141.35999999999999,141.35999999999999,141.35999999999999,142.15999999999997,142.15999999999997,142.17999999999998,142.2,142.22,142.22,142.22,142.22,142.22,142.22,143.01999999999998,143.01999999999998,143.03999999999996,143.06,143.07999999999998,143.07999999999998,143.07999999999998,143.07999999999998,143.07999999999998,143.07999999999998,143.87999999999997,143.87999999999997,143.89999999999998,143.92,143.94,143.94,143.94,143.94,143.94,143.94,144.73999999999998,144.73999999999998,144.75999999999996,144.78,144.79999999999998,144.79999999999998,144.79999999999998,144.79999999999998,144.79999999999998,144.79999999999998,145.59999999999997,145.59999999999997,145.61999999999998,145.64,145.66,145.66,145.66,145.66,145.66,145.66,146.45999999999998,146.45999999999998,146.47999999999996,146.5,146.51999999999998,146.51999999999998,146.51999999999998,146.51999999999998,146.51999999999998,146.51999999999998,147.31999999999996,147.31999999999996,147.33999999999997,147.35999999999999,147.38,147.38,147.38,147.38,147.38,147.38,148.17999999999998,148.17999999999998,148.19999999999996,148.22,148.23999999999998,148.23999999999998,148.23999999999998,148.23999999999998,148.23999999999998,148.23999999999998,149.04,149.04,149.05999999999997,149.07999999999998,149.1,149.1,149.1,149.1,149.1,149.1,149.89999999999998,149.89999999999998,149.91999999999996,149.94,149.95999999999998,149.95999999999998,149.95999999999998,149.95999999999998,149.95999999999998,149.95999999999998,150.76,150.76,150.77999999999997,150.79999999999998,150.82,150.82,150.82,150.82,150.82,150.82,151.61999999999998,151.61999999999998,151.63999999999996,151.66,151.67999999999998,151.67999999999998,151.67999999999998,151.67999999999998,151.67999999999998,151.67999999999998,152.48,152.48,152.49999999999997,152.51999999999998,152.54,152.54,152.54,152.54,152.54,152.54,153.33999999999997,153.33999999999997,153.35999999999996,153.38,153.39999999999998,153.39999999999998,153.39999999999998,153.39999999999998,153.39999999999998,153.39999999999998,154.2,154.2,154.21999999999997,154.23999999999998,154.26,154.26,154.26,154.26,154.26,154.26,155.05999999999997,155.05999999999997,155.07999999999996,155.1,155.11999999999998,155.11999999999998,155.11999999999998,155.11999999999998,155.11999999999998,155.11999999999998,155.92,155.92,155.93999999999997,155.95999999999998,155.98,155.98,155.98,155.98,155.98,155.98,156.77999999999997,156.77999999999997,156.79999999999995,156.82,156.83999999999997,156.83999999999997,156.83999999999997,156.83999999999997,156.83999999999997,156.83999999999997,157.64,157.64,157.65999999999997,157.67999999999998,157.7,157.7,157.7,157.7,157.7,157.7,158.49999999999997,158.49999999999997,158.51999999999995,158.54,158.55999999999997,158.55999999999997,158.55999999999997,158.55999999999997,158.55999999999997,158.55999999999997,159.35999999999999,159.35999999999999,159.37999999999997,159.39999999999998,159.42,159.42,159.42,159.42,159.42,159.42,160.21999999999997,160.21999999999997,160.23999999999995,160.26,160.27999999999997,160.27999999999997,160.27999999999997,160.27999999999997,160.27999999999997,160.27999999999997,161.07999999999998,161.07999999999998,161.09999999999997,161.11999999999998,161.14,161.14,161.14,161.14,161.14,161.14,161.93999999999997,161.93999999999997,161.95999999999995,161.98,161.99999999999997,161.99999999999997,161.99999999999997,161.99999999999997,161.99999999999997,161.99999999999997,162.79999999999998,162.79999999999998,162.81999999999996,162.83999999999997,162.85999999999999,162.85999999999999,162.85999999999999,162.85999999999999,162.85999999999999,162.85999999999999,163.65999999999997,163.65999999999997,163.67999999999998,163.7,163.71999999999997,163.71999999999997,163.71999999999997,163.71999999999997,163.71999999999997,163.71999999999997,164.51999999999998,164.51999999999998,164.53999999999996,164.55999999999997,164.57999999999998,164.57999999999998,164.57999999999998,164.57999999999998,164.57999999999998,164.57999999999998,165.37999999999997,165.37999999999997,165.39999999999998,165.42,165.43999999999997,165.43999999999997,165.43999999999997,165.43999999999997,165.43999999999997,165.43999999999997,166.23999999999998,166.23999999999998,166.25999999999996,166.27999999999997,166.29999999999998,166.29999999999998,166.29999999999998,166.29999999999998,166.29999999999998,166.29999999999998,167.09999999999997,167.09999999999997,167.11999999999998,167.14,167.15999999999997,167.15999999999997,167.15999999999997,167.15999999999997,167.15999999999997,167.15999999999997,167.95999999999998,167.95999999999998,167.97999999999996,167.99999999999997,168.01999999999998,168.01999999999998,168.01999999999998,168.01999999999998,168.01999999999998,168.01999999999998,168.81999999999996,168.81999999999996,168.83999999999997,168.85999999999999,168.87999999999997,168.87999999999997,168.87999999999997,168.87999999999997,168.87999999999997,168.87999999999997,169.67999999999998,169.67999999999998,169.69999999999996,169.71999999999997,169.73999999999998,169.73999999999998,169.73999999999998,169.73999999999998,169.73999999999998,169.73999999999998,170.53999999999996,170.53999999999996,170.55999999999997,170.57999999999998,170.59999999999997,170.59999999999997,170.59999999999997,170.59999999999997,170.59999999999997,170.59999999999997,171.39999999999998,171.39999999999998,171.41999999999996,171.43999999999997,171.45999999999998,171.45999999999998,171.45999999999998,171.45999999999998,171.45999999999998,171.45999999999998,172.25999999999996,172.25999999999996,172.27999999999997,172.29999999999998,172.31999999999996,172.31999999999996,172.31999999999996,172.31999999999996,172.31999999999996,172.31999999999996,173.11999999999998,173.11999999999998,173.13999999999996,173.15999999999997,173.17999999999998,173.17999999999998,173.17999999999998,173.17999999999998,173.17999999999998,173.17999999999998,173.97999999999996,173.97999999999996,173.99999999999997,174.01999999999998,174.03999999999996,174.03999999999996,174.03999999999996,174.03999999999996,174.03999999999996,174.03999999999996,174.83999999999997,174.83999999999997,174.85999999999996,174.87999999999997,174.89999999999998,174.89999999999998,174.89999999999998,174.89999999999998,174.89999999999998,174.89999999999998,175.69999999999996,175.69999999999996,175.71999999999997,175.73999999999998,175.75999999999996,175.75999999999996,175.75999999999996,175.75999999999996,175.75999999999996,175.75999999999996,176.55999999999997,176.55999999999997,176.57999999999996,176.59999999999997,176.61999999999998,176.61999999999998,176.61999999999998,176.61999999999998,176.61999999999998,176.61999999999998,177.41999999999996,177.41999999999996,177.43999999999997,177.45999999999998,177.47999999999996,177.47999999999996,177.47999999999996,177.47999999999996,177.47999999999996,177.47999999999996,178.27999999999997,178.27999999999997,178.29999999999995,178.31999999999996,178.33999999999997,178.33999999999997,178.33999999999997,178.33999999999997,178.33999999999997,178.33999999999997,179.13999999999996,179.13999999999996,179.15999999999997,179.17999999999998,179.19999999999996,179.19999999999996,179.19999999999996,179.19999999999996,179.19999999999996,179.19999999999996,179.99999999999997,179.99999999999997,180.01999999999995,180.03999999999996,180.05999999999997,180.05999999999997,180.05999999999997,180.05999999999997,180.05999999999997,180.05999999999997,180.85999999999996,180.85999999999996,180.87999999999997,180.89999999999998,180.91999999999996,180.91999999999996,180.91999999999996,180.91999999999996,180.91999999999996,180.91999999999996,181.71999999999997,181.71999999999997,181.73999999999995,181.76,181.77999999999997,181.77999999999997,181.77999999999997,181.77999999999997,181.77999999999997,181.77999999999997,182.57999999999996,182.57999999999996,182.59999999999997,182.61999999999998,182.63999999999996,182.63999999999996,182.63999999999996,182.63999999999996,182.63999999999996,182.63999999999996,183.43999999999997,183.43999999999997,183.45999999999995,183.48,183.49999999999997,183.49999999999997,183.49999999999997,183.49999999999997,183.49999999999997,183.49999999999997,184.29999999999995,184.29999999999995,184.31999999999996,184.33999999999997,184.35999999999996,184.35999999999996,184.35999999999996,184.35999999999996,184.35999999999996,184.35999999999996,185.15999999999997,185.15999999999997,185.17999999999995,185.2,185.21999999999997,185.21999999999997,185.21999999999997,185.21999999999997,185.21999999999997,185.21999999999997,186.01999999999995,186.01999999999995,186.03999999999996,186.05999999999997,186.07999999999996,186.07999999999996,186.07999999999996,186.07999999999996,186.07999999999996,186.07999999999996,186.87999999999997,186.87999999999997,186.89999999999995,186.92,186.93999999999997,186.93999999999997,186.93999999999997,186.93999999999997,186.93999999999997,186.93999999999997,187.73999999999995,187.73999999999995,187.75999999999996,187.77999999999997,187.79999999999995,187.79999999999995,187.79999999999995,187.79999999999995,187.79999999999995,187.79999999999995,188.59999999999997,188.59999999999997,188.61999999999995,188.64,188.65999999999997,188.65999999999997,188.65999999999997,188.65999999999997,188.65999999999997,188.65999999999997,189.45999999999995,189.45999999999995,189.47999999999996,189.49999999999997,189.51999999999995,189.51999999999995,189.51999999999995,189.51999999999995,189.51999999999995,189.51999999999995,190.31999999999996,190.31999999999996,190.33999999999995,190.35999999999999,190.37999999999997,190.37999999999997,190.37999999999997,190.37999999999997,190.37999999999997,190.37999999999997,191.17999999999995,191.17999999999995,191.19999999999996,191.21999999999997,191.23999999999995,191.23999999999995,191.23999999999995,191.23999999999995,191.23999999999995,191.23999999999995,192.03999999999996,192.03999999999996,192.05999999999995,192.07999999999998,192.09999999999997,192.09999999999997,192.09999999999997,192.09999999999997,192.09999999999997,192.09999999999997,192.89999999999995,192.89999999999995,192.91999999999996,192.93999999999997,192.95999999999995,192.95999999999995,192.95999999999995,192.95999999999995,192.95999999999995,192.95999999999995,193.75999999999996,193.75999999999996,193.77999999999994,193.79999999999998,193.81999999999996,193.81999999999996,193.81999999999996,193.81999999999996,193.81999999999996,193.81999999999996,194.61999999999995,194.61999999999995,194.63999999999996,194.65999999999997,194.67999999999995,194.67999999999995,194.67999999999995,194.67999999999995,194.67999999999995,194.67999999999995,195.47999999999996,195.47999999999996,195.49999999999994,195.51999999999998,195.53999999999996,195.53999999999996,195.53999999999996,195.53999999999996,195.53999999999996,195.53999999999996,196.33999999999995,196.33999999999995,196.35999999999996,196.37999999999997,196.39999999999998,196.39999999999998,196.39999999999998,196.39999999999998,196.39999999999998,196.39999999999998,197.19999999999996,197.19999999999996,197.21999999999994,197.23999999999998,197.25999999999996,197.25999999999996,197.25999999999996,197.25999999999996,197.25999999999996,197.25999999999996,198.05999999999995,198.05999999999995,198.07999999999996,198.09999999999997,198.11999999999998,198.11999999999998,198.11999999999998,198.11999999999998,198.11999999999998,198.11999999999998,198.91999999999996,198.91999999999996,198.93999999999994,198.95999999999998,198.97999999999996,198.97999999999996,198.97999999999996,198.97999999999996,198.97999999999996,198.97999999999996,199.77999999999994,199.77999999999994,199.79999999999995,199.81999999999996,199.83999999999997,199.83999999999997,199.83999999999997,199.83999999999997,199.83999999999997,199.83999999999997,200.63999999999996,200.63999999999996,200.69999999999996,201.37999999999994,201.43999999999994,201.43999999999994,201.43999999999994,201.43999999999994,201.43999999999994,201.43999999999994,221.43999999999997,221.43999999999997,221.43999999999997,221.43999999999997,221.43999999999997,224.61999999999995,224.61999999999995,224.67999999999995,225.35999999999996,225.41999999999996,225.41999999999996,225.41999999999996,225.41999999999996,225.41999999999996,225.41999999999996,226.21999999999997,226.21999999999997,226.23999999999998,226.26,226.27999999999997,226.27999999999997,226.27999999999997,226.27999999999997,226.27999999999997,226.27999999999997,227.07999999999998,227.07999999999998,227.09999999999997,227.11999999999998,227.14,227.13999999999996,227.13999999999996,227.13999999999996,227.13999999999996,227.13999999999996,227.93999999999997,227.93999999999997,227.95999999999998,227.98,227.99999999999997,227.99999999999997,227.99999999999997,227.99999999999997,227.99999999999997,227.99999999999997,228.79999999999998,228.79999999999998,228.81999999999996,228.83999999999997,228.85999999999999,228.85999999999996,228.85999999999996,228.85999999999996,228.85999999999996,228.85999999999996,229.65999999999997,229.65999999999997,229.67999999999998,229.7,229.71999999999997,229.71999999999997,229.71999999999997,229.71999999999997,229.71999999999997,229.71999999999997,230.51999999999998,230.51999999999998,230.53999999999996,230.55999999999997,230.57999999999998,230.57999999999996,230.57999999999996,230.57999999999996,230.57999999999996,230.57999999999996,231.37999999999997,231.37999999999997,231.39999999999998,231.42,231.43999999999997,231.43999999999997,231.43999999999997,231.43999999999997,231.43999999999997,231.43999999999997,232.23999999999998,232.23999999999998,232.25999999999996,232.27999999999997,232.29999999999998,232.29999999999995,232.29999999999995,232.29999999999995,232.29999999999995,232.29999999999995,233.09999999999997,233.09999999999997,233.11999999999998,233.14,233.15999999999997,233.15999999999997,233.15999999999997,233.15999999999997,233.15999999999997,233.15999999999997,233.95999999999998,233.95999999999998,233.97999999999996,234.0,234.01999999999998,234.01999999999995,234.01999999999995,234.01999999999995,234.01999999999995,234.01999999999995,234.81999999999996,234.81999999999996,234.83999999999997,234.85999999999999,234.87999999999997,234.87999999999997,234.87999999999997,234.87999999999997,234.87999999999997,234.87999999999997,235.67999999999998,235.67999999999998,235.69999999999996,235.72,235.73999999999998,235.73999999999995,235.73999999999995,235.73999999999995,235.73999999999995,235.73999999999995,236.53999999999996,236.53999999999996,236.55999999999997,236.57999999999998,236.59999999999997,236.59999999999997,236.59999999999997,236.59999999999997,236.59999999999997,236.59999999999997,237.39999999999998,237.39999999999998,237.41999999999996,237.44,237.45999999999998,237.45999999999995,237.45999999999995,237.45999999999995,237.45999999999995,237.45999999999995,238.25999999999996,238.25999999999996,238.27999999999997,238.29999999999998,238.31999999999996,238.31999999999996,238.31999999999996,238.31999999999996,238.31999999999996,238.31999999999996,239.11999999999998,239.11999999999998,239.13999999999996,239.16,239.17999999999998,239.17999999999995,239.17999999999995,239.17999999999995,239.17999999999995,239.17999999999995,239.97999999999996,239.97999999999996,239.99999999999997,240.01999999999998,240.03999999999996,240.03999999999996,240.03999999999996,240.03999999999996,240.03999999999996,240.03999999999996,240.83999999999997,240.83999999999997,240.85999999999996,240.88,240.89999999999998,240.89999999999995,240.89999999999995,240.89999999999995,240.89999999999995,240.89999999999995,241.69999999999996,241.69999999999996,241.71999999999997,241.73999999999998,241.75999999999996,241.75999999999996,241.75999999999996,241.75999999999996,241.75999999999996,241.75999999999996,242.55999999999997,242.55999999999997,242.57999999999996,242.6,242.61999999999998,242.61999999999995,242.61999999999995,242.61999999999995,242.61999999999995,242.61999999999995,243.41999999999996,243.41999999999996,243.43999999999997,243.45999999999998,243.47999999999996,243.47999999999996,243.47999999999996,243.47999999999996,243.47999999999996,243.47999999999996,244.27999999999997,244.27999999999997,244.29999999999995,244.32,244.33999999999997,244.33999999999995,244.33999999999995,244.33999999999995,244.33999999999995,244.33999999999995,245.13999999999996,245.13999999999996,245.15999999999997,245.17999999999998,245.19999999999996,245.19999999999996,245.19999999999996,245.19999999999996,245.19999999999996,245.19999999999996,245.99999999999997,245.99999999999997,246.01999999999995,246.04,246.05999999999997,246.05999999999995,246.05999999999995,246.05999999999995,246.05999999999995,246.05999999999995,246.85999999999996,246.85999999999996,246.87999999999997,246.89999999999998,246.91999999999996,246.91999999999996,246.91999999999996,246.91999999999996,246.91999999999996,246.91999999999996,247.71999999999997,247.71999999999997,247.73999999999995,247.76,247.77999999999997,247.77999999999997,247.77999999999997,247.77999999999997,247.77999999999997,247.77999999999997,248.57999999999996,248.57999999999996,248.59999999999997,248.61999999999998,248.64,248.64,248.64,248.64,248.64,248.64,249.43999999999997,249.43999999999997,249.45999999999995,249.48,249.49999999999997,249.49999999999997,249.49999999999997,249.49999999999997,249.49999999999997,249.49999999999997,250.29999999999995,250.29999999999995,250.32,250.33999999999995,250.35999999999999,250.35999999999999,250.35999999999999,250.35999999999999,250.35999999999999,250.35999999999999,251.16,251.16,251.18,251.2,251.22,251.22,251.22,251.22,251.22,251.22,252.01999999999995,252.01999999999995,252.04,252.05999999999995,252.07999999999998,252.07999999999998,252.07999999999998,252.07999999999998,252.07999999999998,252.07999999999998,252.88,252.88,252.9,252.92,252.94,252.94,252.94,252.94,252.94,252.94,253.73999999999995,253.73999999999995,253.76,253.77999999999994,253.79999999999998,253.79999999999998,253.79999999999998,253.79999999999998,253.79999999999998,253.79999999999998,254.6,254.6,254.62,254.64,254.66,254.66,254.66,254.66,254.66,254.66,255.45999999999995,255.45999999999995,255.48,255.49999999999994,255.51999999999998,255.51999999999998,255.51999999999998,255.51999999999998,255.51999999999998,255.51999999999998,256.32,256.32,256.34000000000003,256.35999999999996,256.38,256.38,256.38,256.38,256.38,256.38,257.17999999999995,257.17999999999995,257.2,257.21999999999997,257.23999999999995,257.23999999999995,257.23999999999995,257.23999999999995,257.23999999999995,257.23999999999995,258.03999999999996,258.03999999999996,258.06,258.08,258.1,258.1,258.1,258.1,258.1,258.1,258.9,258.9,258.91999999999996,258.93999999999994,258.96,258.96,258.96,258.96,258.96,258.96,259.76,259.76,259.78000000000003,259.79999999999995,259.82,259.82,259.82,259.82,259.82,259.82,260.61999999999995,260.61999999999995,260.64,260.65999999999997,260.67999999999995,260.67999999999995,260.67999999999995,260.67999999999995,260.67999999999995,260.67999999999995,261.48,261.48,261.5,261.52,261.54,261.54,261.54,261.54,261.54,261.54,262.34,262.34,262.35999999999996,262.37999999999994,262.4,262.4,262.4,262.4,262.4,262.4,263.2,263.2,263.22,263.23999999999995,263.26,263.26,263.26,263.26,263.26,263.26,264.05999999999995,264.05999999999995,264.08,264.09999999999997,264.11999999999995,264.11999999999995,264.11999999999995,264.11999999999995,264.11999999999995,264.11999999999995,264.92,264.92,264.94,264.96,264.98,264.98,264.98,264.98,264.98,264.98,265.78,265.78,265.79999999999995,265.81999999999994,265.84,265.84,265.84,265.84,265.84,265.84,266.64,266.64,266.66,266.67999999999995,266.7,266.7,266.7,266.7,266.7,266.7,267.49999999999994,267.49999999999994,267.52,267.53999999999996,267.55999999999995,267.55999999999995,267.55999999999995,267.55999999999995,267.55999999999995,267.55999999999995,268.36,268.36,268.38,268.4,268.42,268.42,268.42,268.42,268.42,268.42,269.21999999999997,269.21999999999997,269.23999999999995,269.25999999999993,269.28,269.28,269.28,269.28,269.28,269.28,270.08,270.08,270.1,270.11999999999995,270.14,270.14,270.14,270.14,270.14,270.14,270.93999999999994,270.93999999999994,270.96,270.97999999999996,270.99999999999994,270.99999999999994,270.99999999999994,270.99999999999994,270.99999999999994,270.99999999999994,271.8,271.8,271.82,271.84,271.86,271.86,271.86,271.86,271.86,271.86,272.65999999999997,272.65999999999997,272.67999999999995,272.69999999999993,272.71999999999997,272.71999999999997,272.71999999999997,272.71999999999997,272.71999999999997,272.71999999999997,273.52,273.52,273.54,273.55999999999995,273.58,273.58,273.58,273.58,273.58,273.58,274.37999999999994,274.37999999999994,274.4,274.41999999999996,274.43999999999994,274.43999999999994,274.43999999999994,274.43999999999994,274.43999999999994,274.43999999999994,275.24,275.24,275.26,275.28,275.3,275.3,275.3,275.3,275.3,275.3,276.09999999999997,276.09999999999997,276.12,276.13999999999993,276.15999999999997,276.15999999999997,276.15999999999997,276.15999999999997,276.15999999999997,276.15999999999997,276.96,276.96,276.98,276.99999999999994,277.02,277.02,277.02,277.02,277.02,277.02,277.81999999999994,277.81999999999994,277.84,277.85999999999996,277.87999999999994,277.87999999999994,277.87999999999994,277.87999999999994,277.87999999999994,277.87999999999994,278.68,278.68,278.7,278.71999999999997,278.74,278.74,278.74,278.74,278.74,278.74,279.54,279.54,279.56000000000006,279.58,279.6,279.6,279.6,279.6,279.6,279.6,280.4,280.4,280.42,280.43999999999994,280.46,280.46,280.46,280.46,280.46,280.46,281.26,281.26,281.28000000000003,281.3,281.32,281.32,281.32,281.32,281.32,281.32,282.12,282.12,282.14,282.15999999999997,282.18,282.18,282.18,282.18,282.18,282.18,282.98,282.98,283.00000000000006,283.02,283.04,283.04,283.04,283.04,283.04,283.04,283.84,283.84,283.86,283.87999999999994,283.9,283.9,283.9,283.9,283.9,283.9,284.7,284.7,284.72,284.74,284.76,284.76,284.76,284.76,284.76,284.76,285.56,285.56,285.58,285.59999999999997,285.62,285.62,285.62,285.62,285.62,285.62,286.42,286.42,286.44000000000005,286.46,286.48,286.48,286.48,286.48,286.48,286.48,287.28,287.28,287.3,287.31999999999994,287.34,287.34,287.34,287.34,287.34,287.34,288.14,288.14,288.16,288.18,288.2,288.2,288.2,288.2,288.2,288.2,289.0,289.0,289.02,289.03999999999996,289.06,289.06,289.06,289.06,289.06,289.06,289.86,289.86,289.88000000000005,289.9,289.92,289.92,289.92,289.92,289.92,289.92,290.71999999999997,290.71999999999997,290.74,290.76,290.78,290.78,290.78,290.78,290.78,290.78,291.58,291.58,291.6,291.62,291.64,291.64,291.64,291.64,291.64,291.64,292.44,292.44,292.46,292.47999999999996,292.5,292.5,292.5,292.5,292.5,292.5,293.3,293.3,293.32000000000005,293.34,293.36,293.36,293.36,293.36,293.36,293.36,294.15999999999997,294.15999999999997,294.18,294.2,294.21999999999997,294.21999999999997,294.21999999999997,294.21999999999997,294.21999999999997,294.21999999999997,295.02,295.02,295.04,295.06,295.08,295.08,295.08,295.08,295.08,295.08,295.88,295.88,295.9,295.91999999999996,295.94,295.94,295.94,295.94,295.94,295.94,296.74,296.74,296.76000000000005,296.78,296.8,296.8,296.8,296.8,296.8,296.8,297.59999999999997,297.59999999999997,297.62,297.64,297.65999999999997,297.65999999999997,297.65999999999997,297.65999999999997,297.65999999999997,297.65999999999997,298.46,298.46,298.48,298.5,298.52,298.52,298.52,298.52,298.52,298.52,299.32,299.32,299.34,299.35999999999996,299.38,299.38,299.38,299.38,299.38,299.38,300.18,300.18,300.20000000000005,300.21999999999997,300.24,300.24,300.24,300.24,300.24,300.24,301.03999999999996,301.03999999999996,301.06,301.08,301.09999999999997,301.09999999999997,301.09999999999997,301.09999999999997,301.09999999999997,301.09999999999997,301.9,301.9,301.92,301.94,301.96,301.96,301.96,301.96,301.96,301.96,302.76,302.76,302.78,302.79999999999995,302.82,302.82,302.82,302.82,302.82,302.82,303.62,303.62,303.64000000000004,303.65999999999997,303.68,303.68,303.68,303.68,303.68,303.68,304.47999999999996,304.47999999999996,304.5,304.52,304.53999999999996,304.53999999999996,304.53999999999996,304.53999999999996,304.53999999999996,304.53999999999996,305.34,305.34,305.36,305.38,305.4,305.4,305.4,305.4,305.4,305.4,306.2,306.2,306.21999999999997,306.23999999999995,306.26,306.26,306.26,306.26,306.26,306.26,307.06,307.06,307.08000000000004,307.09999999999997,307.12,307.12,307.12,307.12,307.12,307.12,307.91999999999996,307.91999999999996,307.94,307.96,307.97999999999996,307.97999999999996,307.97999999999996,307.97999999999996,307.97999999999996,307.97999999999996,308.78,308.78,308.8,308.82,308.84000000000003,308.84000000000003,308.84000000000003,308.84000000000003,308.84000000000003,308.84000000000003,309.64,309.64,309.65999999999997,309.67999999999995,309.7,309.7,309.7,309.7,309.7,309.7,310.5,310.5,310.52000000000004,310.53999999999996,310.56,310.56,310.56,310.56,310.56,310.56,311.35999999999996,311.35999999999996,311.41999999999996,312.09999999999997,312.15999999999997,312.15999999999997,312.15999999999997,312.15999999999997,312.15999999999997,312.15999999999997]},{"y":[null,0.0,9.394640199935981,9.394640199935981,0.0,null,0.0,-23.33506495341499,-23.33506495341499,0.0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0.0,9.394640199935981,9.394640199935981,0.0,null,0.0,-23.33506495341499,-23.33506495341499,0.0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0.0,9.394640199935981,9.394640199935981,0.0,null,0.0,-23.33506495341499,-23.33506495341499,0.0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"type":"scatter","name":"Gz","hovertemplate":"(%{x:.4f} ms, %{y:.2f} mT/m)","x":[0.0,0.019999999999999997,0.09999999999999999,3.1,3.1799999999999997,3.1800000000000006,3.1800000000000006,3.3600000000000008,3.8000000000000003,3.980000000000001,3.980000000000001,3.980000000000001,3.980000000000001,3.980000000000001,3.980000000000001,4.780000000000001,4.780000000000001,4.780000000000001,4.780000000000001,4.780000000000001,4.840000000000002,4.840000000000002,4.840000000000002,4.840000000000002,4.840000000000002,5.6400000000000015,5.6400000000000015,5.6400000000000015,5.6400000000000015,5.6400000000000015,5.700000000000002,5.700000000000002,5.700000000000002,5.700000000000002,5.700000000000002,6.500000000000003,6.500000000000003,6.500000000000003,6.500000000000003,6.500000000000003,6.560000000000002,6.560000000000002,6.560000000000002,6.560000000000002,6.560000000000002,7.360000000000003,7.360000000000003,7.360000000000003,7.360000000000003,7.360000000000003,7.420000000000003,7.420000000000003,7.420000000000003,7.420000000000003,7.420000000000003,8.220000000000004,8.220000000000004,8.220000000000004,8.220000000000004,8.220000000000004,8.280000000000003,8.280000000000003,8.280000000000003,8.280000000000003,8.280000000000003,9.080000000000004,9.080000000000004,9.080000000000004,9.080000000000004,9.080000000000004,9.140000000000002,9.140000000000002,9.140000000000002,9.140000000000002,9.140000000000002,9.940000000000003,9.940000000000003,9.940000000000003,9.940000000000003,9.940000000000003,10.000000000000002,10.000000000000002,10.000000000000002,10.000000000000002,10.000000000000002,10.800000000000002,10.800000000000002,10.800000000000002,10.800000000000002,10.800000000000002,10.860000000000001,10.860000000000001,10.860000000000001,10.860000000000001,10.860000000000001,11.660000000000002,11.660000000000002,11.660000000000002,11.660000000000002,11.660000000000002,11.72,11.72,11.72,11.72,11.72,12.520000000000001,12.520000000000001,12.520000000000001,12.520000000000001,12.520000000000001,12.58,12.58,12.58,12.58,12.58,13.38,13.38,13.38,13.38,13.38,13.440000000000001,13.440000000000001,13.440000000000001,13.440000000000001,13.440000000000001,14.24,14.24,14.24,14.24,14.24,14.3,14.3,14.3,14.3,14.3,15.100000000000001,15.100000000000001,15.100000000000001,15.100000000000001,15.100000000000001,15.16,15.16,15.16,15.16,15.16,15.959999999999999,15.959999999999999,15.959999999999999,15.959999999999999,15.959999999999999,16.02,16.02,16.02,16.02,16.02,16.819999999999997,16.819999999999997,16.819999999999997,16.819999999999997,16.819999999999997,16.88,16.88,16.88,16.88,16.88,17.679999999999996,17.679999999999996,17.679999999999996,17.679999999999996,17.679999999999996,17.74,17.74,17.74,17.74,17.74,18.54,18.54,18.54,18.54,18.54,18.599999999999998,18.599999999999998,18.599999999999998,18.599999999999998,18.599999999999998,19.4,19.4,19.4,19.4,19.4,19.459999999999997,19.459999999999997,19.459999999999997,19.459999999999997,19.459999999999997,20.259999999999998,20.259999999999998,20.259999999999998,20.259999999999998,20.259999999999998,20.319999999999997,20.319999999999997,20.319999999999997,20.319999999999997,20.319999999999997,21.119999999999997,21.119999999999997,21.119999999999997,21.119999999999997,21.119999999999997,21.179999999999996,21.179999999999996,21.179999999999996,21.179999999999996,21.179999999999996,21.979999999999997,21.979999999999997,21.979999999999997,21.979999999999997,21.979999999999997,22.039999999999996,22.039999999999996,22.039999999999996,22.039999999999996,22.039999999999996,22.839999999999996,22.839999999999996,22.839999999999996,22.839999999999996,22.839999999999996,22.899999999999995,22.899999999999995,22.899999999999995,22.899999999999995,22.899999999999995,23.699999999999996,23.699999999999996,23.699999999999996,23.699999999999996,23.699999999999996,23.759999999999998,23.759999999999998,23.759999999999998,23.759999999999998,23.759999999999998,24.559999999999995,24.559999999999995,24.559999999999995,24.559999999999995,24.559999999999995,24.619999999999997,24.619999999999997,24.619999999999997,24.619999999999997,24.619999999999997,25.419999999999995,25.419999999999995,25.419999999999995,25.419999999999995,25.419999999999995,25.479999999999997,25.479999999999997,25.479999999999997,25.479999999999997,25.479999999999997,26.279999999999994,26.279999999999994,26.279999999999994,26.279999999999994,26.279999999999994,26.339999999999996,26.339999999999996,26.339999999999996,26.339999999999996,26.339999999999996,27.139999999999993,27.139999999999993,27.139999999999993,27.139999999999993,27.139999999999993,27.199999999999996,27.199999999999996,27.199999999999996,27.199999999999996,27.199999999999996,27.999999999999993,27.999999999999993,27.999999999999993,27.999999999999993,27.999999999999993,28.059999999999995,28.059999999999995,28.059999999999995,28.059999999999995,28.059999999999995,28.859999999999992,28.859999999999992,28.859999999999992,28.859999999999992,28.859999999999992,28.919999999999995,28.919999999999995,28.919999999999995,28.919999999999995,28.919999999999995,29.71999999999999,29.71999999999999,29.71999999999999,29.71999999999999,29.71999999999999,29.779999999999994,29.779999999999994,29.779999999999994,29.779999999999994,29.779999999999994,30.57999999999999,30.57999999999999,30.57999999999999,30.57999999999999,30.57999999999999,30.639999999999993,30.639999999999993,30.639999999999993,30.639999999999993,30.639999999999993,31.439999999999994,31.439999999999994,31.439999999999994,31.439999999999994,31.439999999999994,31.499999999999993,31.499999999999993,31.499999999999993,31.499999999999993,31.499999999999993,32.3,32.3,32.3,32.3,32.3,32.35999999999999,32.35999999999999,32.35999999999999,32.35999999999999,32.35999999999999,33.16,33.16,33.16,33.16,33.16,33.21999999999999,33.21999999999999,33.21999999999999,33.21999999999999,33.21999999999999,34.019999999999996,34.019999999999996,34.019999999999996,34.019999999999996,34.019999999999996,34.07999999999999,34.07999999999999,34.07999999999999,34.07999999999999,34.07999999999999,34.879999999999995,34.879999999999995,34.879999999999995,34.879999999999995,34.879999999999995,34.93999999999999,34.93999999999999,34.93999999999999,34.93999999999999,34.93999999999999,35.739999999999995,35.739999999999995,35.739999999999995,35.739999999999995,35.739999999999995,35.79999999999999,35.79999999999999,35.79999999999999,35.79999999999999,35.79999999999999,36.599999999999994,36.599999999999994,36.599999999999994,36.599999999999994,36.599999999999994,36.65999999999999,36.65999999999999,36.65999999999999,36.65999999999999,36.65999999999999,37.459999999999994,37.459999999999994,37.459999999999994,37.459999999999994,37.459999999999994,37.51999999999999,37.51999999999999,37.51999999999999,37.51999999999999,37.51999999999999,38.31999999999999,38.31999999999999,38.31999999999999,38.31999999999999,38.31999999999999,38.37999999999999,38.37999999999999,38.37999999999999,38.37999999999999,38.37999999999999,39.17999999999999,39.17999999999999,39.17999999999999,39.17999999999999,39.17999999999999,39.23999999999999,39.23999999999999,39.23999999999999,39.23999999999999,39.23999999999999,40.03999999999999,40.03999999999999,40.03999999999999,40.03999999999999,40.03999999999999,40.09999999999999,40.09999999999999,40.09999999999999,40.09999999999999,40.09999999999999,40.89999999999999,40.89999999999999,40.89999999999999,40.89999999999999,40.89999999999999,40.959999999999994,40.959999999999994,40.959999999999994,40.959999999999994,40.959999999999994,41.75999999999999,41.75999999999999,41.75999999999999,41.75999999999999,41.75999999999999,41.81999999999999,41.81999999999999,41.81999999999999,41.81999999999999,41.81999999999999,42.61999999999999,42.61999999999999,42.61999999999999,42.61999999999999,42.61999999999999,42.67999999999999,42.67999999999999,42.67999999999999,42.67999999999999,42.67999999999999,43.47999999999999,43.47999999999999,43.47999999999999,43.47999999999999,43.47999999999999,43.53999999999999,43.53999999999999,43.53999999999999,43.53999999999999,43.53999999999999,44.33999999999999,44.33999999999999,44.33999999999999,44.33999999999999,44.33999999999999,44.39999999999999,44.39999999999999,44.39999999999999,44.39999999999999,44.39999999999999,45.19999999999999,45.19999999999999,45.19999999999999,45.19999999999999,45.19999999999999,45.26,45.26,45.26,45.26,45.26,46.05999999999999,46.05999999999999,46.05999999999999,46.05999999999999,46.05999999999999,46.12,46.12,46.12,46.12,46.12,46.91999999999999,46.91999999999999,46.91999999999999,46.91999999999999,46.91999999999999,46.98,46.98,46.98,46.98,46.98,47.77999999999999,47.77999999999999,47.77999999999999,47.77999999999999,47.77999999999999,47.839999999999996,47.839999999999996,47.839999999999996,47.839999999999996,47.839999999999996,48.639999999999986,48.639999999999986,48.639999999999986,48.639999999999986,48.639999999999986,48.699999999999996,48.699999999999996,48.699999999999996,48.699999999999996,48.699999999999996,49.499999999999986,49.499999999999986,49.499999999999986,49.499999999999986,49.499999999999986,49.559999999999995,49.559999999999995,49.559999999999995,49.559999999999995,49.559999999999995,50.359999999999985,50.359999999999985,50.359999999999985,50.359999999999985,50.359999999999985,50.419999999999995,50.419999999999995,50.419999999999995,50.419999999999995,50.419999999999995,51.219999999999985,51.219999999999985,51.219999999999985,51.219999999999985,51.219999999999985,51.279999999999994,51.279999999999994,51.279999999999994,51.279999999999994,51.279999999999994,52.079999999999984,52.079999999999984,52.079999999999984,52.079999999999984,52.079999999999984,52.13999999999999,52.13999999999999,52.13999999999999,52.13999999999999,52.13999999999999,52.93999999999998,52.93999999999998,52.93999999999998,52.93999999999998,52.93999999999998,52.99999999999999,52.99999999999999,52.99999999999999,52.99999999999999,52.99999999999999,53.79999999999999,53.79999999999999,53.79999999999999,53.79999999999999,53.79999999999999,53.85999999999999,53.85999999999999,53.85999999999999,53.85999999999999,53.85999999999999,54.65999999999999,54.65999999999999,54.65999999999999,54.65999999999999,54.65999999999999,54.71999999999999,54.71999999999999,54.71999999999999,54.71999999999999,54.71999999999999,55.51999999999999,55.51999999999999,55.51999999999999,55.51999999999999,55.51999999999999,55.57999999999999,55.57999999999999,55.57999999999999,55.57999999999999,55.57999999999999,56.37999999999999,56.37999999999999,56.37999999999999,56.37999999999999,56.37999999999999,56.43999999999999,56.43999999999999,56.43999999999999,56.43999999999999,56.43999999999999,57.23999999999999,57.23999999999999,57.23999999999999,57.23999999999999,57.23999999999999,57.29999999999999,57.29999999999999,57.29999999999999,57.29999999999999,57.29999999999999,58.09999999999999,58.09999999999999,58.09999999999999,58.09999999999999,58.09999999999999,58.15999999999999,58.15999999999999,58.15999999999999,58.15999999999999,58.15999999999999,58.95999999999999,58.95999999999999,58.95999999999999,58.95999999999999,58.95999999999999,59.01999999999999,59.01999999999999,59.01999999999999,59.01999999999999,59.01999999999999,59.819999999999986,59.819999999999986,59.819999999999986,59.819999999999986,59.819999999999986,59.87999999999999,59.87999999999999,59.87999999999999,59.87999999999999,59.87999999999999,60.679999999999986,60.679999999999986,60.679999999999986,60.679999999999986,60.679999999999986,60.73999999999999,60.73999999999999,60.73999999999999,60.73999999999999,60.73999999999999,61.539999999999985,61.539999999999985,61.539999999999985,61.539999999999985,61.539999999999985,61.59999999999999,61.59999999999999,61.59999999999999,61.59999999999999,61.59999999999999,62.399999999999984,62.399999999999984,62.399999999999984,62.399999999999984,62.399999999999984,62.45999999999999,62.45999999999999,62.45999999999999,62.45999999999999,62.45999999999999,63.259999999999984,63.259999999999984,63.259999999999984,63.259999999999984,63.259999999999984,63.319999999999986,63.319999999999986,63.319999999999986,63.319999999999986,63.319999999999986,64.11999999999998,64.11999999999998,64.11999999999998,64.11999999999998,64.11999999999998,64.17999999999999,64.17999999999999,64.17999999999999,64.17999999999999,64.17999999999999,64.97999999999998,64.97999999999998,64.97999999999998,64.97999999999998,64.97999999999998,65.03999999999999,65.03999999999999,65.03999999999999,65.03999999999999,65.03999999999999,65.83999999999997,65.83999999999997,65.83999999999997,65.83999999999997,65.83999999999997,65.89999999999999,65.89999999999999,65.89999999999999,65.89999999999999,65.89999999999999,66.69999999999999,66.69999999999999,66.69999999999999,66.69999999999999,66.69999999999999,66.75999999999999,66.75999999999999,66.75999999999999,66.75999999999999,66.75999999999999,67.55999999999999,67.55999999999999,67.55999999999999,67.55999999999999,67.55999999999999,67.61999999999999,67.61999999999999,67.61999999999999,67.61999999999999,67.61999999999999,68.41999999999999,68.41999999999999,68.41999999999999,68.41999999999999,68.41999999999999,68.47999999999999,68.47999999999999,68.47999999999999,68.47999999999999,68.47999999999999,69.27999999999999,69.27999999999999,69.27999999999999,69.27999999999999,69.27999999999999,69.33999999999999,69.33999999999999,69.33999999999999,69.33999999999999,69.33999999999999,70.13999999999999,70.13999999999999,70.13999999999999,70.13999999999999,70.13999999999999,70.19999999999999,70.19999999999999,70.19999999999999,70.19999999999999,70.19999999999999,70.99999999999999,70.99999999999999,70.99999999999999,70.99999999999999,70.99999999999999,71.05999999999999,71.05999999999999,71.05999999999999,71.05999999999999,71.05999999999999,71.85999999999999,71.85999999999999,71.85999999999999,71.85999999999999,71.85999999999999,71.91999999999999,71.91999999999999,71.91999999999999,71.91999999999999,71.91999999999999,72.71999999999998,72.71999999999998,72.71999999999998,72.71999999999998,72.71999999999998,72.77999999999999,72.77999999999999,72.77999999999999,72.77999999999999,72.77999999999999,73.58,73.58,73.58,73.58,73.58,73.63999999999999,73.63999999999999,73.63999999999999,73.63999999999999,73.63999999999999,74.44,74.44,74.44,74.44,74.44,74.49999999999999,74.49999999999999,74.49999999999999,74.49999999999999,74.49999999999999,75.3,75.3,75.3,75.3,75.3,75.35999999999999,75.35999999999999,75.35999999999999,75.35999999999999,75.35999999999999,76.16,76.16,76.16,76.16,76.16,76.21999999999998,76.21999999999998,76.21999999999998,76.21999999999998,76.21999999999998,77.02,77.02,77.02,77.02,77.02,77.07999999999998,77.07999999999998,77.07999999999998,77.07999999999998,77.07999999999998,77.88,77.88,77.88,77.88,77.88,77.93999999999998,77.93999999999998,77.93999999999998,77.93999999999998,77.93999999999998,78.74,78.74,78.74,78.74,78.74,78.79999999999998,78.79999999999998,78.79999999999998,78.79999999999998,78.79999999999998,79.6,79.6,79.6,79.6,79.6,79.65999999999998,79.65999999999998,79.65999999999998,79.65999999999998,79.65999999999998,80.46,80.46,80.46,80.46,80.46,80.51999999999998,80.51999999999998,80.51999999999998,80.51999999999998,80.51999999999998,81.32,81.32,81.32,81.32,81.32,81.37999999999998,81.37999999999998,81.37999999999998,81.37999999999998,81.37999999999998,82.17999999999999,82.17999999999999,82.17999999999999,82.17999999999999,82.17999999999999,82.23999999999998,82.23999999999998,82.23999999999998,82.23999999999998,82.23999999999998,83.03999999999999,83.03999999999999,83.03999999999999,83.03999999999999,83.03999999999999,83.09999999999998,83.09999999999998,83.09999999999998,83.09999999999998,83.09999999999998,83.89999999999999,83.89999999999999,83.89999999999999,83.89999999999999,83.89999999999999,83.95999999999998,83.95999999999998,83.95999999999998,83.95999999999998,83.95999999999998,84.75999999999999,84.75999999999999,84.75999999999999,84.75999999999999,84.75999999999999,84.81999999999998,84.81999999999998,84.81999999999998,84.81999999999998,84.81999999999998,85.61999999999999,85.61999999999999,85.61999999999999,85.61999999999999,85.61999999999999,85.67999999999998,85.67999999999998,85.67999999999998,85.67999999999998,85.67999999999998,86.47999999999999,86.47999999999999,86.47999999999999,86.47999999999999,86.47999999999999,86.53999999999998,86.53999999999998,86.53999999999998,86.53999999999998,86.53999999999998,87.33999999999999,87.33999999999999,87.33999999999999,87.33999999999999,87.33999999999999,87.39999999999998,87.39999999999998,87.39999999999998,87.39999999999998,87.39999999999998,88.19999999999999,88.19999999999999,88.19999999999999,88.19999999999999,88.19999999999999,88.25999999999998,88.25999999999998,88.25999999999998,88.25999999999998,88.25999999999998,89.05999999999999,89.05999999999999,89.05999999999999,89.05999999999999,89.05999999999999,89.11999999999998,89.11999999999998,89.11999999999998,89.11999999999998,89.11999999999998,89.91999999999999,89.91999999999999,89.91999999999999,89.91999999999999,89.91999999999999,90.71999999999998,90.71999999999998,90.71999999999998,90.71999999999998,90.71999999999998,110.71999999999998,110.74,110.82,113.82,113.89999999999999,113.89999999999999,113.89999999999999,114.07999999999998,114.51999999999998,114.69999999999999,114.7,114.7,114.7,114.7,114.7,115.49999999999999,115.49999999999999,115.49999999999999,115.49999999999999,115.49999999999999,115.56,115.56,115.56,115.56,115.56,116.35999999999999,116.35999999999999,116.35999999999999,116.35999999999999,116.35999999999999,116.42,116.42,116.42,116.42,116.42,117.21999999999998,117.21999999999998,117.21999999999998,117.21999999999998,117.21999999999998,117.28,117.28,117.28,117.28,117.28,118.07999999999998,118.07999999999998,118.07999999999998,118.07999999999998,118.07999999999998,118.14,118.14,118.14,118.14,118.14,118.93999999999998,118.93999999999998,118.93999999999998,118.93999999999998,118.93999999999998,119.0,119.0,119.0,119.0,119.0,119.79999999999998,119.79999999999998,119.79999999999998,119.79999999999998,119.79999999999998,119.86,119.86,119.86,119.86,119.86,120.66,120.66,120.66,120.66,120.66,120.72,120.72,120.72,120.72,120.72,121.52,121.52,121.52,121.52,121.52,121.58,121.58,121.58,121.58,121.58,122.38,122.38,122.38,122.38,122.38,122.44,122.44,122.44,122.44,122.44,123.24,123.24,123.24,123.24,123.24,123.3,123.3,123.3,123.3,123.3,124.1,124.1,124.1,124.1,124.1,124.16,124.16,124.16,124.16,124.16,124.96,124.96,124.96,124.96,124.96,125.02,125.02,125.02,125.02,125.02,125.82,125.82,125.82,125.82,125.82,125.88,125.88,125.88,125.88,125.88,126.67999999999999,126.67999999999999,126.67999999999999,126.67999999999999,126.67999999999999,126.74,126.74,126.74,126.74,126.74,127.53999999999999,127.53999999999999,127.53999999999999,127.53999999999999,127.53999999999999,127.6,127.6,127.6,127.6,127.6,128.39999999999998,128.39999999999998,128.39999999999998,128.39999999999998,128.39999999999998,128.45999999999998,128.45999999999998,128.45999999999998,128.45999999999998,128.45999999999998,129.26,129.26,129.26,129.26,129.26,129.32,129.32,129.32,129.32,129.32,130.11999999999998,130.11999999999998,130.11999999999998,130.11999999999998,130.11999999999998,130.17999999999998,130.17999999999998,130.17999999999998,130.17999999999998,130.17999999999998,130.98,130.98,130.98,130.98,130.98,131.04,131.04,131.04,131.04,131.04,131.83999999999997,131.83999999999997,131.83999999999997,131.83999999999997,131.83999999999997,131.89999999999998,131.89999999999998,131.89999999999998,131.89999999999998,131.89999999999998,132.7,132.7,132.7,132.7,132.7,132.76,132.76,132.76,132.76,132.76,133.55999999999997,133.55999999999997,133.55999999999997,133.55999999999997,133.55999999999997,133.61999999999998,133.61999999999998,133.61999999999998,133.61999999999998,133.61999999999998,134.42,134.42,134.42,134.42,134.42,134.48,134.48,134.48,134.48,134.48,135.27999999999997,135.27999999999997,135.27999999999997,135.27999999999997,135.27999999999997,135.33999999999997,135.33999999999997,135.33999999999997,135.33999999999997,135.33999999999997,136.14,136.14,136.14,136.14,136.14,136.2,136.2,136.2,136.2,136.2,136.99999999999997,136.99999999999997,136.99999999999997,136.99999999999997,136.99999999999997,137.05999999999997,137.05999999999997,137.05999999999997,137.05999999999997,137.05999999999997,137.85999999999999,137.85999999999999,137.85999999999999,137.85999999999999,137.85999999999999,137.92,137.92,137.92,137.92,137.92,138.71999999999997,138.71999999999997,138.71999999999997,138.71999999999997,138.71999999999997,138.77999999999997,138.77999999999997,138.77999999999997,138.77999999999997,138.77999999999997,139.57999999999998,139.57999999999998,139.57999999999998,139.57999999999998,139.57999999999998,139.64,139.64,139.64,139.64,139.64,140.43999999999997,140.43999999999997,140.43999999999997,140.43999999999997,140.43999999999997,140.5,140.5,140.5,140.5,140.5,141.29999999999998,141.29999999999998,141.29999999999998,141.29999999999998,141.29999999999998,141.35999999999999,141.35999999999999,141.35999999999999,141.35999999999999,141.35999999999999,142.15999999999997,142.15999999999997,142.15999999999997,142.15999999999997,142.15999999999997,142.22,142.22,142.22,142.22,142.22,143.01999999999998,143.01999999999998,143.01999999999998,143.01999999999998,143.01999999999998,143.07999999999998,143.07999999999998,143.07999999999998,143.07999999999998,143.07999999999998,143.87999999999997,143.87999999999997,143.87999999999997,143.87999999999997,143.87999999999997,143.94,143.94,143.94,143.94,143.94,144.73999999999998,144.73999999999998,144.73999999999998,144.73999999999998,144.73999999999998,144.79999999999998,144.79999999999998,144.79999999999998,144.79999999999998,144.79999999999998,145.59999999999997,145.59999999999997,145.59999999999997,145.59999999999997,145.59999999999997,145.66,145.66,145.66,145.66,145.66,146.45999999999998,146.45999999999998,146.45999999999998,146.45999999999998,146.45999999999998,146.51999999999998,146.51999999999998,146.51999999999998,146.51999999999998,146.51999999999998,147.31999999999996,147.31999999999996,147.31999999999996,147.31999999999996,147.31999999999996,147.38,147.38,147.38,147.38,147.38,148.17999999999998,148.17999999999998,148.17999999999998,148.17999999999998,148.17999999999998,148.23999999999998,148.23999999999998,148.23999999999998,148.23999999999998,148.23999999999998,149.04,149.04,149.04,149.04,149.04,149.1,149.1,149.1,149.1,149.1,149.89999999999998,149.89999999999998,149.89999999999998,149.89999999999998,149.89999999999998,149.95999999999998,149.95999999999998,149.95999999999998,149.95999999999998,149.95999999999998,150.76,150.76,150.76,150.76,150.76,150.82,150.82,150.82,150.82,150.82,151.61999999999998,151.61999999999998,151.61999999999998,151.61999999999998,151.61999999999998,151.67999999999998,151.67999999999998,151.67999999999998,151.67999999999998,151.67999999999998,152.48,152.48,152.48,152.48,152.48,152.54,152.54,152.54,152.54,152.54,153.33999999999997,153.33999999999997,153.33999999999997,153.33999999999997,153.33999999999997,153.39999999999998,153.39999999999998,153.39999999999998,153.39999999999998,153.39999999999998,154.2,154.2,154.2,154.2,154.2,154.26,154.26,154.26,154.26,154.26,155.05999999999997,155.05999999999997,155.05999999999997,155.05999999999997,155.05999999999997,155.11999999999998,155.11999999999998,155.11999999999998,155.11999999999998,155.11999999999998,155.92,155.92,155.92,155.92,155.92,155.98,155.98,155.98,155.98,155.98,156.77999999999997,156.77999999999997,156.77999999999997,156.77999999999997,156.77999999999997,156.83999999999997,156.83999999999997,156.83999999999997,156.83999999999997,156.83999999999997,157.64,157.64,157.64,157.64,157.64,157.7,157.7,157.7,157.7,157.7,158.49999999999997,158.49999999999997,158.49999999999997,158.49999999999997,158.49999999999997,158.55999999999997,158.55999999999997,158.55999999999997,158.55999999999997,158.55999999999997,159.35999999999999,159.35999999999999,159.35999999999999,159.35999999999999,159.35999999999999,159.42,159.42,159.42,159.42,159.42,160.21999999999997,160.21999999999997,160.21999999999997,160.21999999999997,160.21999999999997,160.27999999999997,160.27999999999997,160.27999999999997,160.27999999999997,160.27999999999997,161.07999999999998,161.07999999999998,161.07999999999998,161.07999999999998,161.07999999999998,161.14,161.14,161.14,161.14,161.14,161.93999999999997,161.93999999999997,161.93999999999997,161.93999999999997,161.93999999999997,161.99999999999997,161.99999999999997,161.99999999999997,161.99999999999997,161.99999999999997,162.79999999999998,162.79999999999998,162.79999999999998,162.79999999999998,162.79999999999998,162.85999999999999,162.85999999999999,162.85999999999999,162.85999999999999,162.85999999999999,163.65999999999997,163.65999999999997,163.65999999999997,163.65999999999997,163.65999999999997,163.71999999999997,163.71999999999997,163.71999999999997,163.71999999999997,163.71999999999997,164.51999999999998,164.51999999999998,164.51999999999998,164.51999999999998,164.51999999999998,164.57999999999998,164.57999999999998,164.57999999999998,164.57999999999998,164.57999999999998,165.37999999999997,165.37999999999997,165.37999999999997,165.37999999999997,165.37999999999997,165.43999999999997,165.43999999999997,165.43999999999997,165.43999999999997,165.43999999999997,166.23999999999998,166.23999999999998,166.23999999999998,166.23999999999998,166.23999999999998,166.29999999999998,166.29999999999998,166.29999999999998,166.29999999999998,166.29999999999998,167.09999999999997,167.09999999999997,167.09999999999997,167.09999999999997,167.09999999999997,167.15999999999997,167.15999999999997,167.15999999999997,167.15999999999997,167.15999999999997,167.95999999999998,167.95999999999998,167.95999999999998,167.95999999999998,167.95999999999998,168.01999999999998,168.01999999999998,168.01999999999998,168.01999999999998,168.01999999999998,168.81999999999996,168.81999999999996,168.81999999999996,168.81999999999996,168.81999999999996,168.87999999999997,168.87999999999997,168.87999999999997,168.87999999999997,168.87999999999997,169.67999999999998,169.67999999999998,169.67999999999998,169.67999999999998,169.67999999999998,169.73999999999998,169.73999999999998,169.73999999999998,169.73999999999998,169.73999999999998,170.53999999999996,170.53999999999996,170.53999999999996,170.53999999999996,170.53999999999996,170.59999999999997,170.59999999999997,170.59999999999997,170.59999999999997,170.59999999999997,171.39999999999998,171.39999999999998,171.39999999999998,171.39999999999998,171.39999999999998,171.45999999999998,171.45999999999998,171.45999999999998,171.45999999999998,171.45999999999998,172.25999999999996,172.25999999999996,172.25999999999996,172.25999999999996,172.25999999999996,172.31999999999996,172.31999999999996,172.31999999999996,172.31999999999996,172.31999999999996,173.11999999999998,173.11999999999998,173.11999999999998,173.11999999999998,173.11999999999998,173.17999999999998,173.17999999999998,173.17999999999998,173.17999999999998,173.17999999999998,173.97999999999996,173.97999999999996,173.97999999999996,173.97999999999996,173.97999999999996,174.03999999999996,174.03999999999996,174.03999999999996,174.03999999999996,174.03999999999996,174.83999999999997,174.83999999999997,174.83999999999997,174.83999999999997,174.83999999999997,174.89999999999998,174.89999999999998,174.89999999999998,174.89999999999998,174.89999999999998,175.69999999999996,175.69999999999996,175.69999999999996,175.69999999999996,175.69999999999996,175.75999999999996,175.75999999999996,175.75999999999996,175.75999999999996,175.75999999999996,176.55999999999997,176.55999999999997,176.55999999999997,176.55999999999997,176.55999999999997,176.61999999999998,176.61999999999998,176.61999999999998,176.61999999999998,176.61999999999998,177.41999999999996,177.41999999999996,177.41999999999996,177.41999999999996,177.41999999999996,177.47999999999996,177.47999999999996,177.47999999999996,177.47999999999996,177.47999999999996,178.27999999999997,178.27999999999997,178.27999999999997,178.27999999999997,178.27999999999997,178.33999999999997,178.33999999999997,178.33999999999997,178.33999999999997,178.33999999999997,179.13999999999996,179.13999999999996,179.13999999999996,179.13999999999996,179.13999999999996,179.19999999999996,179.19999999999996,179.19999999999996,179.19999999999996,179.19999999999996,179.99999999999997,179.99999999999997,179.99999999999997,179.99999999999997,179.99999999999997,180.05999999999997,180.05999999999997,180.05999999999997,180.05999999999997,180.05999999999997,180.85999999999996,180.85999999999996,180.85999999999996,180.85999999999996,180.85999999999996,180.91999999999996,180.91999999999996,180.91999999999996,180.91999999999996,180.91999999999996,181.71999999999997,181.71999999999997,181.71999999999997,181.71999999999997,181.71999999999997,181.77999999999997,181.77999999999997,181.77999999999997,181.77999999999997,181.77999999999997,182.57999999999996,182.57999999999996,182.57999999999996,182.57999999999996,182.57999999999996,182.63999999999996,182.63999999999996,182.63999999999996,182.63999999999996,182.63999999999996,183.43999999999997,183.43999999999997,183.43999999999997,183.43999999999997,183.43999999999997,183.49999999999997,183.49999999999997,183.49999999999997,183.49999999999997,183.49999999999997,184.29999999999995,184.29999999999995,184.29999999999995,184.29999999999995,184.29999999999995,184.35999999999996,184.35999999999996,184.35999999999996,184.35999999999996,184.35999999999996,185.15999999999997,185.15999999999997,185.15999999999997,185.15999999999997,185.15999999999997,185.21999999999997,185.21999999999997,185.21999999999997,185.21999999999997,185.21999999999997,186.01999999999995,186.01999999999995,186.01999999999995,186.01999999999995,186.01999999999995,186.07999999999996,186.07999999999996,186.07999999999996,186.07999999999996,186.07999999999996,186.87999999999997,186.87999999999997,186.87999999999997,186.87999999999997,186.87999999999997,186.93999999999997,186.93999999999997,186.93999999999997,186.93999999999997,186.93999999999997,187.73999999999995,187.73999999999995,187.73999999999995,187.73999999999995,187.73999999999995,187.79999999999995,187.79999999999995,187.79999999999995,187.79999999999995,187.79999999999995,188.59999999999997,188.59999999999997,188.59999999999997,188.59999999999997,188.59999999999997,188.65999999999997,188.65999999999997,188.65999999999997,188.65999999999997,188.65999999999997,189.45999999999995,189.45999999999995,189.45999999999995,189.45999999999995,189.45999999999995,189.51999999999995,189.51999999999995,189.51999999999995,189.51999999999995,189.51999999999995,190.31999999999996,190.31999999999996,190.31999999999996,190.31999999999996,190.31999999999996,190.37999999999997,190.37999999999997,190.37999999999997,190.37999999999997,190.37999999999997,191.17999999999995,191.17999999999995,191.17999999999995,191.17999999999995,191.17999999999995,191.23999999999995,191.23999999999995,191.23999999999995,191.23999999999995,191.23999999999995,192.03999999999996,192.03999999999996,192.03999999999996,192.03999999999996,192.03999999999996,192.09999999999997,192.09999999999997,192.09999999999997,192.09999999999997,192.09999999999997,192.89999999999995,192.89999999999995,192.89999999999995,192.89999999999995,192.89999999999995,192.95999999999995,192.95999999999995,192.95999999999995,192.95999999999995,192.95999999999995,193.75999999999996,193.75999999999996,193.75999999999996,193.75999999999996,193.75999999999996,193.81999999999996,193.81999999999996,193.81999999999996,193.81999999999996,193.81999999999996,194.61999999999995,194.61999999999995,194.61999999999995,194.61999999999995,194.61999999999995,194.67999999999995,194.67999999999995,194.67999999999995,194.67999999999995,194.67999999999995,195.47999999999996,195.47999999999996,195.47999999999996,195.47999999999996,195.47999999999996,195.53999999999996,195.53999999999996,195.53999999999996,195.53999999999996,195.53999999999996,196.33999999999995,196.33999999999995,196.33999999999995,196.33999999999995,196.33999999999995,196.39999999999998,196.39999999999998,196.39999999999998,196.39999999999998,196.39999999999998,197.19999999999996,197.19999999999996,197.19999999999996,197.19999999999996,197.19999999999996,197.25999999999996,197.25999999999996,197.25999999999996,197.25999999999996,197.25999999999996,198.05999999999995,198.05999999999995,198.05999999999995,198.05999999999995,198.05999999999995,198.11999999999998,198.11999999999998,198.11999999999998,198.11999999999998,198.11999999999998,198.91999999999996,198.91999999999996,198.91999999999996,198.91999999999996,198.91999999999996,198.97999999999996,198.97999999999996,198.97999999999996,198.97999999999996,198.97999999999996,199.77999999999994,199.77999999999994,199.77999999999994,199.77999999999994,199.77999999999994,199.83999999999997,199.83999999999997,199.83999999999997,199.83999999999997,199.83999999999997,200.63999999999996,200.63999999999996,200.63999999999996,200.63999999999996,200.63999999999996,201.43999999999994,201.43999999999994,201.43999999999994,201.43999999999994,201.43999999999994,221.43999999999997,221.45999999999995,221.53999999999996,224.53999999999996,224.61999999999995,224.61999999999995,224.61999999999995,224.79999999999998,225.23999999999998,225.41999999999996,225.41999999999996,225.41999999999996,225.41999999999996,225.41999999999996,225.41999999999996,226.21999999999997,226.21999999999997,226.21999999999997,226.21999999999997,226.21999999999997,226.27999999999997,226.27999999999997,226.27999999999997,226.27999999999997,226.27999999999997,227.07999999999998,227.07999999999998,227.07999999999998,227.07999999999998,227.07999999999998,227.13999999999996,227.13999999999996,227.13999999999996,227.13999999999996,227.13999999999996,227.93999999999997,227.93999999999997,227.93999999999997,227.93999999999997,227.93999999999997,227.99999999999997,227.99999999999997,227.99999999999997,227.99999999999997,227.99999999999997,228.79999999999998,228.79999999999998,228.79999999999998,228.79999999999998,228.79999999999998,228.85999999999996,228.85999999999996,228.85999999999996,228.85999999999996,228.85999999999996,229.65999999999997,229.65999999999997,229.65999999999997,229.65999999999997,229.65999999999997,229.71999999999997,229.71999999999997,229.71999999999997,229.71999999999997,229.71999999999997,230.51999999999998,230.51999999999998,230.51999999999998,230.51999999999998,230.51999999999998,230.57999999999996,230.57999999999996,230.57999999999996,230.57999999999996,230.57999999999996,231.37999999999997,231.37999999999997,231.37999999999997,231.37999999999997,231.37999999999997,231.43999999999997,231.43999999999997,231.43999999999997,231.43999999999997,231.43999999999997,232.23999999999998,232.23999999999998,232.23999999999998,232.23999999999998,232.23999999999998,232.29999999999995,232.29999999999995,232.29999999999995,232.29999999999995,232.29999999999995,233.09999999999997,233.09999999999997,233.09999999999997,233.09999999999997,233.09999999999997,233.15999999999997,233.15999999999997,233.15999999999997,233.15999999999997,233.15999999999997,233.95999999999998,233.95999999999998,233.95999999999998,233.95999999999998,233.95999999999998,234.01999999999995,234.01999999999995,234.01999999999995,234.01999999999995,234.01999999999995,234.81999999999996,234.81999999999996,234.81999999999996,234.81999999999996,234.81999999999996,234.87999999999997,234.87999999999997,234.87999999999997,234.87999999999997,234.87999999999997,235.67999999999998,235.67999999999998,235.67999999999998,235.67999999999998,235.67999999999998,235.73999999999995,235.73999999999995,235.73999999999995,235.73999999999995,235.73999999999995,236.53999999999996,236.53999999999996,236.53999999999996,236.53999999999996,236.53999999999996,236.59999999999997,236.59999999999997,236.59999999999997,236.59999999999997,236.59999999999997,237.39999999999998,237.39999999999998,237.39999999999998,237.39999999999998,237.39999999999998,237.45999999999995,237.45999999999995,237.45999999999995,237.45999999999995,237.45999999999995,238.25999999999996,238.25999999999996,238.25999999999996,238.25999999999996,238.25999999999996,238.31999999999996,238.31999999999996,238.31999999999996,238.31999999999996,238.31999999999996,239.11999999999998,239.11999999999998,239.11999999999998,239.11999999999998,239.11999999999998,239.17999999999995,239.17999999999995,239.17999999999995,239.17999999999995,239.17999999999995,239.97999999999996,239.97999999999996,239.97999999999996,239.97999999999996,239.97999999999996,240.03999999999996,240.03999999999996,240.03999999999996,240.03999999999996,240.03999999999996,240.83999999999997,240.83999999999997,240.83999999999997,240.83999999999997,240.83999999999997,240.89999999999995,240.89999999999995,240.89999999999995,240.89999999999995,240.89999999999995,241.69999999999996,241.69999999999996,241.69999999999996,241.69999999999996,241.69999999999996,241.75999999999996,241.75999999999996,241.75999999999996,241.75999999999996,241.75999999999996,242.55999999999997,242.55999999999997,242.55999999999997,242.55999999999997,242.55999999999997,242.61999999999995,242.61999999999995,242.61999999999995,242.61999999999995,242.61999999999995,243.41999999999996,243.41999999999996,243.41999999999996,243.41999999999996,243.41999999999996,243.47999999999996,243.47999999999996,243.47999999999996,243.47999999999996,243.47999999999996,244.27999999999997,244.27999999999997,244.27999999999997,244.27999999999997,244.27999999999997,244.33999999999995,244.33999999999995,244.33999999999995,244.33999999999995,244.33999999999995,245.13999999999996,245.13999999999996,245.13999999999996,245.13999999999996,245.13999999999996,245.19999999999996,245.19999999999996,245.19999999999996,245.19999999999996,245.19999999999996,245.99999999999997,245.99999999999997,245.99999999999997,245.99999999999997,245.99999999999997,246.05999999999995,246.05999999999995,246.05999999999995,246.05999999999995,246.05999999999995,246.85999999999996,246.85999999999996,246.85999999999996,246.85999999999996,246.85999999999996,246.91999999999996,246.91999999999996,246.91999999999996,246.91999999999996,246.91999999999996,247.71999999999997,247.71999999999997,247.71999999999997,247.71999999999997,247.71999999999997,247.77999999999997,247.77999999999997,247.77999999999997,247.77999999999997,247.77999999999997,248.57999999999996,248.57999999999996,248.57999999999996,248.57999999999996,248.57999999999996,248.64,248.64,248.64,248.64,248.64,249.43999999999997,249.43999999999997,249.43999999999997,249.43999999999997,249.43999999999997,249.49999999999997,249.49999999999997,249.49999999999997,249.49999999999997,249.49999999999997,250.29999999999995,250.29999999999995,250.29999999999995,250.29999999999995,250.29999999999995,250.35999999999999,250.35999999999999,250.35999999999999,250.35999999999999,250.35999999999999,251.16,251.16,251.16,251.16,251.16,251.22,251.22,251.22,251.22,251.22,252.01999999999995,252.01999999999995,252.01999999999995,252.01999999999995,252.01999999999995,252.07999999999998,252.07999999999998,252.07999999999998,252.07999999999998,252.07999999999998,252.88,252.88,252.88,252.88,252.88,252.94,252.94,252.94,252.94,252.94,253.73999999999995,253.73999999999995,253.73999999999995,253.73999999999995,253.73999999999995,253.79999999999998,253.79999999999998,253.79999999999998,253.79999999999998,253.79999999999998,254.6,254.6,254.6,254.6,254.6,254.66,254.66,254.66,254.66,254.66,255.45999999999995,255.45999999999995,255.45999999999995,255.45999999999995,255.45999999999995,255.51999999999998,255.51999999999998,255.51999999999998,255.51999999999998,255.51999999999998,256.32,256.32,256.32,256.32,256.32,256.38,256.38,256.38,256.38,256.38,257.17999999999995,257.17999999999995,257.17999999999995,257.17999999999995,257.17999999999995,257.23999999999995,257.23999999999995,257.23999999999995,257.23999999999995,257.23999999999995,258.03999999999996,258.03999999999996,258.03999999999996,258.03999999999996,258.03999999999996,258.1,258.1,258.1,258.1,258.1,258.9,258.9,258.9,258.9,258.9,258.96,258.96,258.96,258.96,258.96,259.76,259.76,259.76,259.76,259.76,259.82,259.82,259.82,259.82,259.82,260.61999999999995,260.61999999999995,260.61999999999995,260.61999999999995,260.61999999999995,260.67999999999995,260.67999999999995,260.67999999999995,260.67999999999995,260.67999999999995,261.48,261.48,261.48,261.48,261.48,261.54,261.54,261.54,261.54,261.54,262.34,262.34,262.34,262.34,262.34,262.4,262.4,262.4,262.4,262.4,263.2,263.2,263.2,263.2,263.2,263.26,263.26,263.26,263.26,263.26,264.05999999999995,264.05999999999995,264.05999999999995,264.05999999999995,264.05999999999995,264.11999999999995,264.11999999999995,264.11999999999995,264.11999999999995,264.11999999999995,264.92,264.92,264.92,264.92,264.92,264.98,264.98,264.98,264.98,264.98,265.78,265.78,265.78,265.78,265.78,265.84,265.84,265.84,265.84,265.84,266.64,266.64,266.64,266.64,266.64,266.7,266.7,266.7,266.7,266.7,267.49999999999994,267.49999999999994,267.49999999999994,267.49999999999994,267.49999999999994,267.55999999999995,267.55999999999995,267.55999999999995,267.55999999999995,267.55999999999995,268.36,268.36,268.36,268.36,268.36,268.42,268.42,268.42,268.42,268.42,269.21999999999997,269.21999999999997,269.21999999999997,269.21999999999997,269.21999999999997,269.28,269.28,269.28,269.28,269.28,270.08,270.08,270.08,270.08,270.08,270.14,270.14,270.14,270.14,270.14,270.93999999999994,270.93999999999994,270.93999999999994,270.93999999999994,270.93999999999994,270.99999999999994,270.99999999999994,270.99999999999994,270.99999999999994,270.99999999999994,271.8,271.8,271.8,271.8,271.8,271.86,271.86,271.86,271.86,271.86,272.65999999999997,272.65999999999997,272.65999999999997,272.65999999999997,272.65999999999997,272.71999999999997,272.71999999999997,272.71999999999997,272.71999999999997,272.71999999999997,273.52,273.52,273.52,273.52,273.52,273.58,273.58,273.58,273.58,273.58,274.37999999999994,274.37999999999994,274.37999999999994,274.37999999999994,274.37999999999994,274.43999999999994,274.43999999999994,274.43999999999994,274.43999999999994,274.43999999999994,275.24,275.24,275.24,275.24,275.24,275.3,275.3,275.3,275.3,275.3,276.09999999999997,276.09999999999997,276.09999999999997,276.09999999999997,276.09999999999997,276.15999999999997,276.15999999999997,276.15999999999997,276.15999999999997,276.15999999999997,276.96,276.96,276.96,276.96,276.96,277.02,277.02,277.02,277.02,277.02,277.81999999999994,277.81999999999994,277.81999999999994,277.81999999999994,277.81999999999994,277.87999999999994,277.87999999999994,277.87999999999994,277.87999999999994,277.87999999999994,278.68,278.68,278.68,278.68,278.68,278.74,278.74,278.74,278.74,278.74,279.54,279.54,279.54,279.54,279.54,279.6,279.6,279.6,279.6,279.6,280.4,280.4,280.4,280.4,280.4,280.46,280.46,280.46,280.46,280.46,281.26,281.26,281.26,281.26,281.26,281.32,281.32,281.32,281.32,281.32,282.12,282.12,282.12,282.12,282.12,282.18,282.18,282.18,282.18,282.18,282.98,282.98,282.98,282.98,282.98,283.04,283.04,283.04,283.04,283.04,283.84,283.84,283.84,283.84,283.84,283.9,283.9,283.9,283.9,283.9,284.7,284.7,284.7,284.7,284.7,284.76,284.76,284.76,284.76,284.76,285.56,285.56,285.56,285.56,285.56,285.62,285.62,285.62,285.62,285.62,286.42,286.42,286.42,286.42,286.42,286.48,286.48,286.48,286.48,286.48,287.28,287.28,287.28,287.28,287.28,287.34,287.34,287.34,287.34,287.34,288.14,288.14,288.14,288.14,288.14,288.2,288.2,288.2,288.2,288.2,289.0,289.0,289.0,289.0,289.0,289.06,289.06,289.06,289.06,289.06,289.86,289.86,289.86,289.86,289.86,289.92,289.92,289.92,289.92,289.92,290.71999999999997,290.71999999999997,290.71999999999997,290.71999999999997,290.71999999999997,290.78,290.78,290.78,290.78,290.78,291.58,291.58,291.58,291.58,291.58,291.64,291.64,291.64,291.64,291.64,292.44,292.44,292.44,292.44,292.44,292.5,292.5,292.5,292.5,292.5,293.3,293.3,293.3,293.3,293.3,293.36,293.36,293.36,293.36,293.36,294.15999999999997,294.15999999999997,294.15999999999997,294.15999999999997,294.15999999999997,294.21999999999997,294.21999999999997,294.21999999999997,294.21999999999997,294.21999999999997,295.02,295.02,295.02,295.02,295.02,295.08,295.08,295.08,295.08,295.08,295.88,295.88,295.88,295.88,295.88,295.94,295.94,295.94,295.94,295.94,296.74,296.74,296.74,296.74,296.74,296.8,296.8,296.8,296.8,296.8,297.59999999999997,297.59999999999997,297.59999999999997,297.59999999999997,297.59999999999997,297.65999999999997,297.65999999999997,297.65999999999997,297.65999999999997,297.65999999999997,298.46,298.46,298.46,298.46,298.46,298.52,298.52,298.52,298.52,298.52,299.32,299.32,299.32,299.32,299.32,299.38,299.38,299.38,299.38,299.38,300.18,300.18,300.18,300.18,300.18,300.24,300.24,300.24,300.24,300.24,301.03999999999996,301.03999999999996,301.03999999999996,301.03999999999996,301.03999999999996,301.09999999999997,301.09999999999997,301.09999999999997,301.09999999999997,301.09999999999997,301.9,301.9,301.9,301.9,301.9,301.96,301.96,301.96,301.96,301.96,302.76,302.76,302.76,302.76,302.76,302.82,302.82,302.82,302.82,302.82,303.62,303.62,303.62,303.62,303.62,303.68,303.68,303.68,303.68,303.68,304.47999999999996,304.47999999999996,304.47999999999996,304.47999999999996,304.47999999999996,304.53999999999996,304.53999999999996,304.53999999999996,304.53999999999996,304.53999999999996,305.34,305.34,305.34,305.34,305.34,305.4,305.4,305.4,305.4,305.4,306.2,306.2,306.2,306.2,306.2,306.26,306.26,306.26,306.26,306.26,307.06,307.06,307.06,307.06,307.06,307.12,307.12,307.12,307.12,307.12,307.91999999999996,307.91999999999996,307.91999999999996,307.91999999999996,307.91999999999996,307.97999999999996,307.97999999999996,307.97999999999996,307.97999999999996,307.97999999999996,308.78,308.78,308.78,308.78,308.78,308.84000000000003,308.84000000000003,308.84000000000003,308.84000000000003,308.84000000000003,309.64,309.64,309.64,309.64,309.64,309.7,309.7,309.7,309.7,309.7,310.5,310.5,310.5,310.5,310.5,310.56,310.56,310.56,310.56,310.56,311.35999999999996,311.35999999999996,311.35999999999996,311.35999999999996,311.35999999999996,312.15999999999997,312.15999999999997,312.15999999999997,312.15999999999997,312.15999999999997]},{"y":[null,0.0,0.00014758132110331552,0.0012253053760911219,0.0041964018170947736,0.009995011715567272,0.019470918863648375,0.03333403116179608,0.05210062104964587,0.07604334934581362,0.10514703813329553,0.13907204048864455,0.17712686504990172,0.2182514827353194,0.26101241707753187,0.3036104238627168,0.3439011405006021,0.3794287221327727,0.40747205475421777,0.4251027336286558,0.4292535824608531,0.4167961478669771,0.3846252465274592,0.3297483741528947,0.2493775581120501,0.14102109023461726,0.002572474388040277,0.16760605443164345,0.370608035010442,0.6069177300330637,0.8763577324134404,1.1780511354339598,1.5103998119057753,1.871079909512329,2.2570553500905155,2.664609393921698,3.0893940850428385,3.5264967890502694,3.9705224396076826,4.415689978448695,4.855940638752861,5.285055752696694,5.696781160989636,6.084955340858215,6.4436380287925425,6.767236160753268,7.050624006651706,7.289254344993284,7.479258026067345,7.617529202490497,7.701794085710234,7.730661527723321,7.703654013297851,7.621218305094173,7.484715486572843,7.296390634609448,7.059322863959822,6.777357189209332,6.455019734877242,6.097418690181226,5.710133443620397,5.29909468814567,4.870458635566049,4.43047842472477,3.9853759471311743,3.541217244158206,3.103794444379559,2.6785170781992567,2.270315297699989,1.8835570348741821,1.5219809613272268,1.1886464554360736,0.8859014273359529,0.6153682220590811,0.3779475289301933,0.1738395496639387,0.0025813072640966392,0.13690141065663353,0.24622939308745379,0.3274948190608081,0.38317796773700186,0.41605840542592326,0.4291233045797218,0.425475554057624,0.4082442272425175,0.38049983466395265,0.34517656745836434,0.3050034442321757,0.26244596389391767,0.2196594866729513,0.17845516586718282,0.14027886323681132,0.10620304727104868,0.07693128717627855,0.052814572302541385,0.03387835322449229,0.019858888528866237,0.010247247662587214,0.004339126550317431,0.0012885137462841378,0.00016318284357089824,0.0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0.0,0.00014758132110331555,0.0012253053760911219,0.0041964018170947736,0.009995011715567272,0.019470918863648372,0.03333403116179608,0.05210062104964587,0.07604334934581362,0.10514703813329551,0.13907204048864455,0.17712686504990172,0.2182514827353194,0.26101241707753187,0.3036104238627168,0.3439011405006021,0.3794287221327727,0.40747205475421777,0.42510273362865575,0.4292535824608531,0.41679614786697705,0.38462524652745916,0.3297483741528947,0.2493775581120501,0.14102109023461726,0.0025724743880402774,0.16760605443164345,0.370608035010442,0.6069177300330638,0.8763577324134404,1.1780511354339598,1.510399811905775,1.871079909512329,2.2570553500905155,2.664609393921698,3.0893940850428385,3.526496789050269,3.9705224396076826,4.415689978448695,4.855940638752861,5.285055752696695,5.696781160989636,6.084955340858215,6.443638028792543,6.767236160753267,7.050624006651706,7.289254344993284,7.479258026067345,7.617529202490497,7.701794085710234,7.730661527723321,7.703654013297851,7.621218305094173,7.484715486572843,7.296390634609448,7.059322863959823,6.777357189209332,6.455019734877242,6.097418690181226,5.710133443620397,5.29909468814567,4.870458635566049,4.43047842472477,3.9853759471311743,3.541217244158206,3.1037944443795586,2.6785170781992567,2.270315297699989,1.8835570348741821,1.5219809613272266,1.1886464554360736,0.8859014273359529,0.6153682220590811,0.3779475289301933,0.1738395496639387,0.0025813072640966392,0.13690141065663353,0.24622939308745379,0.3274948190608081,0.38317796773700186,0.4160584054259233,0.42912330457972175,0.425475554057624,0.4082442272425175,0.38049983466395265,0.34517656745836434,0.3050034442321757,0.2624459638939176,0.21965948667295132,0.17845516586718282,0.14027886323681132,0.10620304727104868,0.07693128717627855,0.05281457230254139,0.03387835322449229,0.019858888528866237,0.010247247662587214,0.00433912655031743,0.0012885137462841378,0.00016318284357089824,0.0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0.0,0.00014758132110331555,0.0012253053760911217,0.0041964018170947736,0.009995011715567272,0.019470918863648372,0.03333403116179608,0.05210062104964588,0.07604334934581362,0.10514703813329551,0.13907204048864455,0.17712686504990172,0.2182514827353194,0.26101241707753187,0.3036104238627168,0.34390114050060205,0.3794287221327727,0.40747205475421777,0.42510273362865575,0.4292535824608531,0.41679614786697705,0.38462524652745916,0.3297483741528947,0.2493775581120501,0.14102109023461723,0.002572474388040277,0.16760605443164345,0.370608035010442,0.6069177300330637,0.8763577324134404,1.1780511354339598,1.5103998119057753,1.871079909512329,2.2570553500905155,2.664609393921698,3.0893940850428385,3.5264967890502694,3.9705224396076826,4.415689978448695,4.855940638752861,5.285055752696694,5.696781160989636,6.084955340858215,6.4436380287925425,6.767236160753268,7.050624006651706,7.289254344993284,7.479258026067345,7.617529202490497,7.701794085710234,7.730661527723321,7.703654013297851,7.621218305094173,7.484715486572843,7.296390634609448,7.059322863959822,6.777357189209332,6.455019734877242,6.097418690181226,5.710133443620397,5.29909468814567,4.870458635566049,4.43047842472477,3.9853759471311743,3.541217244158206,3.103794444379559,2.6785170781992567,2.270315297699989,1.8835570348741821,1.5219809613272268,1.1886464554360736,0.8859014273359529,0.6153682220590811,0.3779475289301933,0.1738395496639387,0.0025813072640966392,0.13690141065663353,0.24622939308745379,0.3274948190608081,0.38317796773700186,0.41605840542592326,0.42912330457972175,0.425475554057624,0.4082442272425175,0.3804998346639526,0.34517656745836434,0.30500344423217574,0.2624459638939176,0.21965948667295132,0.17845516586718282,0.14027886323681132,0.10620304727104868,0.07693128717627855,0.05281457230254139,0.03387835322449229,0.019858888528866237,0.010247247662587214,0.00433912655031743,0.0012885137462841378,0.00016318284357089822,0.0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"type":"scatter","name":"|RF_1|","hovertemplate":"(%{x:.4f} ms, %{y:.2f} μT)","x":[0.0,0.10049999999999999,0.1305,0.16049999999999992,0.19049999999999984,0.22049999999999984,0.2504999999999997,0.28049999999999964,0.31049999999999967,0.3404999999999996,0.3704999999999995,0.40049999999999947,0.43049999999999944,0.46049999999999935,0.49049999999999927,0.5204999999999993,0.5504999999999992,0.5804999999999991,0.6104999999999992,0.6404999999999991,0.670499999999999,0.700499999999999,0.7304999999999989,0.7604999999999988,0.7904999999999988,0.8204999999999988,0.8504999999999987,0.8804999999999987,0.9104999999999986,0.9404999999999986,0.9704999999999986,1.0004999999999984,1.0304999999999984,1.0604999999999982,1.0904999999999982,1.120499999999998,1.150499999999998,1.1804999999999979,1.210499999999998,1.240499999999998,1.270499999999998,1.3004999999999978,1.3304999999999978,1.3604999999999978,1.3904999999999976,1.4204999999999974,1.4504999999999977,1.4804999999999975,1.5104999999999975,1.5404999999999975,1.5704999999999976,1.6004999999999971,1.6304999999999972,1.660499999999997,1.6904999999999972,1.720499999999997,1.7504999999999968,1.7804999999999966,1.810499999999997,1.840499999999997,1.8704999999999967,1.9004999999999967,1.9304999999999968,1.9604999999999966,1.9904999999999966,2.0204999999999966,2.050499999999997,2.0804999999999962,2.1104999999999965,2.1404999999999963,2.170499999999996,2.2004999999999963,2.2304999999999966,2.260499999999996,2.290499999999996,2.320499999999996,2.350499999999996,2.380499999999996,2.4104999999999954,2.4404999999999957,2.4704999999999955,2.5004999999999953,2.5304999999999955,2.5604999999999953,2.590499999999995,2.6204999999999954,2.650499999999995,2.6804999999999954,2.7104999999999952,2.740499999999995,2.7704999999999953,2.8004999999999947,2.830499999999995,2.860499999999995,2.8904999999999945,2.9204999999999948,2.9504999999999946,2.980499999999995,3.0104999999999946,3.0404999999999944,3.0704999999999947,3.0994999999999946,3.1800000000000006,3.1805000000000008,3.1805000000000008,3.1805000000000008,3.1805000000000008,3.980000000000001,3.9805000000000006,3.9805000000000006,3.9805000000000006,3.9805000000000006,4.780000000000001,4.780500000000001,4.780500000000001,4.780500000000001,4.780500000000001,4.840000000000002,4.840500000000001,4.840500000000001,4.840500000000001,4.840500000000001,5.6400000000000015,5.640500000000001,5.640500000000001,5.640500000000001,5.640500000000001,5.700000000000002,5.700500000000002,5.700500000000002,5.700500000000002,5.700500000000002,6.500000000000003,6.5005000000000015,6.5005000000000015,6.5005000000000015,6.5005000000000015,6.560000000000002,6.560500000000002,6.560500000000002,6.560500000000002,6.560500000000002,7.360000000000003,7.360500000000003,7.360500000000003,7.360500000000003,7.360500000000003,7.420000000000003,7.420500000000002,7.420500000000002,7.420500000000002,7.420500000000002,8.220000000000004,8.220500000000003,8.220500000000003,8.220500000000003,8.220500000000003,8.280000000000003,8.280500000000004,8.280500000000004,8.280500000000004,8.280500000000004,9.080000000000004,9.080500000000004,9.080500000000004,9.080500000000004,9.080500000000004,9.140000000000002,9.140500000000003,9.140500000000003,9.140500000000003,9.140500000000003,9.940000000000003,9.940500000000004,9.940500000000004,9.940500000000004,9.940500000000004,10.000000000000002,10.000500000000002,10.000500000000002,10.000500000000002,10.000500000000002,10.800000000000002,10.800500000000003,10.800500000000003,10.800500000000003,10.800500000000003,10.860000000000001,10.860500000000002,10.860500000000002,10.860500000000002,10.860500000000002,11.660000000000002,11.660500000000003,11.660500000000003,11.660500000000003,11.660500000000003,11.72,11.720500000000001,11.720500000000001,11.720500000000001,11.720500000000001,12.520000000000001,12.520500000000002,12.520500000000002,12.520500000000002,12.520500000000002,12.58,12.5805,12.5805,12.5805,12.5805,13.38,13.380500000000001,13.380500000000001,13.380500000000001,13.380500000000001,13.440000000000001,13.440500000000002,13.440500000000002,13.440500000000002,13.440500000000002,14.24,14.2405,14.2405,14.2405,14.2405,14.3,14.300500000000001,14.300500000000001,14.300500000000001,14.300500000000001,15.100000000000001,15.1005,15.1005,15.1005,15.1005,15.16,15.1605,15.1605,15.1605,15.1605,15.959999999999999,15.9605,15.9605,15.9605,15.9605,16.02,16.0205,16.0205,16.0205,16.0205,16.819999999999997,16.8205,16.8205,16.8205,16.8205,16.88,16.8805,16.8805,16.8805,16.8805,17.679999999999996,17.6805,17.6805,17.6805,17.6805,17.74,17.7405,17.7405,17.7405,17.7405,18.54,18.540499999999998,18.540499999999998,18.540499999999998,18.540499999999998,18.599999999999998,18.6005,18.6005,18.6005,18.6005,19.4,19.400499999999997,19.400499999999997,19.400499999999997,19.400499999999997,19.459999999999997,19.4605,19.4605,19.4605,19.4605,20.259999999999998,20.260499999999997,20.260499999999997,20.260499999999997,20.260499999999997,20.319999999999997,20.3205,20.3205,20.3205,20.3205,21.119999999999997,21.120499999999996,21.120499999999996,21.120499999999996,21.120499999999996,21.179999999999996,21.1805,21.1805,21.1805,21.1805,21.979999999999997,21.980499999999996,21.980499999999996,21.980499999999996,21.980499999999996,22.039999999999996,22.040499999999998,22.040499999999998,22.040499999999998,22.040499999999998,22.839999999999996,22.840499999999995,22.840499999999995,22.840499999999995,22.840499999999995,22.899999999999995,22.900499999999997,22.900499999999997,22.900499999999997,22.900499999999997,23.699999999999996,23.700499999999995,23.700499999999995,23.700499999999995,23.700499999999995,23.759999999999998,23.760499999999997,23.760499999999997,23.760499999999997,23.760499999999997,24.559999999999995,24.560499999999994,24.560499999999994,24.560499999999994,24.560499999999994,24.619999999999997,24.620499999999996,24.620499999999996,24.620499999999996,24.620499999999996,25.419999999999995,25.420499999999993,25.420499999999993,25.420499999999993,25.420499999999993,25.479999999999997,25.480499999999996,25.480499999999996,25.480499999999996,25.480499999999996,26.279999999999994,26.280499999999996,26.280499999999996,26.280499999999996,26.280499999999996,26.339999999999996,26.340499999999995,26.340499999999995,26.340499999999995,26.340499999999995,27.139999999999993,27.140499999999996,27.140499999999996,27.140499999999996,27.140499999999996,27.199999999999996,27.200499999999995,27.200499999999995,27.200499999999995,27.200499999999995,27.999999999999993,28.000499999999995,28.000499999999995,28.000499999999995,28.000499999999995,28.059999999999995,28.060499999999994,28.060499999999994,28.060499999999994,28.060499999999994,28.859999999999992,28.860499999999995,28.860499999999995,28.860499999999995,28.860499999999995,28.919999999999995,28.920499999999993,28.920499999999993,28.920499999999993,28.920499999999993,29.71999999999999,29.720499999999994,29.720499999999994,29.720499999999994,29.720499999999994,29.779999999999994,29.780499999999993,29.780499999999993,29.780499999999993,29.780499999999993,30.57999999999999,30.580499999999994,30.580499999999994,30.580499999999994,30.580499999999994,30.639999999999993,30.640499999999996,30.640499999999996,30.640499999999996,30.640499999999996,31.439999999999994,31.440499999999997,31.440499999999997,31.440499999999997,31.440499999999997,31.499999999999993,31.500499999999995,31.500499999999995,31.500499999999995,31.500499999999995,32.3,32.30049999999999,32.30049999999999,32.30049999999999,32.30049999999999,32.35999999999999,32.360499999999995,32.360499999999995,32.360499999999995,32.360499999999995,33.16,33.1605,33.1605,33.1605,33.1605,33.21999999999999,33.220499999999994,33.220499999999994,33.220499999999994,33.220499999999994,34.019999999999996,34.0205,34.0205,34.0205,34.0205,34.07999999999999,34.080499999999994,34.080499999999994,34.080499999999994,34.080499999999994,34.879999999999995,34.8805,34.8805,34.8805,34.8805,34.93999999999999,34.94049999999999,34.94049999999999,34.94049999999999,34.94049999999999,35.739999999999995,35.7405,35.7405,35.7405,35.7405,35.79999999999999,35.80049999999999,35.80049999999999,35.80049999999999,35.80049999999999,36.599999999999994,36.6005,36.6005,36.6005,36.6005,36.65999999999999,36.66049999999999,36.66049999999999,36.66049999999999,36.66049999999999,37.459999999999994,37.460499999999996,37.460499999999996,37.460499999999996,37.460499999999996,37.51999999999999,37.52049999999999,37.52049999999999,37.52049999999999,37.52049999999999,38.31999999999999,38.320499999999996,38.320499999999996,38.320499999999996,38.320499999999996,38.37999999999999,38.38049999999999,38.38049999999999,38.38049999999999,38.38049999999999,39.17999999999999,39.180499999999995,39.180499999999995,39.180499999999995,39.180499999999995,39.23999999999999,39.24049999999999,39.24049999999999,39.24049999999999,39.24049999999999,40.03999999999999,40.040499999999994,40.040499999999994,40.040499999999994,40.040499999999994,40.09999999999999,40.10049999999999,40.10049999999999,40.10049999999999,40.10049999999999,40.89999999999999,40.900499999999994,40.900499999999994,40.900499999999994,40.900499999999994,40.959999999999994,40.960499999999996,40.960499999999996,40.960499999999996,40.960499999999996,41.75999999999999,41.76049999999999,41.76049999999999,41.76049999999999,41.76049999999999,41.81999999999999,41.820499999999996,41.820499999999996,41.820499999999996,41.820499999999996,42.61999999999999,42.62049999999999,42.62049999999999,42.62049999999999,42.62049999999999,42.67999999999999,42.680499999999995,42.680499999999995,42.680499999999995,42.680499999999995,43.47999999999999,43.48049999999999,43.48049999999999,43.48049999999999,43.48049999999999,43.53999999999999,43.540499999999994,43.540499999999994,43.540499999999994,43.540499999999994,44.33999999999999,44.34049999999999,44.34049999999999,44.34049999999999,44.34049999999999,44.39999999999999,44.400499999999994,44.400499999999994,44.400499999999994,44.400499999999994,45.19999999999999,45.20049999999999,45.20049999999999,45.20049999999999,45.20049999999999,45.26,45.26049999999999,45.26049999999999,45.26049999999999,45.26049999999999,46.05999999999999,46.06049999999999,46.06049999999999,46.06049999999999,46.06049999999999,46.12,46.12049999999999,46.12049999999999,46.12049999999999,46.12049999999999,46.91999999999999,46.92049999999999,46.92049999999999,46.92049999999999,46.92049999999999,46.98,46.98049999999999,46.98049999999999,46.98049999999999,46.98049999999999,47.77999999999999,47.78049999999999,47.78049999999999,47.78049999999999,47.78049999999999,47.839999999999996,47.84049999999999,47.84049999999999,47.84049999999999,47.84049999999999,48.639999999999986,48.64049999999999,48.64049999999999,48.64049999999999,48.64049999999999,48.699999999999996,48.70049999999999,48.70049999999999,48.70049999999999,48.70049999999999,49.499999999999986,49.50049999999999,49.50049999999999,49.50049999999999,49.50049999999999,49.559999999999995,49.56049999999999,49.56049999999999,49.56049999999999,49.56049999999999,50.359999999999985,50.36049999999999,50.36049999999999,50.36049999999999,50.36049999999999,50.419999999999995,50.42049999999999,50.42049999999999,50.42049999999999,50.42049999999999,51.219999999999985,51.22049999999999,51.22049999999999,51.22049999999999,51.22049999999999,51.279999999999994,51.28049999999999,51.28049999999999,51.28049999999999,51.28049999999999,52.079999999999984,52.08049999999999,52.08049999999999,52.08049999999999,52.08049999999999,52.13999999999999,52.140499999999996,52.140499999999996,52.140499999999996,52.140499999999996,52.93999999999998,52.940499999999986,52.940499999999986,52.940499999999986,52.940499999999986,52.99999999999999,53.000499999999995,53.000499999999995,53.000499999999995,53.000499999999995,53.79999999999999,53.800499999999985,53.800499999999985,53.800499999999985,53.800499999999985,53.85999999999999,53.860499999999995,53.860499999999995,53.860499999999995,53.860499999999995,54.65999999999999,54.660499999999985,54.660499999999985,54.660499999999985,54.660499999999985,54.71999999999999,54.720499999999994,54.720499999999994,54.720499999999994,54.720499999999994,55.51999999999999,55.520499999999984,55.520499999999984,55.520499999999984,55.520499999999984,55.57999999999999,55.580499999999994,55.580499999999994,55.580499999999994,55.580499999999994,56.37999999999999,56.380499999999984,56.380499999999984,56.380499999999984,56.380499999999984,56.43999999999999,56.44049999999999,56.44049999999999,56.44049999999999,56.44049999999999,57.23999999999999,57.24049999999998,57.24049999999998,57.24049999999998,57.24049999999998,57.29999999999999,57.30049999999999,57.30049999999999,57.30049999999999,57.30049999999999,58.09999999999999,58.10049999999998,58.10049999999998,58.10049999999998,58.10049999999998,58.15999999999999,58.16049999999999,58.16049999999999,58.16049999999999,58.16049999999999,58.95999999999999,58.96049999999998,58.96049999999998,58.96049999999998,58.96049999999998,59.01999999999999,59.02049999999999,59.02049999999999,59.02049999999999,59.02049999999999,59.819999999999986,59.82049999999998,59.82049999999998,59.82049999999998,59.82049999999998,59.87999999999999,59.88049999999999,59.88049999999999,59.88049999999999,59.88049999999999,60.679999999999986,60.68049999999999,60.68049999999999,60.68049999999999,60.68049999999999,60.73999999999999,60.74049999999999,60.74049999999999,60.74049999999999,60.74049999999999,61.539999999999985,61.54049999999999,61.54049999999999,61.54049999999999,61.54049999999999,61.59999999999999,61.60049999999999,61.60049999999999,61.60049999999999,61.60049999999999,62.399999999999984,62.40049999999999,62.40049999999999,62.40049999999999,62.40049999999999,62.45999999999999,62.46049999999999,62.46049999999999,62.46049999999999,62.46049999999999,63.259999999999984,63.260499999999986,63.260499999999986,63.260499999999986,63.260499999999986,63.319999999999986,63.32049999999999,63.32049999999999,63.32049999999999,63.32049999999999,64.11999999999998,64.12049999999998,64.12049999999998,64.12049999999998,64.12049999999998,64.17999999999999,64.18049999999998,64.18049999999998,64.18049999999998,64.18049999999998,64.97999999999998,64.98049999999998,64.98049999999998,64.98049999999998,64.98049999999998,65.03999999999999,65.04049999999998,65.04049999999998,65.04049999999998,65.04049999999998,65.83999999999997,65.84049999999998,65.84049999999998,65.84049999999998,65.84049999999998,65.89999999999999,65.9005,65.9005,65.9005,65.9005,66.69999999999999,66.70049999999998,66.70049999999998,66.70049999999998,66.70049999999998,66.75999999999999,66.7605,66.7605,66.7605,66.7605,67.55999999999999,67.56049999999998,67.56049999999998,67.56049999999998,67.56049999999998,67.61999999999999,67.62049999999999,67.62049999999999,67.62049999999999,67.62049999999999,68.41999999999999,68.42049999999998,68.42049999999998,68.42049999999998,68.42049999999998,68.47999999999999,68.48049999999999,68.48049999999999,68.48049999999999,68.48049999999999,69.27999999999999,69.28049999999998,69.28049999999998,69.28049999999998,69.28049999999998,69.33999999999999,69.34049999999999,69.34049999999999,69.34049999999999,69.34049999999999,70.13999999999999,70.14049999999997,70.14049999999997,70.14049999999997,70.14049999999997,70.19999999999999,70.20049999999999,70.20049999999999,70.20049999999999,70.20049999999999,70.99999999999999,71.00049999999997,71.00049999999997,71.00049999999997,71.00049999999997,71.05999999999999,71.06049999999999,71.06049999999999,71.06049999999999,71.06049999999999,71.85999999999999,71.86049999999997,71.86049999999997,71.86049999999997,71.86049999999997,71.91999999999999,71.92049999999999,71.92049999999999,71.92049999999999,71.92049999999999,72.71999999999998,72.72049999999997,72.72049999999997,72.72049999999997,72.72049999999997,72.77999999999999,72.78049999999999,72.78049999999999,72.78049999999999,72.78049999999999,73.58,73.58049999999999,73.58049999999999,73.58049999999999,73.58049999999999,73.63999999999999,73.64049999999999,73.64049999999999,73.64049999999999,73.64049999999999,74.44,74.44049999999999,74.44049999999999,74.44049999999999,74.44049999999999,74.49999999999999,74.50049999999999,74.50049999999999,74.50049999999999,74.50049999999999,75.3,75.3005,75.3005,75.3005,75.3005,75.35999999999999,75.36049999999999,75.36049999999999,75.36049999999999,75.36049999999999,76.16,76.1605,76.1605,76.1605,76.1605,76.21999999999998,76.22049999999999,76.22049999999999,76.22049999999999,76.22049999999999,77.02,77.0205,77.0205,77.0205,77.0205,77.07999999999998,77.08049999999999,77.08049999999999,77.08049999999999,77.08049999999999,77.88,77.8805,77.8805,77.8805,77.8805,77.93999999999998,77.94049999999999,77.94049999999999,77.94049999999999,77.94049999999999,78.74,78.7405,78.7405,78.7405,78.7405,78.79999999999998,78.80049999999999,78.80049999999999,78.80049999999999,78.80049999999999,79.6,79.6005,79.6005,79.6005,79.6005,79.65999999999998,79.66049999999998,79.66049999999998,79.66049999999998,79.66049999999998,80.46,80.4605,80.4605,80.4605,80.4605,80.51999999999998,80.52049999999998,80.52049999999998,80.52049999999998,80.52049999999998,81.32,81.3205,81.3205,81.3205,81.3205,81.37999999999998,81.38049999999998,81.38049999999998,81.38049999999998,81.38049999999998,82.17999999999999,82.1805,82.1805,82.1805,82.1805,82.23999999999998,82.24049999999998,82.24049999999998,82.24049999999998,82.24049999999998,83.03999999999999,83.0405,83.0405,83.0405,83.0405,83.09999999999998,83.10049999999998,83.10049999999998,83.10049999999998,83.10049999999998,83.89999999999999,83.9005,83.9005,83.9005,83.9005,83.95999999999998,83.96049999999998,83.96049999999998,83.96049999999998,83.96049999999998,84.75999999999999,84.7605,84.7605,84.7605,84.7605,84.81999999999998,84.82049999999998,84.82049999999998,84.82049999999998,84.82049999999998,85.61999999999999,85.62049999999999,85.62049999999999,85.62049999999999,85.62049999999999,85.67999999999998,85.68049999999998,85.68049999999998,85.68049999999998,85.68049999999998,86.47999999999999,86.48049999999999,86.48049999999999,86.48049999999999,86.48049999999999,86.53999999999998,86.54049999999998,86.54049999999998,86.54049999999998,86.54049999999998,87.33999999999999,87.34049999999999,87.34049999999999,87.34049999999999,87.34049999999999,87.39999999999998,87.40049999999998,87.40049999999998,87.40049999999998,87.40049999999998,88.19999999999999,88.20049999999999,88.20049999999999,88.20049999999999,88.20049999999999,88.25999999999998,88.26049999999998,88.26049999999998,88.26049999999998,88.26049999999998,89.05999999999999,89.06049999999999,89.06049999999999,89.06049999999999,89.06049999999999,89.11999999999998,89.12049999999998,89.12049999999998,89.12049999999998,89.12049999999998,89.91999999999999,89.92049999999999,89.92049999999999,89.92049999999999,89.92049999999999,90.71999999999998,90.72049999999999,90.72049999999999,90.72049999999999,90.72049999999999,110.71999999999998,110.82049999999998,110.8505,110.88049999999998,110.91049999999998,110.94049999999999,110.97049999999999,111.00049999999999,111.03049999999999,111.06049999999998,111.09049999999998,111.12049999999998,111.15049999999998,111.18049999999998,111.2105,111.24049999999998,111.27049999999998,111.30049999999999,111.33049999999999,111.36049999999999,111.39049999999999,111.42049999999998,111.45049999999998,111.48049999999998,111.51049999999998,111.54049999999998,111.5705,111.60049999999998,111.63049999999998,111.66049999999998,111.69049999999999,111.72049999999999,111.75049999999999,111.78049999999998,111.81049999999998,111.84049999999998,111.87049999999998,111.90049999999998,111.9305,111.96049999999998,111.99049999999998,112.02049999999998,112.05049999999999,112.08049999999999,112.11049999999999,112.14049999999997,112.17049999999998,112.20049999999998,112.23049999999998,112.26049999999998,112.2905,112.32049999999998,112.35049999999998,112.38049999999998,112.41049999999998,112.44049999999999,112.47049999999999,112.50049999999997,112.53049999999998,112.56049999999998,112.59049999999998,112.62049999999998,112.6505,112.68049999999998,112.71049999999998,112.74049999999998,112.77049999999998,112.80049999999999,112.83049999999999,112.86049999999997,112.89049999999997,112.92049999999998,112.95049999999998,112.98049999999998,113.01049999999998,113.0405,113.07049999999998,113.10049999999998,113.13049999999998,113.16049999999998,113.19049999999999,113.22049999999997,113.25049999999997,113.28049999999998,113.31049999999998,113.34049999999998,113.37049999999998,113.4005,113.43049999999998,113.46049999999998,113.49049999999998,113.52049999999998,113.55049999999999,113.58049999999997,113.61049999999997,113.64049999999997,113.67049999999998,113.70049999999998,113.73049999999998,113.7605,113.79049999999998,113.81949999999998,113.89999999999999,113.9005,113.9005,113.9005,113.9005,114.7,114.70049999999999,114.70049999999999,114.70049999999999,114.70049999999999,115.49999999999999,115.50049999999999,115.50049999999999,115.50049999999999,115.50049999999999,115.56,115.56049999999999,115.56049999999999,115.56049999999999,115.56049999999999,116.35999999999999,116.36049999999999,116.36049999999999,116.36049999999999,116.36049999999999,116.42,116.42049999999999,116.42049999999999,116.42049999999999,116.42049999999999,117.21999999999998,117.22049999999999,117.22049999999999,117.22049999999999,117.22049999999999,117.28,117.28049999999999,117.28049999999999,117.28049999999999,117.28049999999999,118.07999999999998,118.08049999999999,118.08049999999999,118.08049999999999,118.08049999999999,118.14,118.14049999999999,118.14049999999999,118.14049999999999,118.14049999999999,118.93999999999998,118.94049999999999,118.94049999999999,118.94049999999999,118.94049999999999,119.0,119.00049999999999,119.00049999999999,119.00049999999999,119.00049999999999,119.79999999999998,119.80049999999999,119.80049999999999,119.80049999999999,119.80049999999999,119.86,119.8605,119.8605,119.8605,119.8605,120.66,120.66049999999998,120.66049999999998,120.66049999999998,120.66049999999998,120.72,120.7205,120.7205,120.7205,120.7205,121.52,121.52049999999998,121.52049999999998,121.52049999999998,121.52049999999998,121.58,121.5805,121.5805,121.5805,121.5805,122.38,122.38049999999998,122.38049999999998,122.38049999999998,122.38049999999998,122.44,122.4405,122.4405,122.4405,122.4405,123.24,123.24049999999998,123.24049999999998,123.24049999999998,123.24049999999998,123.3,123.3005,123.3005,123.3005,123.3005,124.1,124.10049999999998,124.10049999999998,124.10049999999998,124.10049999999998,124.16,124.1605,124.1605,124.1605,124.1605,124.96,124.96049999999998,124.96049999999998,124.96049999999998,124.96049999999998,125.02,125.02049999999998,125.02049999999998,125.02049999999998,125.02049999999998,125.82,125.82049999999997,125.82049999999997,125.82049999999997,125.82049999999997,125.88,125.88049999999998,125.88049999999998,125.88049999999998,125.88049999999998,126.67999999999999,126.68049999999997,126.68049999999997,126.68049999999997,126.68049999999997,126.74,126.74049999999998,126.74049999999998,126.74049999999998,126.74049999999998,127.53999999999999,127.54049999999998,127.54049999999998,127.54049999999998,127.54049999999998,127.6,127.60049999999998,127.60049999999998,127.60049999999998,127.60049999999998,128.39999999999998,128.40049999999997,128.40049999999997,128.40049999999997,128.40049999999997,128.45999999999998,128.46049999999997,128.46049999999997,128.46049999999997,128.46049999999997,129.26,129.26049999999998,129.26049999999998,129.26049999999998,129.26049999999998,129.32,129.32049999999998,129.32049999999998,129.32049999999998,129.32049999999998,130.11999999999998,130.12049999999996,130.12049999999996,130.12049999999996,130.12049999999996,130.17999999999998,130.18049999999997,130.18049999999997,130.18049999999997,130.18049999999997,130.98,130.98049999999998,130.98049999999998,130.98049999999998,130.98049999999998,131.04,131.04049999999998,131.04049999999998,131.04049999999998,131.04049999999998,131.83999999999997,131.84049999999996,131.84049999999996,131.84049999999996,131.84049999999996,131.89999999999998,131.90049999999997,131.90049999999997,131.90049999999997,131.90049999999997,132.7,132.70049999999998,132.70049999999998,132.70049999999998,132.70049999999998,132.76,132.76049999999998,132.76049999999998,132.76049999999998,132.76049999999998,133.55999999999997,133.56049999999996,133.56049999999996,133.56049999999996,133.56049999999996,133.61999999999998,133.62049999999996,133.62049999999996,133.62049999999996,133.62049999999996,134.42,134.42049999999998,134.42049999999998,134.42049999999998,134.42049999999998,134.48,134.48049999999998,134.48049999999998,134.48049999999998,134.48049999999998,135.27999999999997,135.28049999999996,135.28049999999996,135.28049999999996,135.28049999999996,135.33999999999997,135.34049999999996,135.34049999999996,135.34049999999996,135.34049999999996,136.14,136.14049999999997,136.14049999999997,136.14049999999997,136.14049999999997,136.2,136.20049999999998,136.20049999999998,136.20049999999998,136.20049999999998,136.99999999999997,137.00049999999996,137.00049999999996,137.00049999999996,137.00049999999996,137.05999999999997,137.06049999999996,137.06049999999996,137.06049999999996,137.06049999999996,137.85999999999999,137.86049999999997,137.86049999999997,137.86049999999997,137.86049999999997,137.92,137.92049999999998,137.92049999999998,137.92049999999998,137.92049999999998,138.71999999999997,138.72049999999996,138.72049999999996,138.72049999999996,138.72049999999996,138.77999999999997,138.78049999999996,138.78049999999996,138.78049999999996,138.78049999999996,139.57999999999998,139.58049999999997,139.58049999999997,139.58049999999997,139.58049999999997,139.64,139.64049999999997,139.64049999999997,139.64049999999997,139.64049999999997,140.43999999999997,140.44049999999996,140.44049999999996,140.44049999999996,140.44049999999996,140.5,140.50049999999996,140.50049999999996,140.50049999999996,140.50049999999996,141.29999999999998,141.30049999999997,141.30049999999997,141.30049999999997,141.30049999999997,141.35999999999999,141.36049999999997,141.36049999999997,141.36049999999997,141.36049999999997,142.15999999999997,142.16049999999996,142.16049999999996,142.16049999999996,142.16049999999996,142.22,142.22049999999996,142.22049999999996,142.22049999999996,142.22049999999996,143.01999999999998,143.02049999999997,143.02049999999997,143.02049999999997,143.02049999999997,143.07999999999998,143.08049999999997,143.08049999999997,143.08049999999997,143.08049999999997,143.87999999999997,143.88049999999996,143.88049999999996,143.88049999999996,143.88049999999996,143.94,143.94049999999996,143.94049999999996,143.94049999999996,143.94049999999996,144.73999999999998,144.74049999999997,144.74049999999997,144.74049999999997,144.74049999999997,144.79999999999998,144.80049999999997,144.80049999999997,144.80049999999997,144.80049999999997,145.59999999999997,145.60049999999995,145.60049999999995,145.60049999999995,145.60049999999995,145.66,145.66049999999996,145.66049999999996,145.66049999999996,145.66049999999996,146.45999999999998,146.46049999999997,146.46049999999997,146.46049999999997,146.46049999999997,146.51999999999998,146.52049999999997,146.52049999999997,146.52049999999997,146.52049999999997,147.31999999999996,147.32049999999995,147.32049999999995,147.32049999999995,147.32049999999995,147.38,147.38049999999998,147.38049999999998,147.38049999999998,147.38049999999998,148.17999999999998,148.18049999999997,148.18049999999997,148.18049999999997,148.18049999999997,148.23999999999998,148.24049999999997,148.24049999999997,148.24049999999997,148.24049999999997,149.04,149.04049999999995,149.04049999999995,149.04049999999995,149.04049999999995,149.1,149.10049999999998,149.10049999999998,149.10049999999998,149.10049999999998,149.89999999999998,149.90049999999997,149.90049999999997,149.90049999999997,149.90049999999997,149.95999999999998,149.96049999999997,149.96049999999997,149.96049999999997,149.96049999999997,150.76,150.76049999999995,150.76049999999995,150.76049999999995,150.76049999999995,150.82,150.82049999999998,150.82049999999998,150.82049999999998,150.82049999999998,151.61999999999998,151.62049999999996,151.62049999999996,151.62049999999996,151.62049999999996,151.67999999999998,151.68049999999997,151.68049999999997,151.68049999999997,151.68049999999997,152.48,152.48049999999995,152.48049999999995,152.48049999999995,152.48049999999995,152.54,152.54049999999998,152.54049999999998,152.54049999999998,152.54049999999998,153.33999999999997,153.34049999999996,153.34049999999996,153.34049999999996,153.34049999999996,153.39999999999998,153.40049999999997,153.40049999999997,153.40049999999997,153.40049999999997,154.2,154.20049999999998,154.20049999999998,154.20049999999998,154.20049999999998,154.26,154.26049999999998,154.26049999999998,154.26049999999998,154.26049999999998,155.05999999999997,155.06049999999996,155.06049999999996,155.06049999999996,155.06049999999996,155.11999999999998,155.12049999999996,155.12049999999996,155.12049999999996,155.12049999999996,155.92,155.92049999999998,155.92049999999998,155.92049999999998,155.92049999999998,155.98,155.98049999999998,155.98049999999998,155.98049999999998,155.98049999999998,156.77999999999997,156.78049999999996,156.78049999999996,156.78049999999996,156.78049999999996,156.83999999999997,156.84049999999996,156.84049999999996,156.84049999999996,156.84049999999996,157.64,157.64049999999997,157.64049999999997,157.64049999999997,157.64049999999997,157.7,157.70049999999998,157.70049999999998,157.70049999999998,157.70049999999998,158.49999999999997,158.50049999999996,158.50049999999996,158.50049999999996,158.50049999999996,158.55999999999997,158.56049999999996,158.56049999999996,158.56049999999996,158.56049999999996,159.35999999999999,159.36049999999997,159.36049999999997,159.36049999999997,159.36049999999997,159.42,159.42049999999998,159.42049999999998,159.42049999999998,159.42049999999998,160.21999999999997,160.22049999999996,160.22049999999996,160.22049999999996,160.22049999999996,160.27999999999997,160.28049999999996,160.28049999999996,160.28049999999996,160.28049999999996,161.07999999999998,161.08049999999997,161.08049999999997,161.08049999999997,161.08049999999997,161.14,161.14049999999997,161.14049999999997,161.14049999999997,161.14049999999997,161.93999999999997,161.94049999999996,161.94049999999996,161.94049999999996,161.94049999999996,161.99999999999997,162.00049999999996,162.00049999999996,162.00049999999996,162.00049999999996,162.79999999999998,162.80049999999997,162.80049999999997,162.80049999999997,162.80049999999997,162.85999999999999,162.86049999999997,162.86049999999997,162.86049999999997,162.86049999999997,163.65999999999997,163.66049999999996,163.66049999999996,163.66049999999996,163.66049999999996,163.71999999999997,163.72049999999996,163.72049999999996,163.72049999999996,163.72049999999996,164.51999999999998,164.52049999999997,164.52049999999997,164.52049999999997,164.52049999999997,164.57999999999998,164.58049999999997,164.58049999999997,164.58049999999997,164.58049999999997,165.37999999999997,165.38049999999996,165.38049999999996,165.38049999999996,165.38049999999996,165.43999999999997,165.44049999999996,165.44049999999996,165.44049999999996,165.44049999999996,166.23999999999998,166.24049999999997,166.24049999999997,166.24049999999997,166.24049999999997,166.29999999999998,166.30049999999997,166.30049999999997,166.30049999999997,166.30049999999997,167.09999999999997,167.10049999999995,167.10049999999995,167.10049999999995,167.10049999999995,167.15999999999997,167.16049999999996,167.16049999999996,167.16049999999996,167.16049999999996,167.95999999999998,167.96049999999997,167.96049999999997,167.96049999999997,167.96049999999997,168.01999999999998,168.02049999999997,168.02049999999997,168.02049999999997,168.02049999999997,168.81999999999996,168.82049999999995,168.82049999999995,168.82049999999995,168.82049999999995,168.87999999999997,168.88049999999996,168.88049999999996,168.88049999999996,168.88049999999996,169.67999999999998,169.68049999999997,169.68049999999997,169.68049999999997,169.68049999999997,169.73999999999998,169.74049999999997,169.74049999999997,169.74049999999997,169.74049999999997,170.53999999999996,170.54049999999995,170.54049999999995,170.54049999999995,170.54049999999995,170.59999999999997,170.60049999999995,170.60049999999995,170.60049999999995,170.60049999999995,171.39999999999998,171.40049999999997,171.40049999999997,171.40049999999997,171.40049999999997,171.45999999999998,171.46049999999997,171.46049999999997,171.46049999999997,171.46049999999997,172.25999999999996,172.26049999999995,172.26049999999995,172.26049999999995,172.26049999999995,172.31999999999996,172.32049999999995,172.32049999999995,172.32049999999995,172.32049999999995,173.11999999999998,173.12049999999996,173.12049999999996,173.12049999999996,173.12049999999996,173.17999999999998,173.18049999999997,173.18049999999997,173.18049999999997,173.18049999999997,173.97999999999996,173.98049999999995,173.98049999999995,173.98049999999995,173.98049999999995,174.03999999999996,174.04049999999995,174.04049999999995,174.04049999999995,174.04049999999995,174.83999999999997,174.84049999999996,174.84049999999996,174.84049999999996,174.84049999999996,174.89999999999998,174.90049999999997,174.90049999999997,174.90049999999997,174.90049999999997,175.69999999999996,175.70049999999995,175.70049999999995,175.70049999999995,175.70049999999995,175.75999999999996,175.76049999999995,175.76049999999995,175.76049999999995,175.76049999999995,176.55999999999997,176.56049999999996,176.56049999999996,176.56049999999996,176.56049999999996,176.61999999999998,176.62049999999996,176.62049999999996,176.62049999999996,176.62049999999996,177.41999999999996,177.42049999999995,177.42049999999995,177.42049999999995,177.42049999999995,177.47999999999996,177.48049999999995,177.48049999999995,177.48049999999995,177.48049999999995,178.27999999999997,178.28049999999996,178.28049999999996,178.28049999999996,178.28049999999996,178.33999999999997,178.34049999999996,178.34049999999996,178.34049999999996,178.34049999999996,179.13999999999996,179.14049999999995,179.14049999999995,179.14049999999995,179.14049999999995,179.19999999999996,179.20049999999995,179.20049999999995,179.20049999999995,179.20049999999995,179.99999999999997,180.00049999999996,180.00049999999996,180.00049999999996,180.00049999999996,180.05999999999997,180.06049999999996,180.06049999999996,180.06049999999996,180.06049999999996,180.85999999999996,180.86049999999994,180.86049999999994,180.86049999999994,180.86049999999994,180.91999999999996,180.92049999999995,180.92049999999995,180.92049999999995,180.92049999999995,181.71999999999997,181.72049999999996,181.72049999999996,181.72049999999996,181.72049999999996,181.77999999999997,181.78049999999996,181.78049999999996,181.78049999999996,181.78049999999996,182.57999999999996,182.58049999999994,182.58049999999994,182.58049999999994,182.58049999999994,182.63999999999996,182.64049999999995,182.64049999999995,182.64049999999995,182.64049999999995,183.43999999999997,183.44049999999996,183.44049999999996,183.44049999999996,183.44049999999996,183.49999999999997,183.50049999999996,183.50049999999996,183.50049999999996,183.50049999999996,184.29999999999995,184.30049999999994,184.30049999999994,184.30049999999994,184.30049999999994,184.35999999999996,184.36049999999994,184.36049999999994,184.36049999999994,184.36049999999994,185.15999999999997,185.16049999999996,185.16049999999996,185.16049999999996,185.16049999999996,185.21999999999997,185.22049999999996,185.22049999999996,185.22049999999996,185.22049999999996,186.01999999999995,186.02049999999994,186.02049999999994,186.02049999999994,186.02049999999994,186.07999999999996,186.08049999999994,186.08049999999994,186.08049999999994,186.08049999999994,186.87999999999997,186.88049999999996,186.88049999999996,186.88049999999996,186.88049999999996,186.93999999999997,186.94049999999996,186.94049999999996,186.94049999999996,186.94049999999996,187.73999999999995,187.74049999999994,187.74049999999994,187.74049999999994,187.74049999999994,187.79999999999995,187.80049999999994,187.80049999999994,187.80049999999994,187.80049999999994,188.59999999999997,188.60049999999995,188.60049999999995,188.60049999999995,188.60049999999995,188.65999999999997,188.66049999999996,188.66049999999996,188.66049999999996,188.66049999999996,189.45999999999995,189.46049999999994,189.46049999999994,189.46049999999994,189.46049999999994,189.51999999999995,189.52049999999994,189.52049999999994,189.52049999999994,189.52049999999994,190.31999999999996,190.32049999999995,190.32049999999995,190.32049999999995,190.32049999999995,190.37999999999997,190.38049999999996,190.38049999999996,190.38049999999996,190.38049999999996,191.17999999999995,191.18049999999994,191.18049999999994,191.18049999999994,191.18049999999994,191.23999999999995,191.24049999999994,191.24049999999994,191.24049999999994,191.24049999999994,192.03999999999996,192.04049999999995,192.04049999999995,192.04049999999995,192.04049999999995,192.09999999999997,192.10049999999995,192.10049999999995,192.10049999999995,192.10049999999995,192.89999999999995,192.90049999999994,192.90049999999994,192.90049999999994,192.90049999999994,192.95999999999995,192.96049999999994,192.96049999999994,192.96049999999994,192.96049999999994,193.75999999999996,193.76049999999995,193.76049999999995,193.76049999999995,193.76049999999995,193.81999999999996,193.82049999999995,193.82049999999995,193.82049999999995,193.82049999999995,194.61999999999995,194.62049999999994,194.62049999999994,194.62049999999994,194.62049999999994,194.67999999999995,194.68049999999994,194.68049999999994,194.68049999999994,194.68049999999994,195.47999999999996,195.48049999999995,195.48049999999995,195.48049999999995,195.48049999999995,195.53999999999996,195.54049999999995,195.54049999999995,195.54049999999995,195.54049999999995,196.33999999999995,196.34049999999993,196.34049999999993,196.34049999999993,196.34049999999993,196.39999999999998,196.40049999999994,196.40049999999994,196.40049999999994,196.40049999999994,197.19999999999996,197.20049999999995,197.20049999999995,197.20049999999995,197.20049999999995,197.25999999999996,197.26049999999995,197.26049999999995,197.26049999999995,197.26049999999995,198.05999999999995,198.06049999999993,198.06049999999993,198.06049999999993,198.06049999999993,198.11999999999998,198.12049999999994,198.12049999999994,198.12049999999994,198.12049999999994,198.91999999999996,198.92049999999995,198.92049999999995,198.92049999999995,198.92049999999995,198.97999999999996,198.98049999999995,198.98049999999995,198.98049999999995,198.98049999999995,199.77999999999994,199.78049999999993,199.78049999999993,199.78049999999993,199.78049999999993,199.83999999999997,199.84049999999993,199.84049999999993,199.84049999999993,199.84049999999993,200.63999999999996,200.64049999999995,200.64049999999995,200.64049999999995,200.64049999999995,201.43999999999994,201.44049999999993,201.44049999999993,201.44049999999993,201.44049999999993,221.43999999999997,221.54049999999998,221.57049999999998,221.60049999999998,221.63049999999998,221.66049999999998,221.69049999999996,221.72049999999996,221.75049999999996,221.78049999999996,221.81049999999996,221.84049999999996,221.87049999999996,221.90049999999997,221.93049999999997,221.96049999999997,221.99049999999997,222.02049999999997,222.05049999999994,222.08049999999997,222.11049999999997,222.14049999999997,222.17049999999998,222.20049999999998,222.23049999999998,222.26049999999998,222.29049999999998,222.32049999999998,222.35049999999998,222.38049999999998,222.41049999999996,222.44049999999996,222.47049999999996,222.50049999999996,222.53049999999996,222.56049999999996,222.59049999999996,222.62049999999996,222.65049999999997,222.68049999999997,222.71049999999997,222.74049999999997,222.77049999999994,222.80049999999994,222.83049999999997,222.86049999999997,222.89049999999997,222.92049999999998,222.95049999999998,222.98049999999998,223.01049999999998,223.04049999999998,223.07049999999998,223.10049999999998,223.13049999999996,223.16049999999996,223.19049999999996,223.22049999999996,223.25049999999996,223.28049999999996,223.31049999999996,223.34049999999996,223.37049999999996,223.40049999999997,223.43049999999997,223.46049999999997,223.49049999999997,223.52049999999994,223.55049999999997,223.58049999999997,223.61049999999997,223.64049999999997,223.67049999999998,223.70049999999998,223.73049999999998,223.76049999999998,223.79049999999998,223.82049999999998,223.85049999999995,223.88049999999996,223.91049999999996,223.94049999999996,223.97049999999996,224.00049999999996,224.03049999999996,224.06049999999996,224.09049999999996,224.12049999999996,224.15049999999997,224.18049999999997,224.21049999999997,224.24049999999994,224.27049999999997,224.30049999999997,224.33049999999997,224.36049999999997,224.39049999999997,224.42049999999998,224.45049999999998,224.48049999999998,224.51049999999998,224.53949999999998,224.61999999999995,224.62049999999994,224.62049999999994,224.62049999999994,224.62049999999994,225.41999999999996,225.42049999999995,225.42049999999995,225.42049999999995,225.42049999999995,226.21999999999997,226.22049999999996,226.22049999999996,226.22049999999996,226.22049999999996,226.27999999999997,226.28049999999996,226.28049999999996,226.28049999999996,226.28049999999996,227.07999999999998,227.08049999999997,227.08049999999997,227.08049999999997,227.08049999999997,227.13999999999996,227.14049999999995,227.14049999999995,227.14049999999995,227.14049999999995,227.93999999999997,227.94049999999996,227.94049999999996,227.94049999999996,227.94049999999996,227.99999999999997,228.00049999999996,228.00049999999996,228.00049999999996,228.00049999999996,228.79999999999998,228.80049999999997,228.80049999999997,228.80049999999997,228.80049999999997,228.85999999999996,228.86049999999994,228.86049999999994,228.86049999999994,228.86049999999994,229.65999999999997,229.66049999999996,229.66049999999996,229.66049999999996,229.66049999999996,229.71999999999997,229.72049999999996,229.72049999999996,229.72049999999996,229.72049999999996,230.51999999999998,230.52049999999997,230.52049999999997,230.52049999999997,230.52049999999997,230.57999999999996,230.58049999999994,230.58049999999994,230.58049999999994,230.58049999999994,231.37999999999997,231.38049999999996,231.38049999999996,231.38049999999996,231.38049999999996,231.43999999999997,231.44049999999996,231.44049999999996,231.44049999999996,231.44049999999996,232.23999999999998,232.24049999999997,232.24049999999997,232.24049999999997,232.24049999999997,232.29999999999995,232.30049999999994,232.30049999999994,232.30049999999994,232.30049999999994,233.09999999999997,233.10049999999995,233.10049999999995,233.10049999999995,233.10049999999995,233.15999999999997,233.16049999999996,233.16049999999996,233.16049999999996,233.16049999999996,233.95999999999998,233.96049999999997,233.96049999999997,233.96049999999997,233.96049999999997,234.01999999999995,234.02049999999994,234.02049999999994,234.02049999999994,234.02049999999994,234.81999999999996,234.82049999999995,234.82049999999995,234.82049999999995,234.82049999999995,234.87999999999997,234.88049999999996,234.88049999999996,234.88049999999996,234.88049999999996,235.67999999999998,235.68049999999997,235.68049999999997,235.68049999999997,235.68049999999997,235.73999999999995,235.74049999999994,235.74049999999994,235.74049999999994,235.74049999999994,236.53999999999996,236.54049999999995,236.54049999999995,236.54049999999995,236.54049999999995,236.59999999999997,236.60049999999995,236.60049999999995,236.60049999999995,236.60049999999995,237.39999999999998,237.40049999999997,237.40049999999997,237.40049999999997,237.40049999999997,237.45999999999995,237.46049999999994,237.46049999999994,237.46049999999994,237.46049999999994,238.25999999999996,238.26049999999995,238.26049999999995,238.26049999999995,238.26049999999995,238.31999999999996,238.32049999999995,238.32049999999995,238.32049999999995,238.32049999999995,239.11999999999998,239.12049999999996,239.12049999999996,239.12049999999996,239.12049999999996,239.17999999999995,239.18049999999994,239.18049999999994,239.18049999999994,239.18049999999994,239.97999999999996,239.98049999999995,239.98049999999995,239.98049999999995,239.98049999999995,240.03999999999996,240.04049999999995,240.04049999999995,240.04049999999995,240.04049999999995,240.83999999999997,240.84049999999996,240.84049999999996,240.84049999999996,240.84049999999996,240.89999999999995,240.90049999999994,240.90049999999994,240.90049999999994,240.90049999999994,241.69999999999996,241.70049999999995,241.70049999999995,241.70049999999995,241.70049999999995,241.75999999999996,241.76049999999995,241.76049999999995,241.76049999999995,241.76049999999995,242.55999999999997,242.56049999999996,242.56049999999996,242.56049999999996,242.56049999999996,242.61999999999995,242.62049999999994,242.62049999999994,242.62049999999994,242.62049999999994,243.41999999999996,243.42049999999995,243.42049999999995,243.42049999999995,243.42049999999995,243.47999999999996,243.48049999999995,243.48049999999995,243.48049999999995,243.48049999999995,244.27999999999997,244.28049999999996,244.28049999999996,244.28049999999996,244.28049999999996,244.33999999999995,244.34049999999993,244.34049999999993,244.34049999999993,244.34049999999993,245.13999999999996,245.14049999999995,245.14049999999995,245.14049999999995,245.14049999999995,245.19999999999996,245.20049999999995,245.20049999999995,245.20049999999995,245.20049999999995,245.99999999999997,246.00049999999996,246.00049999999996,246.00049999999996,246.00049999999996,246.05999999999995,246.06049999999993,246.06049999999993,246.06049999999993,246.06049999999993,246.85999999999996,246.86049999999994,246.86049999999994,246.86049999999994,246.86049999999994,246.91999999999996,246.92049999999995,246.92049999999995,246.92049999999995,246.92049999999995,247.71999999999997,247.72049999999996,247.72049999999996,247.72049999999996,247.72049999999996,247.77999999999997,247.78049999999996,247.78049999999996,247.78049999999996,247.78049999999996,248.57999999999996,248.58049999999994,248.58049999999994,248.58049999999994,248.58049999999994,248.64,248.64049999999995,248.64049999999995,248.64049999999995,248.64049999999995,249.43999999999997,249.44049999999996,249.44049999999996,249.44049999999996,249.44049999999996,249.49999999999997,249.50049999999996,249.50049999999996,249.50049999999996,249.50049999999996,250.29999999999995,250.30049999999997,250.30049999999997,250.30049999999997,250.30049999999997,250.35999999999999,250.36049999999997,250.36049999999997,250.36049999999997,250.36049999999997,251.16,251.1605,251.1605,251.1605,251.1605,251.22,251.22050000000002,251.22050000000002,251.22050000000002,251.22050000000002,252.01999999999995,252.02049999999997,252.02049999999997,252.02049999999997,252.02049999999997,252.07999999999998,252.08049999999997,252.08049999999997,252.08049999999997,252.08049999999997,252.88,252.8805,252.8805,252.8805,252.8805,252.94,252.94050000000001,252.94050000000001,252.94050000000001,252.94050000000001,253.73999999999995,253.74049999999997,253.74049999999997,253.74049999999997,253.74049999999997,253.79999999999998,253.80049999999997,253.80049999999997,253.80049999999997,253.80049999999997,254.6,254.6005,254.6005,254.6005,254.6005,254.66,254.6605,254.6605,254.6605,254.6605,255.45999999999995,255.46049999999997,255.46049999999997,255.46049999999997,255.46049999999997,255.51999999999998,255.52049999999997,255.52049999999997,255.52049999999997,255.52049999999997,256.32,256.3205,256.3205,256.3205,256.3205,256.38,256.3805,256.3805,256.3805,256.3805,257.17999999999995,257.1805,257.1805,257.1805,257.1805,257.23999999999995,257.2405,257.2405,257.2405,257.2405,258.03999999999996,258.0405,258.0405,258.0405,258.0405,258.1,258.1005,258.1005,258.1005,258.1005,258.9,258.90049999999997,258.90049999999997,258.90049999999997,258.90049999999997,258.96,258.96049999999997,258.96049999999997,258.96049999999997,258.96049999999997,259.76,259.7605,259.7605,259.7605,259.7605,259.82,259.82050000000004,259.82050000000004,259.82050000000004,259.82050000000004,260.61999999999995,260.6205,260.6205,260.6205,260.6205,260.67999999999995,260.6805,260.6805,260.6805,260.6805,261.48,261.4805,261.4805,261.4805,261.4805,261.54,261.5405,261.5405,261.5405,261.5405,262.34,262.34049999999996,262.34049999999996,262.34049999999996,262.34049999999996,262.4,262.40049999999997,262.40049999999997,262.40049999999997,262.40049999999997,263.2,263.2005,263.2005,263.2005,263.2005,263.26,263.26050000000004,263.26050000000004,263.26050000000004,263.26050000000004,264.05999999999995,264.0605,264.0605,264.0605,264.0605,264.11999999999995,264.1205,264.1205,264.1205,264.1205,264.92,264.9205,264.9205,264.9205,264.9205,264.98,264.9805,264.9805,264.9805,264.9805,265.78,265.78049999999996,265.78049999999996,265.78049999999996,265.78049999999996,265.84,265.84049999999996,265.84049999999996,265.84049999999996,265.84049999999996,266.64,266.6405,266.6405,266.6405,266.6405,266.7,266.70050000000003,266.70050000000003,266.70050000000003,266.70050000000003,267.49999999999994,267.5005,267.5005,267.5005,267.5005,267.55999999999995,267.5605,267.5605,267.5605,267.5605,268.36,268.3605,268.3605,268.3605,268.3605,268.42,268.4205,268.4205,268.4205,268.4205,269.21999999999997,269.22049999999996,269.22049999999996,269.22049999999996,269.22049999999996,269.28,269.28049999999996,269.28049999999996,269.28049999999996,269.28049999999996,270.08,270.08050000000003,270.08050000000003,270.08050000000003,270.08050000000003,270.14,270.14050000000003,270.14050000000003,270.14050000000003,270.14050000000003,270.93999999999994,270.9405,270.9405,270.9405,270.9405,270.99999999999994,271.0005,271.0005,271.0005,271.0005,271.8,271.8005,271.8005,271.8005,271.8005,271.86,271.8605,271.8605,271.8605,271.8605,272.65999999999997,272.66049999999996,272.66049999999996,272.66049999999996,272.66049999999996,272.71999999999997,272.72049999999996,272.72049999999996,272.72049999999996,272.72049999999996,273.52,273.5205,273.5205,273.5205,273.5205,273.58,273.58050000000003,273.58050000000003,273.58050000000003,273.58050000000003,274.37999999999994,274.3805,274.3805,274.3805,274.3805,274.43999999999994,274.4405,274.4405,274.4405,274.4405,275.24,275.2405,275.2405,275.2405,275.2405,275.3,275.3005,275.3005,275.3005,275.3005,276.09999999999997,276.10049999999995,276.10049999999995,276.10049999999995,276.10049999999995,276.15999999999997,276.16049999999996,276.16049999999996,276.16049999999996,276.16049999999996,276.96,276.9605,276.9605,276.9605,276.9605,277.02,277.0205,277.0205,277.0205,277.0205,277.81999999999994,277.8205,277.8205,277.8205,277.8205,277.87999999999994,277.8805,277.8805,277.8805,277.8805,278.68,278.6805,278.6805,278.6805,278.6805,278.74,278.7405,278.7405,278.7405,278.7405,279.54,279.5405,279.5405,279.5405,279.5405,279.6,279.6005,279.6005,279.6005,279.6005,280.4,280.4005,280.4005,280.4005,280.4005,280.46,280.4605,280.4605,280.4605,280.4605,281.26,281.26050000000004,281.26050000000004,281.26050000000004,281.26050000000004,281.32,281.32050000000004,281.32050000000004,281.32050000000004,281.32050000000004,282.12,282.1205,282.1205,282.1205,282.1205,282.18,282.1805,282.1805,282.1805,282.1805,282.98,282.9805,282.9805,282.9805,282.9805,283.04,283.0405,283.0405,283.0405,283.0405,283.84,283.8405,283.8405,283.8405,283.8405,283.9,283.9005,283.9005,283.9005,283.9005,284.7,284.70050000000003,284.70050000000003,284.70050000000003,284.70050000000003,284.76,284.76050000000004,284.76050000000004,284.76050000000004,284.76050000000004,285.56,285.5605,285.5605,285.5605,285.5605,285.62,285.6205,285.6205,285.6205,285.6205,286.42,286.4205,286.4205,286.4205,286.4205,286.48,286.4805,286.4805,286.4805,286.4805,287.28,287.2805,287.2805,287.2805,287.2805,287.34,287.3405,287.3405,287.3405,287.3405,288.14,288.14050000000003,288.14050000000003,288.14050000000003,288.14050000000003,288.2,288.20050000000003,288.20050000000003,288.20050000000003,288.20050000000003,289.0,289.0005,289.0005,289.0005,289.0005,289.06,289.0605,289.0605,289.0605,289.0605,289.86,289.8605,289.8605,289.8605,289.8605,289.92,289.9205,289.9205,289.9205,289.9205,290.71999999999997,290.7205,290.7205,290.7205,290.7205,290.78,290.7805,290.7805,290.7805,290.7805,291.58,291.58050000000003,291.58050000000003,291.58050000000003,291.58050000000003,291.64,291.64050000000003,291.64050000000003,291.64050000000003,291.64050000000003,292.44,292.4405,292.4405,292.4405,292.4405,292.5,292.5005,292.5005,292.5005,292.5005,293.3,293.3005,293.3005,293.3005,293.3005,293.36,293.3605,293.3605,293.3605,293.3605,294.15999999999997,294.1605,294.1605,294.1605,294.1605,294.21999999999997,294.2205,294.2205,294.2205,294.2205,295.02,295.0205,295.0205,295.0205,295.0205,295.08,295.08050000000003,295.08050000000003,295.08050000000003,295.08050000000003,295.88,295.8805,295.8805,295.8805,295.8805,295.94,295.9405,295.9405,295.9405,295.9405,296.74,296.7405,296.7405,296.7405,296.7405,296.8,296.8005,296.8005,296.8005,296.8005,297.59999999999997,297.6005,297.6005,297.6005,297.6005,297.65999999999997,297.6605,297.6605,297.6605,297.6605,298.46,298.4605,298.4605,298.4605,298.4605,298.52,298.5205,298.5205,298.5205,298.5205,299.32,299.3205,299.3205,299.3205,299.3205,299.38,299.3805,299.3805,299.3805,299.3805,300.18,300.1805,300.1805,300.1805,300.1805,300.24,300.2405,300.2405,300.2405,300.2405,301.03999999999996,301.0405,301.0405,301.0405,301.0405,301.09999999999997,301.1005,301.1005,301.1005,301.1005,301.9,301.9005,301.9005,301.9005,301.9005,301.96,301.9605,301.9605,301.9605,301.9605,302.76,302.7605,302.7605,302.7605,302.7605,302.82,302.8205,302.8205,302.8205,302.8205,303.62,303.6205,303.6205,303.6205,303.6205,303.68,303.6805,303.6805,303.6805,303.6805,304.47999999999996,304.4805,304.4805,304.4805,304.4805,304.53999999999996,304.5405,304.5405,304.5405,304.5405,305.34,305.3405,305.3405,305.3405,305.3405,305.4,305.4005,305.4005,305.4005,305.4005,306.2,306.2005,306.2005,306.2005,306.2005,306.26,306.2605,306.2605,306.2605,306.2605,307.06,307.0605,307.0605,307.0605,307.0605,307.12,307.1205,307.1205,307.1205,307.1205,307.91999999999996,307.9205,307.9205,307.9205,307.9205,307.97999999999996,307.9805,307.9805,307.9805,307.9805,308.78,308.7805,308.7805,308.7805,308.7805,308.84000000000003,308.8405,308.8405,308.8405,308.8405,309.64,309.6405,309.6405,309.6405,309.6405,309.7,309.7005,309.7005,309.7005,309.7005,310.5,310.5005,310.5005,310.5005,310.5005,310.56,310.5605,310.5605,310.5605,310.5605,311.35999999999996,311.3605,311.3605,311.3605,311.3605,312.15999999999997,312.1605,312.1605,312.1605,312.1605]},{"y":[null,0.0,-2.6408221562898664,-2.140051658985392,-1.6392811616893306,-1.1385106643900857,-0.6377401670862934,-0.13696966978886774,0.363800827508558,0.8645713248114407,1.3653418221106857,1.8661123194099305,2.366882816714632,2.867653314012058,-2.9147614958737407,-2.413990998572677,-1.9132205012679755,-1.4124500039705494,-0.9116795066694857,-0.410909009368422,0.08986148792172782,0.5906319852227915,1.0914024825311313,1.5921729798249191,2.092943477122345,2.5937139744270468,3.0944844717244724,0.45366231543210506,0.9544328127368068,1.4552033100342325,1.9559738073316586,2.456744304643636,2.957514801933786,-2.824900007941099,-2.3241295106436732,-1.8233590133389714,-1.3225885160415456,-0.8218180187513957,-0.32104752143941795,0.17972297584345587,0.6804934731481577,1.1812639704455834,1.6820344677430092,2.182804965033159,2.6835754623451367,-3.098839347529748,-2.5980688502323224,-2.097298352920345,-1.5965278556374707,-1.0957573583400448,-0.5949868610280673,-0.09421636374519331,0.40655413356678444,0.9073246308642101,1.408095128161636,1.908865625459062,2.4096361227710394,2.910406620068465,-2.8720081898136955,-2.371237692501718,-1.8704671952042922,-1.3696966979068663,-0.8689262006094404,-0.3681557033120146,0.13261479398541118,0.6333852912973889,1.1341557885948146,1.6349262858922404,2.1356967831896663,2.636467280487092,3.137237777769966,-2.645177032083091,-2.144406534785665,-1.6436360375027914,-1.1428655402053656,-0.6420950428788359,-0.1413245455814102,-2.7821467018883297,-2.2813762045618002,-1.7806057072643744,-1.2798352099669486,-0.7790647126695228,-0.278294215357545,0.22247628191077698,0.7232467792082028,1.2240172765056285,1.7247877738176063,2.225558271115032,2.7263287684124577,-3.056086041440599,-2.5553155441431734,-2.054545046845748,-1.5537745495483217,-1.0530040522508959,-0.5522335549534703,-0.05146305768514818,0.4493074396413815,0.9500779369388073,1.450848434236233,1.951618931533659,2.4523894288601884,0.0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0.0,3.141592653589793,3.141592653589793,3.141592653589793,3.141592653589793,3.141592653589793,3.141592653589793,3.141592653589793,3.141592653589793,3.141592653589793,3.141592653589793,3.141592653589793,3.141592653589793,3.141592653589793,3.141592653589793,3.141592653589793,3.141592653589793,3.141592653589793,3.141592653589793,3.141592653589793,3.141592653589793,3.141592653589793,3.141592653589793,3.141592653589793,3.141592653589793,3.141592653589793,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.141592653589793,3.141592653589793,3.141592653589793,3.141592653589793,3.141592653589793,3.141592653589793,3.141592653589793,3.141592653589793,3.141592653589793,3.141592653589793,3.141592653589793,3.141592653589793,3.141592653589793,3.141592653589793,3.141592653589793,3.141592653589793,3.141592653589793,3.141592653589793,3.141592653589793,3.141592653589793,3.141592653589793,3.141592653589793,3.141592653589793,3.141592653589793,0.0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0.0,2.6408221562898664,2.140051658985392,1.6392811616893304,1.1385106643900855,0.6377401670862933,0.1369696697888675,-0.3638008275085583,-0.8645713248114409,-1.3653418221106859,-1.8661123194099307,-2.3668828167146323,-2.867653314012058,2.9147614958737407,2.4139909985726766,1.9132205012679753,1.4124500039705494,0.9116795066694854,0.4109090093684218,-0.08986148792172807,-0.5906319852227917,-1.0914024825311315,-1.5921729798249196,-2.092943477122345,-2.5937139744270468,-3.094484471724473,-0.45366231543210506,-0.9544328127368068,-1.4552033100342325,-1.9559738073316586,-2.456744304643636,-2.957514801933786,2.824900007941099,2.3241295106436732,1.8233590133389714,1.3225885160415456,0.8218180187513957,0.32104752143941795,-0.17972297584345587,-0.6804934731481577,-1.1812639704455834,-1.6820344677430092,-2.182804965033159,-2.6835754623451367,3.098839347529748,2.5980688502323224,2.097298352920345,1.5965278556374707,1.0957573583400448,0.5949868610280673,0.09421636374519331,-0.40655413356678444,-0.9073246308642101,-1.408095128161636,-1.908865625459062,-2.4096361227710394,-2.910406620068465,2.8720081898136955,2.371237692501718,1.8704671952042922,1.3696966979068663,0.8689262006094404,0.3681557033120146,-0.13261479398541118,-0.6333852912973889,-1.1341557885948146,-1.6349262858922404,-2.1356967831896663,-2.636467280487092,-3.137237777769966,2.645177032083091,2.144406534785665,1.6436360375027914,1.1428655402053656,0.6420950428788359,0.1413245455814102,2.7821467018883292,2.2813762045618,1.7806057072643742,1.2798352099669483,0.7790647126695224,0.2782942153575447,-0.22247628191077723,-0.7232467792082031,-1.2240172765056287,-1.7247877738176065,-2.225558271115032,-2.726328768412458,3.056086041440599,2.555315544143173,2.0545450468457473,1.5537745495483215,1.0530040522508957,0.5522335549534699,0.05146305768514794,-0.44930743964138165,-0.9500779369388074,-1.4508484342362333,-1.9516189315336592,-2.4523894288601884,0.0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"type":"scatter","name":"
@@ -17,9 +17,9 @@ window.PLOTLYENV = window.PLOTLYENV || {} - if (document.getElementById('96114dbf-ca26-42d5-82ee-8dd4b72f7a37')) { + if (document.getElementById('941971dc-9fb9-4432-8c03-4b25e72d48b8')) { Plotly.newPlot( - '96114dbf-ca26-42d5-82ee-8dd4b72f7a37', + '941971dc-9fb9-4432-8c03-4b25e72d48b8', [{"y":[null,null,null,null,null,null,null,null,null,null],"type":"scatter","name":"Gx","hovertemplate":"(%{x:.4f} ms, %{y:.2f} mT/m)","x":[0.0,0.0,0.11743300249919976,3.3174330024992,3.4348660049983994,3.4348660049983994,3.4348660049983994,3.5522990074975995,5.093582506248,5.211015508747199]},{"y":[null,null,null,null,null,null,null,null,null,null],"type":"scatter","name":"Gy","hovertemplate":"(%{x:.4f} ms, %{y:.2f} mT/m)","x":[0.0,0.0,0.11743300249919976,3.3174330024992,3.4348660049983994,3.4348660049983994,3.4348660049983994,3.5522990074975995,5.093582506248,5.211015508747199]},{"y":[null,0.0,5.871650124959989,5.871650124959989,0.0,null,0.0,-5.871650124959989,-5.871650124959989,0.0],"type":"scatter","name":"Gz","hovertemplate":"(%{x:.4f} ms, %{y:.2f} mT/m)","x":[0.0,0.0,0.11743300249919976,3.3174330024992,3.4348660049983994,3.4348660049983994,3.4348660049983994,3.5522990074975995,5.093582506248,5.211015508747199]},{"y":[null,0.0,0.0,0.0,0.002650745908035629,0.002650745908035629,0.0053388171457928926,0.0053388171457928926,0.008066009886827775,0.008066009886827775,0.010833450450610519,0.010833450450610519,0.013641227449484471,0.013641227449484471,0.016488029335818093,0.016488029335818093,0.019370794121071296,0.019370794121071296,0.022284378024172827,0.022284378024172827,0.025221249701014973,0.025221249701014973,0.02817121650977589,0.02817121650977589,0.031121188979020907,0.031121188979020907,0.03405498926904943,0.03405498926904943,0.03695320895474471,0.03695320895474471,0.03979312091432179,0.03979312091432179,0.04254864948794008,0.04254864948794008,0.04519040237922849,0.04519040237922849,0.04768576701835976,0.04768576701835976,0.049999073295268676,0.049999073295268676,0.05209182371457742,0.05209182371457742,0.05392299112911895,0.05392299112911895,0.055449383286575366,0.055449383286575366,0.05662607248412483,0.05662607248412483,0.05740688767995752,0.05740688767995752,0.0577449654691901,0.0577449654691901,0.05759335540635669,0.05759335540635669,0.05690567425858759,0.05690567425858759,0.05563680291402328,0.05563680291402328,0.053743618859949334,0.053743618859949334,0.051185756395239125,0.051185756395239125,0.04792638606215209,0.04792638606215209,0.04393300418296292,0.04393300418296292,0.039178222876213566,0.039178222876213566,0.03364055051367742,0.03364055051367742,0.027305152269617876,0.027305152269617876,0.020164580214782107,0.020164580214782107,0.012219462323921659,0.012219462323921659,0.0034791398013999794,0.0034791398013999794,0.0060377577126303995,0.0060377577126303995,0.016302809211494115,0.016302809211494115,0.027277381417475845,0.027277381417475845,0.03891229912654252,0.03891229912654252,0.05114761537758999,0.05114761537758999,0.06391248925769452,0.06391248925769452,0.07712517828016699,0.07712517828016699,0.09069315129318156,0.09069315129318156,0.10451332680112918,0.10451332680112918,0.11847244041757073,0.11847244041757073,0.13244754392781488,0.13244754392781488,0.1463066371317893,0.1463066371317893,0.15990943227606258,0.15990943227606258,0.17310824948043216,0.17310824948043216,0.18574904013299,0.18574904013299,0.19767253378214017,0.19767253378214017,0.20871550260923466,0.20871550260923466,0.21871213613621893,0.21871213613621893,0.22749551742392102,0.22749551742392102,0.23489919066345533,0.23489919066345533,0.24075880877048242,0.24075880877048242,0.244913848374388,0.244913848374388,0.24720937846589064,0.24720937846589064,0.24749786794072115,0.24749786794072115,0.2456410163665514,0.2456410163665514,0.2415115915171923,0.2415115915171923,0.23499525657302925,0.23499525657302925,0.22599236938943754,0.22599236938943754,0.214419735893908,0.214419735893908,0.200212299494864,0.200212299494864,0.1833247483762588,0.1833247483762588,0.16373302271598303,0.16373302271598303,0.14143570420538074,0.14143570420538074,0.11645527076246036,0.11645527076246036,0.08883920002177964,0.08883920002177964,0.05866090604687052,0.05866090604687052,0.026020494742033405,0.026020494742033405,0.008954675366672958,0.008954675366672958,0.04610963896405228,0.04610963896405228,0.08526168688252214,0.08526168688252214,0.1262004550070854,0.1262004550070854,0.1686882462644926,0.1686882462644926,0.21246059095640668,0.21246059095640668,0.25722704874724367,0.25722704874724367,0.3026722535913471,0.3026722535913471,0.34845720079835923,0.34845720079835923,0.39422077330812527,0.39422077330812527,0.43958150209580626,0.43958150209580626,0.4841395534733228,0.4841395534733228,0.5274789339143345,0.5274789339143345,0.569169900926367,0.569169900926367,0.6087715664452,0.6087715664452,0.6458346772526281,0.6458346772526281,0.6799045550384003,0.6799045550384003,0.710524176959072,0.710524176959072,0.7372373759083932,0.7372373759083932,0.7595921382226946,0.7595921382226946,0.777143975216216,0.777143975216216,0.789459343790019,0.789459343790019,0.7961190903971398,0.7961190903971398,0.7967218918876029,0.7967218918876029,0.7908876662096712,0.7908876662096712,0.7782609256164743,0.7782609256164743,0.7585140449261485,0.7585140449261485,0.731350417513184,0.731350417513184,0.6965074720710905,0.6965074720710905,0.653759523782037,0.653759523782037,0.6029204343559218,0.6029204343559218,0.5438460564555424,0.5438460564555424,0.47643643930006163,0.47643643930006163,0.4006377737279015,0.4006377737279015,0.3164440566924646,0.3164440566924646,0.22389845704776193,0.22389845704776193,0.12309436654239192,0.12309436654239192,0.014176122163921612,0.014176122163921612,0.10266061165549742,0.10266061165549742,0.22716880996607344,0.22716880996607344,0.3590504097512798,0.3590504097512798,0.49795699160594925,0.49795699160594925,0.6434908215924451,0.6434908215924451,0.7952062514320914,0.7952062514320914,0.9526114723771513,0.9526114723771513,1.1151706153020349,1.1151706153020349,1.2823061867750845,1.2823061867750845,1.4534018281475178,1.4534018281475178,1.6278053820476663,1.6278053820476663,1.8048322481192656,1.8048322481192656,1.9837690074144985,1.9837690074144985,2.1638772925670997,2.1638772925670997,2.3443978787485418,2.3443978787485418,2.524554968469781,2.524554968469781,2.703560641550188,2.703560641550188,2.88061944004983,2.88061944004983,3.054933056665414,3.054933056665414,3.225705094036402,3.225705094036402,3.3921458616060116,3.3921458616060116,3.553477176140717,3.553477176140717,3.7089371317367865,3.7089371317367865,3.8577848051376593,3.8577848051376593,3.999304862452608,3.999304862452608,4.132812033904442,4.132812033904442,4.257655424038694,4.257655424038694,4.373222625893297,4.373222625893297,4.478943608948542,4.478943608948542,4.574294352241908,4.574294352241908,4.658800195829349,4.658800195829349,4.732038885789583,4.732038885789583,4.7936432901848836,4.7936432901848836,4.843303765793097,4.843303765793097,4.880770157991781,4.880770157991781,4.90585341888564,4.90585341888564,4.918426831600795,4.918426831600795,4.918426831600795,4.918426831600795,4.905853418885641,4.905853418885641,4.8807701579917815,4.8807701579917815,4.843303765793097,4.843303765793097,4.7936432901848836,4.7936432901848836,4.732038885789584,4.732038885789584,4.658800195829349,4.658800195829349,4.574294352241908,4.574294352241908,4.478943608948545,4.478943608948545,4.373222625893299,4.373222625893299,4.2576554240386955,4.2576554240386955,4.132812033904444,4.132812033904444,3.999304862452608,3.999304862452608,3.8577848051376593,3.8577848051376593,3.70893713173679,3.70893713173679,3.553477176140721,3.553477176140721,3.3921458616060147,3.3921458616060147,3.225705094036405,3.225705094036405,3.054933056665417,3.054933056665417,2.88061944004983,2.88061944004983,2.703560641550188,2.703560641550188,2.524554968469785,2.524554968469785,2.3443978787485453,2.3443978787485453,2.163877292567103,2.163877292567103,1.9837690074145018,1.9837690074145018,1.8048322481192691,1.8048322481192691,1.6278053820476663,1.6278053820476663,1.4534018281475178,1.4534018281475178,1.282306186775088,1.282306186775088,1.1151706153020375,1.1151706153020375,0.9526114723771547,0.9526114723771547,0.7952062514320946,0.7952062514320946,0.6434908215924451,0.6434908215924451,0.4979569916059522,0.4979569916059522,0.35905040975128255,0.35905040975128255,0.2271688099660761,0.2271688099660761,0.10266061165549993,0.10266061165549993,0.014176122163919738,0.014176122163919738,0.1230943665423893,0.1230943665423893,0.22389845704776193,0.22389845704776193,0.3164440566924646,0.3164440566924646,0.4006377737279015,0.4006377737279015,0.47643643930006163,0.47643643930006163,0.5438460564555424,0.5438460564555424,0.6029204343559195,0.6029204343559195,0.653759523782035,0.653759523782035,0.69650747207109,0.69650747207109,0.7313504175131832,0.7313504175131832,0.7585140449261479,0.7585140449261479,0.778260925616474,0.778260925616474,0.7908876662096711,0.7908876662096711,0.7967218918876029,0.7967218918876029,0.7961190903971396,0.7961190903971396,0.789459343790019,0.789459343790019,0.777143975216216,0.777143975216216,0.7595921382226946,0.7595921382226946,0.7372373759083932,0.7372373759083932,0.710524176959072,0.710524176959072,0.6799045550384012,0.6799045550384012,0.6458346772526289,0.6458346772526289,0.6087715664452015,0.6087715664452015,0.5691699009263677,0.5691699009263677,0.5274789339143353,0.5274789339143353,0.4841395534733239,0.4841395534733239,0.4395815020958067,0.4395815020958067,0.3942207733081259,0.3942207733081259,0.34845720079835957,0.34845720079835957,0.30267225359134736,0.30267225359134736,0.25722704874724367,0.25722704874724367,0.21246059095640668,0.21246059095640668,0.1686882462644926,0.1686882462644926,0.12620045500708676,0.12620045500708676,0.08526168688252314,0.08526168688252314,0.04610963896405355,0.04610963896405355,0.008954675366673858,0.008954675366673858,0.026020494742032853,0.026020494742032853,0.05866090604687,0.05866090604687,0.08883920002177867,0.08883920002177867,0.11645527076246039,0.11645527076246039,0.14143570420538074,0.14143570420538074,0.16373302271598267,0.16373302271598267,0.1833247483762588,0.1833247483762588,0.200212299494864,0.200212299494864,0.214419735893908,0.214419735893908,0.2259923693894377,0.2259923693894377,0.234995256573029,0.234995256573029,0.24151159151719212,0.24151159151719212,0.24564101636655133,0.24564101636655133,0.2474978679407211,0.2474978679407211,0.2472093784658907,0.2472093784658907,0.24491384837438795,0.24491384837438795,0.2407588087704825,0.2407588087704825,0.23489919066345535,0.23489919066345535,0.22749551742392118,0.22749551742392118,0.21871213613621893,0.21871213613621893,0.20871550260923466,0.20871550260923466,0.19767253378214017,0.19767253378214017,0.18574904013299,0.18574904013299,0.17310824948043244,0.17310824948043244,0.15990943227606289,0.15990943227606289,0.14630663713178946,0.14630663713178946,0.1324475439278151,0.1324475439278151,0.11847244041757093,0.11847244041757093,0.10451332680112943,0.10451332680112943,0.09069315129318205,0.09069315129318205,0.07712517828016728,0.07712517828016728,0.06391248925769474,0.06391248925769474,0.05114761537758999,0.05114761537758999,0.03891229912654252,0.03891229912654252,0.027277381417475845,0.027277381417475845,0.016302809211494115,0.016302809211494115,0.006037757712630729,0.006037757712630729,0.0034791398013998276,0.0034791398013998276,0.012219462323921522,0.012219462323921522,0.02016458021478197,0.02016458021478197,0.02730515226961763,0.02730515226961763,0.03364055051367732,0.03364055051367732,0.03917822287621349,0.03917822287621349,0.0439330041829629,0.0439330041829629,0.047926386062151986,0.047926386062151986,0.051185756395239125,0.051185756395239125,0.053743618859949334,0.053743618859949334,0.05563680291402328,0.05563680291402328,0.05690567425858759,0.05690567425858759,0.05759335540635669,0.05759335540635669,0.05774496546919015,0.05774496546919015,0.05740688767995751,0.05740688767995751,0.05662607248412484,0.05662607248412484,0.0554493832865754,0.0554493832865754,0.05392299112911901,0.05392299112911901,0.05209182371457744,0.05209182371457744,0.04999907329526874,0.04999907329526874,0.04768576701835982,0.04768576701835982,0.04519040237922849,0.04519040237922849,0.04254864948794008,0.04254864948794008,0.03979312091432179,0.03979312091432179,0.03695320895474471,0.03695320895474471,0.03405498926904943,0.03405498926904943,0.03112118897902102,0.03112118897902102,0.02817121650977595,0.02817121650977595,0.02522124970101503,0.02522124970101503,0.02228437802417289,0.02228437802417289,0.019370794121071403,0.019370794121071403,0.01648802933581814,0.01648802933581814,0.013641227449484518,0.013641227449484518,0.010833450450610566,0.010833450450610566,0.008066009886827775,0.008066009886827775,0.0053388171457928926,0.0053388171457928926,0.002650745908035629,0.002650745908035629,0.0,0.0,0.0,null,null,null,null,null],"type":"scatter","name":"|RF_1|","hovertemplate":"(%{x:.4f} ms, %{y:.2f} μT)","x":[0.0,0.11743300249919976,0.11743300249919976,0.12809966916586643,0.12809966916586643,0.13876633583253312,0.13876633583253312,0.14943300249919977,0.14943300249919977,0.16009966916586643,0.16009966916586643,0.1707663358325331,0.1707663358325331,0.18143300249919977,0.18143300249919977,0.19209966916586643,0.19209966916586643,0.2027663358325331,0.2027663358325331,0.21343300249919975,0.21343300249919975,0.2240996691658664,0.2240996691658664,0.2347663358325331,0.2347663358325331,0.24543300249919978,0.24543300249919978,0.2560996691658664,0.2560996691658664,0.2667663358325331,0.2667663358325331,0.2774330024991997,0.2774330024991997,0.28809966916586643,0.28809966916586643,0.2987663358325331,0.2987663358325331,0.30943300249919975,0.30943300249919975,0.3200996691658664,0.3200996691658664,0.33076633583253306,0.33076633583253306,0.3414330024991997,0.3414330024991997,0.35209966916586644,0.35209966916586644,0.36276633583253304,0.36276633583253304,0.37343300249919975,0.37343300249919975,0.3840996691658664,0.3840996691658664,0.3947663358325331,0.3947663358325331,0.40543300249919983,0.40543300249919983,0.4160996691658665,0.4160996691658665,0.4267663358325332,0.4267663358325332,0.43743300249919986,0.43743300249919986,0.4480996691658666,0.4480996691658666,0.4587663358325333,0.4587663358325333,0.46943300249919995,0.46943300249919995,0.48009966916586666,0.48009966916586666,0.4907663358325333,0.4907663358325333,0.5014330024992001,0.5014330024992001,0.5120996691658667,0.5120996691658667,0.5227663358325335,0.5227663358325335,0.5334330024992001,0.5334330024992001,0.5440996691658668,0.5440996691658668,0.5547663358325335,0.5547663358325335,0.5654330024992003,0.5654330024992003,0.5760996691658669,0.5760996691658669,0.5867663358325336,0.5867663358325336,0.5974330024992003,0.5974330024992003,0.6080996691658669,0.6080996691658669,0.6187663358325335,0.6187663358325335,0.6294330024992002,0.6294330024992002,0.6400996691658668,0.6400996691658668,0.6507663358325334,0.6507663358325334,0.6614330024992001,0.6614330024992001,0.6720996691658667,0.6720996691658667,0.6827663358325333,0.6827663358325333,0.6934330024992,0.6934330024992,0.7040996691658666,0.7040996691658666,0.7147663358325332,0.7147663358325332,0.7254330024991998,0.7254330024991998,0.7360996691658666,0.7360996691658666,0.7467663358325332,0.7467663358325332,0.7574330024991998,0.7574330024991998,0.7680996691658665,0.7680996691658665,0.7787663358325331,0.7787663358325331,0.7894330024991997,0.7894330024991997,0.8000996691658664,0.8000996691658664,0.810766335832533,0.810766335832533,0.8214330024991996,0.8214330024991996,0.8320996691658663,0.8320996691658663,0.8427663358325329,0.8427663358325329,0.8534330024991995,0.8534330024991995,0.8640996691658662,0.8640996691658662,0.8747663358325328,0.8747663358325328,0.8854330024991994,0.8854330024991994,0.896099669165866,0.896099669165866,0.9067663358325327,0.9067663358325327,0.9174330024991993,0.9174330024991993,0.928099669165866,0.928099669165866,0.9387663358325328,0.9387663358325328,0.9494330024991994,0.9494330024991994,0.960099669165866,0.960099669165866,0.9707663358325327,0.9707663358325327,0.9814330024991995,0.9814330024991995,0.9920996691658661,0.9920996691658661,1.0027663358325327,1.0027663358325327,1.0134330024991993,1.0134330024991993,1.0240996691658661,1.0240996691658661,1.0347663358325327,1.0347663358325327,1.0454330024991993,1.0454330024991993,1.056099669165866,1.056099669165866,1.0667663358325328,1.0667663358325328,1.0774330024991994,1.0774330024991994,1.088099669165866,1.088099669165866,1.0987663358325328,1.0987663358325328,1.1094330024991994,1.1094330024991994,1.120099669165866,1.120099669165866,1.1307663358325326,1.1307663358325326,1.1414330024991992,1.1414330024991992,1.1520996691658658,1.1520996691658658,1.1627663358325329,1.1627663358325329,1.1734330024991995,1.1734330024991995,1.184099669165866,1.184099669165866,1.1947663358325327,1.1947663358325327,1.2054330024991993,1.2054330024991993,1.216099669165866,1.216099669165866,1.2267663358325327,1.2267663358325327,1.2374330024991995,1.2374330024991995,1.2480996691658663,1.2480996691658663,1.258766335832533,1.258766335832533,1.2694330024991995,1.2694330024991995,1.2800996691658661,1.2800996691658661,1.2907663358325328,1.2907663358325328,1.3014330024991998,1.3014330024991998,1.3120996691658664,1.3120996691658664,1.322766335832533,1.322766335832533,1.3334330024991998,1.3334330024991998,1.3440996691658664,1.3440996691658664,1.354766335832533,1.354766335832533,1.3654330024991996,1.3654330024991996,1.3760996691658665,1.3760996691658665,1.3867663358325333,1.3867663358325333,1.3974330024991999,1.3974330024991999,1.4080996691658665,1.4080996691658665,1.418766335832533,1.418766335832533,1.4294330024991997,1.4294330024991997,1.4400996691658665,1.4400996691658665,1.4507663358325331,1.4507663358325331,1.4614330024991997,1.4614330024991997,1.4720996691658663,1.4720996691658663,1.482766335832533,1.482766335832533,1.4934330024991995,1.4934330024991995,1.5040996691658661,1.5040996691658661,1.514766335832533,1.514766335832533,1.5254330024991996,1.5254330024991996,1.5360996691658662,1.5360996691658662,1.5467663358325328,1.5467663358325328,1.5574330024991994,1.5574330024991994,1.568099669165866,1.568099669165866,1.5787663358325328,1.5787663358325328,1.5894330024991994,1.5894330024991994,1.600099669165866,1.600099669165866,1.6107663358325326,1.6107663358325326,1.6214330024991992,1.6214330024991992,1.6320996691658658,1.6320996691658658,1.6427663358325324,1.6427663358325324,1.6534330024991992,1.6534330024991992,1.6640996691658658,1.6640996691658658,1.6747663358325324,1.6747663358325324,1.685433002499199,1.685433002499199,1.6960996691658656,1.6960996691658656,1.7067663358325322,1.7067663358325322,1.717433002499199,1.717433002499199,1.7280996691658657,1.7280996691658657,1.7387663358325323,1.7387663358325323,1.7494330024991989,1.7494330024991989,1.7600996691658657,1.7600996691658657,1.7707663358325323,1.7707663358325323,1.781433002499199,1.781433002499199,1.7920996691658657,1.7920996691658657,1.8027663358325323,1.8027663358325323,1.813433002499199,1.813433002499199,1.8240996691658655,1.8240996691658655,1.8347663358325321,1.8347663358325321,1.845433002499199,1.845433002499199,1.8560996691658658,1.8560996691658658,1.8667663358325324,1.8667663358325324,1.877433002499199,1.877433002499199,1.8880996691658656,1.8880996691658656,1.8987663358325322,1.8987663358325322,1.9094330024991988,1.9094330024991988,1.9200996691658656,1.9200996691658656,1.9307663358325324,1.9307663358325324,1.941433002499199,1.941433002499199,1.9520996691658656,1.9520996691658656,1.9627663358325322,1.9627663358325322,1.9734330024991988,1.9734330024991988,1.9840996691658654,1.9840996691658654,1.9947663358325327,1.9947663358325327,2.005433002499199,2.005433002499199,2.016099669165866,2.016099669165866,2.0267663358325323,2.0267663358325323,2.037433002499199,2.037433002499199,2.048099669165866,2.048099669165866,2.0587663358325323,2.0587663358325323,2.069433002499199,2.069433002499199,2.0800996691658655,2.0800996691658655,2.090766335832533,2.090766335832533,2.1014330024991996,2.1014330024991996,2.112099669165866,2.112099669165866,2.122766335832533,2.122766335832533,2.133433002499199,2.133433002499199,2.144099669165866,2.144099669165866,2.1547663358325324,2.1547663358325324,2.1654330024991992,2.1654330024991992,2.176099669165866,2.176099669165866,2.186766335832533,2.186766335832533,2.1974330024991997,2.1974330024991997,2.208099669165866,2.208099669165866,2.218766335832533,2.218766335832533,2.2294330024991993,2.2294330024991993,2.240099669165866,2.240099669165866,2.250766335832533,2.250766335832533,2.2614330024991993,2.2614330024991993,2.272099669165866,2.272099669165866,2.2827663358325325,2.2827663358325325,2.2934330024991993,2.2934330024991993,2.3040996691658657,2.3040996691658657,2.3147663358325326,2.3147663358325326,2.3254330024991994,2.3254330024991994,2.3360996691658658,2.3360996691658658,2.3467663358325326,2.3467663358325326,2.357433002499199,2.357433002499199,2.368099669165866,2.368099669165866,2.3787663358325326,2.3787663358325326,2.389433002499199,2.389433002499199,2.400099669165866,2.400099669165866,2.410766335832532,2.410766335832532,2.421433002499199,2.421433002499199,2.4320996691658654,2.4320996691658654,2.442766335832532,2.442766335832532,2.453433002499199,2.453433002499199,2.4640996691658654,2.4640996691658654,2.4747663358325322,2.4747663358325322,2.4854330024991986,2.4854330024991986,2.4960996691658655,2.4960996691658655,2.506766335832532,2.506766335832532,2.5174330024991987,2.5174330024991987,2.5280996691658655,2.5280996691658655,2.538766335832532,2.538766335832532,2.5494330024991987,2.5494330024991987,2.560099669165865,2.560099669165865,2.570766335832532,2.570766335832532,2.5814330024991987,2.5814330024991987,2.592099669165865,2.592099669165865,2.6027663358325324,2.6027663358325324,2.6134330024991987,2.6134330024991987,2.6240996691658656,2.6240996691658656,2.634766335832532,2.634766335832532,2.6454330024991988,2.6454330024991988,2.6560996691658656,2.6560996691658656,2.666766335832532,2.666766335832532,2.677433002499199,2.677433002499199,2.688099669165865,2.688099669165865,2.698766335832532,2.698766335832532,2.7094330024991984,2.7094330024991984,2.720099669165865,2.720099669165865,2.730766335832532,2.730766335832532,2.7414330024991984,2.7414330024991984,2.7520996691658652,2.7520996691658652,2.7627663358325316,2.7627663358325316,2.773433002499199,2.773433002499199,2.7840996691658653,2.7840996691658653,2.794766335832532,2.794766335832532,2.805433002499199,2.805433002499199,2.8160996691658653,2.8160996691658653,2.826766335832532,2.826766335832532,2.8374330024991985,2.8374330024991985,2.8480996691658658,2.8480996691658658,2.858766335832532,2.858766335832532,2.869433002499199,2.869433002499199,2.880099669165866,2.880099669165866,2.890766335832532,2.890766335832532,2.901433002499199,2.901433002499199,2.9120996691658654,2.9120996691658654,2.922766335832532,2.922766335832532,2.933433002499199,2.933433002499199,2.944099669165866,2.944099669165866,2.9547663358325327,2.9547663358325327,2.965433002499199,2.965433002499199,2.976099669165866,2.976099669165866,2.9867663358325323,2.9867663358325323,2.997433002499199,2.997433002499199,3.008099669165866,3.008099669165866,3.0187663358325323,3.0187663358325323,3.029433002499199,3.029433002499199,3.0400996691658655,3.0400996691658655,3.0507663358325323,3.0507663358325323,3.0614330024991987,3.0614330024991987,3.0720996691658655,3.0720996691658655,3.0827663358325323,3.0827663358325323,3.0934330024991987,3.0934330024991987,3.1040996691658655,3.1040996691658655,3.114766335832532,3.114766335832532,3.1254330024991988,3.1254330024991988,3.136099669165865,3.136099669165865,3.146766335832532,3.146766335832532,3.157433002499199,3.157433002499199,3.168099669165865,3.168099669165865,3.178766335832532,3.178766335832532,3.1894330024991984,3.1894330024991984,3.200099669165865,3.200099669165865,3.210766335832532,3.210766335832532,3.2214330024991984,3.2214330024991984,3.232099669165865,3.232099669165865,3.2427663358325316,3.2427663358325316,3.2534330024991984,3.2534330024991984,3.264099669165865,3.264099669165865,3.2747663358325316,3.2747663358325316,3.2854330024991985,3.2854330024991985,3.296099669165865,3.296099669165865,3.3067663358325317,3.3067663358325317,3.317433002499198,3.317433002499198,3.4348660049983994,3.4348660049983994,3.4348660049983994,3.4348660049983994,3.4348660049983994]},{"y":[null,0.0,0.0,0.0,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,-3.141592653589793,0.0,0.0,0.0,null,null,null,null,null],"type":"scatter","name":"
@@ -17,11 +17,11 @@ window.PLOTLYENV = window.PLOTLYENV || {} - if (document.getElementById('3d4d8ef2-e7bc-41f3-b471-dac173224435')) { + if (document.getElementById('efeed3e1-b9fb-4477-ba5e-fe3f214956b6')) { Plotly.newPlot( - '3d4d8ef2-e7bc-41f3-b471-dac173224435', - [{"y":[null,null,null,null,null,null,0.0,-25.528913586782558,-25.528913586782558,0.0,null,0.0,51.057827173565116,51.057827173565116,0.0,null,null,null,null,null,null,0.0,-51.057827173565116,-51.057827173565116,0.0,null,null,null,null,null,null,0.0,51.057827173565116,51.057827173565116,0.0,null,null,null,null,null,null,0.0,-51.057827173565116,-51.057827173565116,0.0,null,null,null,null,null,null,0.0,51.057827173565116,51.057827173565116,0.0,null,null,null,null,null,null,0.0,-25.528913586782558,-25.528913586782558,0.0,null,0.0,51.057827173565116,51.057827173565116,0.0,null,null,null,null,null,null,0.0,-51.057827173565116,-51.057827173565116,0.0,null,null,null,null,null,null,0.0,51.057827173565116,51.057827173565116,0.0,null,null,null,null,null,null,0.0,-51.057827173565116,-51.057827173565116,0.0,null,null,null,null,null,null,0.0,51.057827173565116,51.057827173565116,0.0,null,null,null,null,null,null,0.0,-25.528913586782558,-25.528913586782558,0.0,null,0.0,51.057827173565116,51.057827173565116,0.0,null,null,null,null,null,null,0.0,-51.057827173565116,-51.057827173565116,0.0,null,null,null,null,null,null,0.0,51.057827173565116,51.057827173565116,0.0,null,null,null,null,null,null,0.0,-51.057827173565116,-51.057827173565116,0.0,null,null,null,null,null,null,0.0,51.057827173565116,51.057827173565116,0.0],"type":"scatter","name":"Gx","hovertemplate":"(%{x:.4f} ms, %{y:.2f} mT/m)","x":[0.0,0.0,0.0,0.5871650124959988,0.5871650124959988,0.5871650124959988,0.5871650124959988,0.6892806668431292,0.8892806668431291,0.9913963211902593,0.9913963211902593,0.9913963211902593,1.0935119755373894,1.2935119755373896,1.39562762988452,1.39562762988452,1.39562762988452,1.49774328423165,1.49974328423165,1.6018589385787805,1.6018589385787805,1.6018589385787805,1.7039745929259107,1.9039745929259106,2.006090247273041,2.006090247273041,2.006090247273041,2.108205901620171,2.110205901620171,2.2123215559673013,2.2123215559673013,2.2123215559673013,2.3144372103144315,2.5144372103144317,2.616552864661562,2.616552864661562,2.616552864661562,2.718668519008692,2.7206685190086923,2.8227841733558225,2.8227841733558225,2.8227841733558225,2.9248998277029523,3.1248998277029525,3.2270154820500827,3.2270154820500827,3.2270154820500827,3.329131136397213,3.331131136397213,3.4332467907443434,3.4332467907443434,3.4332467907443434,3.5353624450914736,3.7353624450914737,3.8374780994386035,3.8374780994386035,3.8374780994386035,3.8374780994386035,4.424643111934603,4.424643111934603,4.424643111934603,4.424643111934603,4.526758766281733,4.726758766281733,4.828874420628864,4.828874420628864,4.828874420628864,4.930990074975994,5.130990074975994,5.233105729323125,5.233105729323125,5.233105729323125,5.3352213836702544,5.337221383670255,5.439337038017385,5.439337038017385,5.439337038017385,5.5414526923645155,5.741452692364516,5.8435683467116455,5.8435683467116455,5.8435683467116455,5.945684001058776,5.947684001058776,6.049799655405907,6.049799655405907,6.049799655405907,6.151915309753036,6.351915309753037,6.454030964100167,6.454030964100167,6.454030964100167,6.556146618447297,6.558146618447298,6.660262272794427,6.660262272794427,6.660262272794427,6.762377927141558,6.962377927141558,7.064493581488689,7.064493581488689,7.064493581488689,7.166609235835819,7.168609235835819,7.270724890182949,7.270724890182949,7.270724890182949,7.37284054453008,7.57284054453008,7.67495619887721,7.67495619887721,7.67495619887721,7.67495619887721,8.26212121137321,8.26212121137321,8.26212121137321,8.26212121137321,8.36423686572034,8.564236865720341,8.66635252006747,8.66635252006747,8.66635252006747,8.7684681744146,8.968468174414602,9.07058382876173,9.07058382876173,9.07058382876173,9.172699483108861,9.174699483108862,9.276815137455992,9.276815137455992,9.276815137455992,9.378930791803121,9.578930791803122,9.681046446150253,9.681046446150253,9.681046446150253,9.783162100497382,9.785162100497383,9.887277754844513,9.887277754844513,9.887277754844513,9.989393409191644,10.189393409191643,10.291509063538774,10.291509063538774,10.291509063538774,10.393624717885904,10.395624717885905,10.497740372233034,10.497740372233034,10.497740372233034,10.599856026580165,10.799856026580166,10.901971680927295,10.901971680927295,10.901971680927295,11.004087335274425,11.006087335274426,11.108202989621557,11.108202989621557,11.108202989621557,11.210318643968685,11.410318643968687,11.512434298315817]},{"y":[null,null,null,null,null,null,0.0,-16.900093205663477,-16.900093205663477,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,null,null,null,null,null,0.0,-16.900093205663477,-16.900093205663477,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,null,null,null,null,null,0.0,-16.900093205663477,-16.900093205663477,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null],"type":"scatter","name":"Gy","hovertemplate":"(%{x:.4f} ms, %{y:.2f} mT/m)","x":[0.0,0.0,0.0,0.5871650124959988,0.5871650124959988,0.5871650124959988,0.5871650124959988,0.6892806668431292,0.8892806668431291,0.9913963211902593,0.9913963211902593,0.9913963211902593,1.0935119755373894,1.2935119755373896,1.39562762988452,1.39562762988452,1.39562762988452,1.49774328423165,1.49974328423165,1.6018589385787805,1.6018589385787805,1.6018589385787805,1.7039745929259107,1.9039745929259106,2.006090247273041,2.006090247273041,2.006090247273041,2.108205901620171,2.110205901620171,2.2123215559673013,2.2123215559673013,2.2123215559673013,2.3144372103144315,2.5144372103144317,2.616552864661562,2.616552864661562,2.616552864661562,2.718668519008692,2.7206685190086923,2.8227841733558225,2.8227841733558225,2.8227841733558225,2.9248998277029523,3.1248998277029525,3.2270154820500827,3.2270154820500827,3.2270154820500827,3.329131136397213,3.331131136397213,3.4332467907443434,3.4332467907443434,3.4332467907443434,3.5353624450914736,3.7353624450914737,3.8374780994386035,3.8374780994386035,3.8374780994386035,3.8374780994386035,4.424643111934603,4.424643111934603,4.424643111934603,4.424643111934603,4.526758766281733,4.726758766281733,4.828874420628864,4.828874420628864,4.828874420628864,4.930990074975994,5.130990074975994,5.233105729323125,5.233105729323125,5.233105729323125,5.3352213836702544,5.337221383670255,5.439337038017385,5.439337038017385,5.439337038017385,5.5414526923645155,5.741452692364516,5.8435683467116455,5.8435683467116455,5.8435683467116455,5.945684001058776,5.947684001058776,6.049799655405907,6.049799655405907,6.049799655405907,6.151915309753036,6.351915309753037,6.454030964100167,6.454030964100167,6.454030964100167,6.556146618447297,6.558146618447298,6.660262272794427,6.660262272794427,6.660262272794427,6.762377927141558,6.962377927141558,7.064493581488689,7.064493581488689,7.064493581488689,7.166609235835819,7.168609235835819,7.270724890182949,7.270724890182949,7.270724890182949,7.37284054453008,7.57284054453008,7.67495619887721,7.67495619887721,7.67495619887721,7.67495619887721,8.26212121137321,8.26212121137321,8.26212121137321,8.26212121137321,8.36423686572034,8.564236865720341,8.66635252006747,8.66635252006747,8.66635252006747,8.7684681744146,8.968468174414602,9.07058382876173,9.07058382876173,9.07058382876173,9.172699483108861,9.174699483108862,9.276815137455992,9.276815137455992,9.276815137455992,9.378930791803121,9.578930791803122,9.681046446150253,9.681046446150253,9.681046446150253,9.783162100497382,9.785162100497383,9.887277754844513,9.887277754844513,9.887277754844513,9.989393409191644,10.189393409191643,10.291509063538774,10.291509063538774,10.291509063538774,10.393624717885904,10.395624717885905,10.497740372233034,10.497740372233034,10.497740372233034,10.599856026580165,10.799856026580166,10.901971680927295,10.901971680927295,10.901971680927295,11.004087335274425,11.006087335274426,11.108202989621557,11.108202989621557,11.108202989621557,11.210318643968685,11.410318643968687,11.512434298315817]},{"y":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"type":"scatter","name":"Gz","hovertemplate":"(%{x:.4f} ms, %{y:.2f} mT/m)","x":[0.0,0.0,0.0,0.5871650124959988,0.5871650124959988,0.5871650124959988,0.5871650124959988,0.5871650124959988,0.5871650124959988,0.5871650124959988,0.9913963211902593,0.9913963211902593,0.9913963211902593,0.9913963211902593,0.9913963211902593,1.39562762988452,1.39562762988452,1.39562762988452,1.39562762988452,1.39562762988452,1.6018589385787805,1.6018589385787805,1.6018589385787805,1.6018589385787805,1.6018589385787805,2.006090247273041,2.006090247273041,2.006090247273041,2.006090247273041,2.006090247273041,2.2123215559673013,2.2123215559673013,2.2123215559673013,2.2123215559673013,2.2123215559673013,2.616552864661562,2.616552864661562,2.616552864661562,2.616552864661562,2.616552864661562,2.8227841733558225,2.8227841733558225,2.8227841733558225,2.8227841733558225,2.8227841733558225,3.2270154820500827,3.2270154820500827,3.2270154820500827,3.2270154820500827,3.2270154820500827,3.4332467907443434,3.4332467907443434,3.4332467907443434,3.4332467907443434,3.4332467907443434,3.8374780994386035,3.8374780994386035,3.8374780994386035,4.424643111934603,4.424643111934603,4.424643111934603,4.424643111934603,4.424643111934603,4.424643111934603,4.424643111934603,4.828874420628864,4.828874420628864,4.828874420628864,4.828874420628864,4.828874420628864,5.233105729323125,5.233105729323125,5.233105729323125,5.233105729323125,5.233105729323125,5.439337038017385,5.439337038017385,5.439337038017385,5.439337038017385,5.439337038017385,5.8435683467116455,5.8435683467116455,5.8435683467116455,5.8435683467116455,5.8435683467116455,6.049799655405907,6.049799655405907,6.049799655405907,6.049799655405907,6.049799655405907,6.454030964100167,6.454030964100167,6.454030964100167,6.454030964100167,6.454030964100167,6.660262272794427,6.660262272794427,6.660262272794427,6.660262272794427,6.660262272794427,7.064493581488689,7.064493581488689,7.064493581488689,7.064493581488689,7.064493581488689,7.270724890182949,7.270724890182949,7.270724890182949,7.270724890182949,7.270724890182949,7.67495619887721,7.67495619887721,7.67495619887721,8.26212121137321,8.26212121137321,8.26212121137321,8.26212121137321,8.26212121137321,8.26212121137321,8.26212121137321,8.66635252006747,8.66635252006747,8.66635252006747,8.66635252006747,8.66635252006747,9.07058382876173,9.07058382876173,9.07058382876173,9.07058382876173,9.07058382876173,9.276815137455992,9.276815137455992,9.276815137455992,9.276815137455992,9.276815137455992,9.681046446150253,9.681046446150253,9.681046446150253,9.681046446150253,9.681046446150253,9.887277754844513,9.887277754844513,9.887277754844513,9.887277754844513,9.887277754844513,10.291509063538774,10.291509063538774,10.291509063538774,10.291509063538774,10.291509063538774,10.497740372233034,10.497740372233034,10.497740372233034,10.497740372233034,10.497740372233034,10.901971680927295,10.901971680927295,10.901971680927295,10.901971680927295,10.901971680927295,11.108202989621557,11.108202989621557,11.108202989621557,11.108202989621557,11.108202989621557]},{"y":[null,0.0,10.0,10.0,0.0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0.0,10.0,10.0,0.0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0.0,10.0,10.0,0.0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"type":"scatter","name":"|RF_1|","hovertemplate":"(%{x:.4f} ms, %{y:.2f} μT)","x":[0.0,0.0,0.0,0.5871650124959988,0.5871650124959988,0.5871650124959988,0.5871650124959988,0.5871650124959988,0.5871650124959988,0.5871650124959988,0.9913963211902593,0.9913963211902593,0.9913963211902593,0.9913963211902593,0.9913963211902593,1.39562762988452,1.39562762988452,1.39562762988452,1.39562762988452,1.39562762988452,1.6018589385787805,1.6018589385787805,1.6018589385787805,1.6018589385787805,1.6018589385787805,2.006090247273041,2.006090247273041,2.006090247273041,2.006090247273041,2.006090247273041,2.2123215559673013,2.2123215559673013,2.2123215559673013,2.2123215559673013,2.2123215559673013,2.616552864661562,2.616552864661562,2.616552864661562,2.616552864661562,2.616552864661562,2.8227841733558225,2.8227841733558225,2.8227841733558225,2.8227841733558225,2.8227841733558225,3.2270154820500827,3.2270154820500827,3.2270154820500827,3.2270154820500827,3.2270154820500827,3.4332467907443434,3.4332467907443434,3.4332467907443434,3.4332467907443434,3.4332467907443434,3.8374780994386035,3.8374780994386035,3.8374780994386035,4.424643111934603,4.424643111934603,4.424643111934603,4.424643111934603,4.424643111934603,4.424643111934603,4.424643111934603,4.828874420628864,4.828874420628864,4.828874420628864,4.828874420628864,4.828874420628864,5.233105729323125,5.233105729323125,5.233105729323125,5.233105729323125,5.233105729323125,5.439337038017385,5.439337038017385,5.439337038017385,5.439337038017385,5.439337038017385,5.8435683467116455,5.8435683467116455,5.8435683467116455,5.8435683467116455,5.8435683467116455,6.049799655405907,6.049799655405907,6.049799655405907,6.049799655405907,6.049799655405907,6.454030964100167,6.454030964100167,6.454030964100167,6.454030964100167,6.454030964100167,6.660262272794427,6.660262272794427,6.660262272794427,6.660262272794427,6.660262272794427,7.064493581488689,7.064493581488689,7.064493581488689,7.064493581488689,7.064493581488689,7.270724890182949,7.270724890182949,7.270724890182949,7.270724890182949,7.270724890182949,7.67495619887721,7.67495619887721,7.67495619887721,8.26212121137321,8.26212121137321,8.26212121137321,8.26212121137321,8.26212121137321,8.26212121137321,8.26212121137321,8.66635252006747,8.66635252006747,8.66635252006747,8.66635252006747,8.66635252006747,9.07058382876173,9.07058382876173,9.07058382876173,9.07058382876173,9.07058382876173,9.276815137455992,9.276815137455992,9.276815137455992,9.276815137455992,9.276815137455992,9.681046446150253,9.681046446150253,9.681046446150253,9.681046446150253,9.681046446150253,9.887277754844513,9.887277754844513,9.887277754844513,9.887277754844513,9.887277754844513,10.291509063538774,10.291509063538774,10.291509063538774,10.291509063538774,10.291509063538774,10.497740372233034,10.497740372233034,10.497740372233034,10.497740372233034,10.497740372233034,10.901971680927295,10.901971680927295,10.901971680927295,10.901971680927295,10.901971680927295,11.108202989621557,11.108202989621557,11.108202989621557,11.108202989621557,11.108202989621557]},{"y":[null,0.0,0.0,0.0,0.0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0.0,0.0,0.0,0.0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0.0,0.0,0.0,0.0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"type":"scatter","name":"
@@ -17,11 +17,11 @@ window.PLOTLYENV = window.PLOTLYENV || {} - if (document.getElementById('23bc41eb-0a3a-4dd6-af9c-ca52fb74dede')) { + if (document.getElementById('ca7b2b74-6857-4157-b394-b08214d20c96')) { Plotly.newPlot( - '23bc41eb-0a3a-4dd6-af9c-ca52fb74dede', - [{"y":[null,null,null,null,null,null,0.0,-25.528913586782558,-25.528913586782558,0.0,null,0.0,51.057827173565116,51.057827173565116,0.0,null,null,null,null,null,null,0.0,-51.057827173565116,-51.057827173565116,0.0,null,null,null,null,null,null,0.0,51.057827173565116,51.057827173565116,0.0,null,null,null,null,null,null,0.0,-51.057827173565116,-51.057827173565116,0.0,null,null,null,null,null,null,0.0,51.057827173565116,51.057827173565116,0.0,null,null,null,null,null,null,0.0,-51.057827173565116,-51.057827173565116,0.0,null,null,null,null,null,null,0.0,51.057827173565116,51.057827173565116,0.0,null,null,null,null,null,null,0.0,-51.057827173565116,-51.057827173565116,0.0,null,null,null,null,null,null,0.0,51.057827173565116,51.057827173565116,0.0,null,null,null,null,null,null,0.0,-51.057827173565116,-51.057827173565116,0.0,null,null,null,null,null,null,0.0,51.057827173565116,51.057827173565116,0.0,null,null,null,null,null,null,0.0,-51.057827173565116,-51.057827173565116,0.0,null,null,null,null,null,null,0.0,51.057827173565116,51.057827173565116,0.0,null,null,null,null,null,null,0.0,-51.057827173565116,-51.057827173565116,0.0,null,null,null,null,null,null,0.0,51.057827173565116,51.057827173565116,0.0,null,null,null,null,null,null,0.0,-51.057827173565116,-51.057827173565116,0.0,null,null,null,null,null,null,0.0,51.057827173565116,51.057827173565116,0.0,null,null,null,null,null,null,0.0,-51.057827173565116,-51.057827173565116,0.0,null,null,null,null,null,null,0.0,51.057827173565116,51.057827173565116,0.0,null,null,null,null,null,null,0.0,-51.057827173565116,-51.057827173565116,0.0,null,null,null,null,null,null,0.0,51.057827173565116,51.057827173565116,0.0,null,null,null,null,null,null,0.0,-51.057827173565116,-51.057827173565116,0.0,null,null,null,null,null,null,0.0,51.057827173565116,51.057827173565116,0.0,null,null,null,null,null,null,0.0,-51.057827173565116,-51.057827173565116,0.0,null,null,null,null,null,null,0.0,51.057827173565116,51.057827173565116,0.0,null,null,null,null,null,null,0.0,-51.057827173565116,-51.057827173565116,0.0,null,null,null,null,null,null,0.0,51.057827173565116,51.057827173565116,0.0,null,null,null,null,null,null,0.0,-51.057827173565116,-51.057827173565116,0.0,null,null,null,null,null,null,0.0,51.057827173565116,51.057827173565116,0.0,null,null,null,null,null,null,0.0,-51.057827173565116,-51.057827173565116,0.0,null,null,null,null,null,null,0.0,51.057827173565116,51.057827173565116,0.0,null,null,null,null,null,null,0.0,-51.057827173565116,-51.057827173565116,0.0,null,null,null,null,null,null,0.0,51.057827173565116,51.057827173565116,0.0,null,null,null,null,null,null,0.0,-51.057827173565116,-51.057827173565116,0.0,null,null,null,null,null,null,0.0,51.057827173565116,51.057827173565116,0.0,null,null,null,null,null,null,0.0,-51.057827173565116,-51.057827173565116,0.0,null,null,null,null,null,null,0.0,51.057827173565116,51.057827173565116,0.0,null,null,null,null,null,null,0.0,-51.057827173565116,-51.057827173565116,0.0,null,null,null,null,null,null,0.0,51.057827173565116,51.057827173565116,0.0,null,null,null,null,null,null,0.0,-51.057827173565116,-51.057827173565116,0.0,null,null,null,null,null,null,0.0,51.057827173565116,51.057827173565116,0.0,null,null,null,null,null,null,0.0,-51.057827173565116,-51.057827173565116,0.0,null,null,null,null,null,null,0.0,51.057827173565116,51.057827173565116,0.0,null,null,null,null,null,null,0.0,-51.057827173565116,-51.057827173565116,0.0,null,null,null,null,null,null,0.0,51.057827173565116,51.057827173565116,0.0,null,null,null,null,null,null,0.0,-51.057827173565116,-51.057827173565116,0.0,null,null,null,null,null,null,0.0,51.057827173565116,51.057827173565116,0.0,null,null,null,null,null,null,0.0,-51.057827173565116,-51.057827173565116,0.0,null,null,null,null,null,null,0.0,51.057827173565116,51.057827173565116,0.0,null,null,null,null,null,null,0.0,-51.057827173565116,-51.057827173565116,0.0,null,null,null,null,null,null,0.0,51.057827173565116,51.057827173565116,0.0,null,null,null,null,null,null,0.0,-51.057827173565116,-51.057827173565116,0.0,null,null,null,null,null,null,0.0,51.057827173565116,51.057827173565116,0.0,null,null,null,null,null,null,0.0,-51.057827173565116,-51.057827173565116,0.0,null,null,null,null,null,null,0.0,51.057827173565116,51.057827173565116,0.0,null,null,null,null,null,null,0.0,-51.057827173565116,-51.057827173565116,0.0,null,null,null,null,null,null,0.0,51.057827173565116,51.057827173565116,0.0,null,null,null,null,null,null,0.0,-51.057827173565116,-51.057827173565116,0.0,null,null,null,null,null,null,0.0,51.057827173565116,51.057827173565116,0.0,null,null,null,null,null,null,0.0,-51.057827173565116,-51.057827173565116,0.0,null,null,null,null,null,null,0.0,51.057827173565116,51.057827173565116,0.0,null,null,null,null,null,null,0.0,-51.057827173565116,-51.057827173565116,0.0,null,null,null,null,null,null,0.0,51.057827173565116,51.057827173565116,0.0,null,null,null,null,null,null,0.0,-51.057827173565116,-51.057827173565116,0.0,null,null,null,null,null,null,0.0,51.057827173565116,51.057827173565116,0.0,null,null,null,null,null,null,0.0,-51.057827173565116,-51.057827173565116,0.0,null,null,null,null,null,null,0.0,51.057827173565116,51.057827173565116,0.0,null,null,null,null,null,null,0.0,-51.057827173565116,-51.057827173565116,0.0,null,null,null,null,null,null,0.0,51.057827173565116,51.057827173565116,0.0,null,null,null,null,null,null,0.0,-51.057827173565116,-51.057827173565116,0.0,null,null,null,null,null,null,0.0,51.057827173565116,51.057827173565116,0.0,null,null,null,null,null,null,0.0,-51.057827173565116,-51.057827173565116,0.0,null,null,null,null,null,null,0.0,51.057827173565116,51.057827173565116,0.0,null,null,null,null,null,null,0.0,-51.057827173565116,-51.057827173565116,0.0,null,null,null,null,null,null,0.0,51.057827173565116,51.057827173565116,0.0,null,null,null,null,null,null,0.0,-51.057827173565116,-51.057827173565116,0.0,null,null,null,null,null,null,0.0,51.057827173565116,51.057827173565116,0.0,null,null,null,null,null,null,0.0,-51.057827173565116,-51.057827173565116,0.0,null,null,null,null,null,null,0.0,51.057827173565116,51.057827173565116,0.0,null,null,null,null,null,null,0.0,-51.057827173565116,-51.057827173565116,0.0,null,null,null,null,null,null,0.0,51.057827173565116,51.057827173565116,0.0,null,null,null,null,null,null,0.0,-51.057827173565116,-51.057827173565116,0.0,null,null,null,null,null,null,0.0,51.057827173565116,51.057827173565116,0.0,null,null,null,null,null,null,0.0,-51.057827173565116,-51.057827173565116,0.0,null,null,null,null,null,null,0.0,51.057827173565116,51.057827173565116,0.0,null,null,null,null,null,null,0.0,-51.057827173565116,-51.057827173565116,0.0,null,null,null,null,null,null,0.0,51.057827173565116,51.057827173565116,0.0,null,null,null,null,null,null,0.0,-51.057827173565116,-51.057827173565116,0.0,null,null,null,null,null,null,0.0,51.057827173565116,51.057827173565116,0.0,null,null,null,null,null,null,0.0,-51.057827173565116,-51.057827173565116,0.0,null,null,null,null,null,null,0.0,51.057827173565116,51.057827173565116,0.0,null,null,null,null,null,null,0.0,-51.057827173565116,-51.057827173565116,0.0,null,null,null,null,null,null,0.0,51.057827173565116,51.057827173565116,0.0,null,null,null,null,null,null,0.0,-51.057827173565116,-51.057827173565116,0.0,null,null,null,null,null,null,0.0,51.057827173565116,51.057827173565116,0.0,null,null,null,null,null,null,0.0,-51.057827173565116,-51.057827173565116,0.0,null,null,null,null,null,null,0.0,51.057827173565116,51.057827173565116,0.0,null,null,null,null,null,null,0.0,-51.057827173565116,-51.057827173565116,0.0,null,null,null,null,null,null,0.0,51.057827173565116,51.057827173565116,0.0,null,null,null,null,null,null,0.0,-51.057827173565116,-51.057827173565116,0.0,null,null,null,null,null,null,0.0,51.057827173565116,51.057827173565116,0.0,null,0.0,-25.528913586782558,-25.528913586782558,0.0],"type":"scatter","name":"Gx","hovertemplate":"(%{x:.4f} ms, %{y:.2f} mT/m)","x":[0.0,0.0,0.0,0.5871650124959988,0.5871650124959988,0.5871650124959988,0.5871650124959988,0.6892806668431292,0.8892806668431291,0.9913963211902593,0.9913963211902593,0.9913963211902593,1.0935119755373894,1.2935119755373896,1.39562762988452,1.39562762988452,1.39562762988452,1.49774328423165,1.49974328423165,1.6018589385787805,1.6018589385787805,1.6018589385787805,1.7039745929259107,1.9039745929259106,2.006090247273041,2.006090247273041,2.006090247273041,2.108205901620171,2.110205901620171,2.2123215559673013,2.2123215559673013,2.2123215559673013,2.3144372103144315,2.5144372103144317,2.616552864661562,2.616552864661562,2.616552864661562,2.718668519008692,2.7206685190086923,2.8227841733558225,2.8227841733558225,2.8227841733558225,2.9248998277029523,3.1248998277029525,3.2270154820500827,3.2270154820500827,3.2270154820500827,3.329131136397213,3.331131136397213,3.4332467907443434,3.4332467907443434,3.4332467907443434,3.5353624450914736,3.7353624450914737,3.8374780994386035,3.8374780994386035,3.8374780994386035,3.939593753785734,3.9415937537857335,4.043709408132864,4.043709408132864,4.043709408132864,4.145825062479994,4.345825062479994,4.447940716827125,4.447940716827125,4.447940716827125,4.5500563711742545,4.552056371174255,4.654172025521385,4.654172025521385,4.654172025521385,4.756287679868516,4.956287679868516,5.058403334215646,5.058403334215646,5.058403334215646,5.160518988562776,5.162518988562776,5.264634642909907,5.264634642909907,5.264634642909907,5.3667502972570365,5.5667502972570375,5.668865951604167,5.668865951604167,5.668865951604167,5.770981605951297,5.772981605951298,5.8750972602984275,5.8750972602984275,5.8750972602984275,5.977212914645558,6.177212914645558,6.279328568992689,6.279328568992689,6.279328568992689,6.381444223339819,6.383444223339819,6.485559877686949,6.485559877686949,6.485559877686949,6.58767553203408,6.78767553203408,6.88979118638121,6.88979118638121,6.88979118638121,6.9919068407283405,6.99390684072834,7.096022495075471,7.096022495075471,7.096022495075471,7.198138149422601,7.398138149422602,7.5002538037697315,7.5002538037697315,7.5002538037697315,7.602369458116861,7.604369458116862,7.706485112463992,7.706485112463992,7.706485112463992,7.808600766811122,8.008600766811123,8.110716421158253,8.110716421158253,8.110716421158253,8.212832075505382,8.214832075505383,8.316947729852513,8.316947729852513,8.316947729852513,8.419063384199644,8.619063384199643,8.721179038546774,8.721179038546774,8.721179038546774,8.823294692893905,8.825294692893905,8.927410347241034,8.927410347241034,8.927410347241034,9.029526001588165,9.229526001588166,9.331641655935295,9.331641655935295,9.331641655935295,9.433757310282425,9.435757310282426,9.537872964629557,9.537872964629557,9.537872964629557,9.639988618976686,9.839988618976687,9.942104273323817,9.942104273323817,9.942104273323817,10.044219927670946,10.046219927670947,10.148335582018078,10.148335582018078,10.148335582018078,10.250451236365208,10.450451236365208,10.552566890712338,10.552566890712338,10.552566890712338,10.654682545059469,10.65668254505947,10.758798199406598,10.758798199406598,10.758798199406598,10.860913853753729,11.06091385375373,11.163029508100859,11.163029508100859,11.163029508100859,11.26514516244799,11.26714516244799,11.369260816795121,11.369260816795121,11.369260816795121,11.47137647114225,11.671376471142251,11.773492125489382,11.773492125489382,11.773492125489382,11.87560777983651,11.877607779836511,11.979723434183642,11.979723434183642,11.979723434183642,12.081839088530772,12.281839088530772,12.383954742877902,12.383954742877902,12.383954742877902,12.486070397225033,12.488070397225032,12.590186051572163,12.590186051572163,12.590186051572163,12.692301705919293,12.892301705919294,12.994417360266423,12.994417360266423,12.994417360266423,13.096533014613554,13.098533014613555,13.200648668960683,13.200648668960683,13.200648668960683,13.302764323307814,13.502764323307815,13.604879977654946,13.604879977654946,13.604879977654946,13.706995632002075,13.708995632002075,13.811111286349206,13.811111286349206,13.811111286349206,13.913226940696337,14.113226940696336,14.215342595043467,14.215342595043467,14.215342595043467,14.317458249390597,14.319458249390596,14.421573903737727,14.421573903737727,14.421573903737727,14.523689558084858,14.723689558084859,14.825805212431987,14.825805212431987,14.825805212431987,14.927920866779118,14.929920866779119,15.032036521126248,15.032036521126248,15.032036521126248,15.134152175473378,15.33415217547338,15.43626782982051,15.43626782982051,15.43626782982051,15.538383484167639,15.54038348416764,15.64249913851477,15.64249913851477,15.64249913851477,15.744614792861901,15.9446147928619,16.04673044720903,16.04673044720903,16.04673044720903,16.14884610155616,16.15084610155616,16.25296175590329,16.25296175590329,16.25296175590329,16.35507741025042,16.55507741025042,16.657193064597546,16.657193064597546,16.657193064597546,16.759308718944677,16.761308718944676,16.863424373291807,16.863424373291807,16.863424373291807,16.965540027638937,17.165540027638936,17.267655681986064,17.267655681986064,17.267655681986064,17.369771336333198,17.371771336333197,17.473886990680324,17.473886990680324,17.473886990680324,17.576002645027454,17.776002645027454,17.87811829937458,17.87811829937458,17.87811829937458,17.980233953721715,17.982233953721714,18.08434960806884,18.08434960806884,18.08434960806884,18.18646526241597,18.38646526241597,18.4885809167631,18.4885809167631,18.4885809167631,18.590696571110232,18.59269657111023,18.69481222545736,18.69481222545736,18.69481222545736,18.796927879804493,18.99692787980449,19.09904353415162,19.09904353415162,19.09904353415162,19.20115918849875,19.20315918849875,19.305274842845876,19.305274842845876,19.305274842845876,19.40739049719301,19.60739049719301,19.709506151540136,19.709506151540136,19.709506151540136,19.811621805887267,19.813621805887266,19.915737460234396,19.915737460234396,19.915737460234396,20.017853114581527,20.217853114581526,20.319968768928653,20.319968768928653,20.319968768928653,20.422084423275788,20.424084423275783,20.526200077622914,20.526200077622914,20.526200077622914,20.628315731970044,20.828315731970044,20.93043138631717,20.93043138631717,20.93043138631717,21.032547040664305,21.034547040664304,21.13666269501143,21.13666269501143,21.13666269501143,21.23877834935856,21.43877834935856,21.54089400370569,21.54089400370569,21.54089400370569,21.643009658052822,21.64500965805282,21.747125312399948,21.747125312399948,21.747125312399948,21.849240966747082,22.049240966747078,22.15135662109421,22.15135662109421,22.15135662109421,22.25347227544134,22.25547227544134,22.357587929788465,22.357587929788465,22.357587929788465,22.4597035841356,22.6597035841356,22.761819238482726,22.761819238482726,22.761819238482726,22.863934892829857,22.865934892829856,22.968050547176986,22.968050547176986,22.968050547176986,23.070166201524117,23.270166201524116,23.372281855871243,23.372281855871243,23.372281855871243,23.474397510218374,23.476397510218373,23.578513164565504,23.578513164565504,23.578513164565504,23.680628818912634,23.880628818912633,23.98274447325976,23.98274447325976,23.98274447325976,24.084860127606895,24.086860127606894,24.18897578195402,24.18897578195402,24.18897578195402,24.29109143630115,24.49109143630115,24.593207090648278,24.593207090648278,24.593207090648278,24.695322744995412,24.69732274499541,24.799438399342538,24.799438399342538,24.799438399342538,24.90155405368967,25.101554053689668,25.2036697080368,25.2036697080368,25.2036697080368,25.30578536238393,25.307785362383928,25.409901016731055,25.409901016731055,25.409901016731055,25.51201667107819,25.712016671078185,25.814132325425316,25.814132325425316,25.814132325425316,25.916247979772447,25.918247979772445,26.020363634119573,26.020363634119573,26.020363634119573,26.122479288466707,26.322479288466706,26.424594942813833,26.424594942813833,26.424594942813833,26.526710597160964,26.528710597160963,26.630826251508093,26.630826251508093,26.630826251508093,26.732941905855224,26.932941905855223,27.03505756020235,27.03505756020235,27.03505756020235,27.137173214549485,27.13917321454948,27.24128886889661,27.24128886889661,27.24128886889661,27.34340452324374,27.54340452324374,27.645520177590868,27.645520177590868,27.645520177590868,27.747635831938002,27.749635831938,27.851751486285128,27.851751486285128,27.851751486285128,27.95386714063226,28.153867140632258,28.25598279497939,28.25598279497939,28.25598279497939,28.35809844932652,28.360098449326518,28.462214103673645,28.462214103673645,28.462214103673645,28.564329758020776,28.764329758020775,28.866445412367906,28.866445412367906,28.866445412367906,28.968561066715036,28.970561066715035,29.072676721062162,29.072676721062162,29.072676721062162,29.174792375409297,29.374792375409296,29.476908029756423,29.476908029756423,29.476908029756423,29.579023684103554,29.581023684103553,29.68313933845068,29.68313933845068,29.68313933845068,29.785254992797814,29.985254992797813,30.08737064714494,30.08737064714494,30.08737064714494,30.18948630149207,30.19148630149207,30.2936019558392,30.2936019558392,30.2936019558392,30.39571761018633,30.59571761018633,30.697833264533458,30.697833264533458,30.697833264533458,30.79994891888059,30.801948918880587,30.904064573227718,30.904064573227718,30.904064573227718,31.00618022757485,31.206180227574848,31.30829588192198,31.30829588192198,31.30829588192198,31.410411536269113,31.412411536269108,31.51452719061624,31.51452719061624,31.51452719061624,31.61664284496337,31.81664284496337,31.918758499310503,31.918758499310503,31.918758499310503,32.02087415365763,32.022874153657625,32.12498980800476,32.12498980800476,32.12498980800476,32.22710546235189,32.42710546235189,32.52922111669902,32.52922111669902,32.52922111669902,32.63133677104616,32.633336771046146,32.735452425393284,32.735452425393284,32.735452425393284,32.837568079740414,33.03756807974041,33.13968373408754,33.13968373408754,33.13968373408754,33.24179938843468,33.243799388434674,33.345915042781805,33.345915042781805,33.345915042781805,33.448030697128935,33.64803069712893,33.75014635147607,33.75014635147607,33.75014635147607,33.8522620058232,33.854262005823195,33.956377660170325,33.956377660170325,33.956377660170325,34.058493314517456,34.25849331451745,34.36060896886459,34.36060896886458,34.36060896886458,34.46272462321171,34.46472462321171,34.56684027755884,34.566840277558846,34.566840277558846,34.66895593190598,34.86895593190597,34.97107158625311,34.9710715862531,34.9710715862531,35.073187240600234,35.07518724060023,35.17730289494736,35.17730289494737,35.17730289494737,35.2794185492945,35.4794185492945,35.58153420364163,35.581534203641624,35.581534203641624,35.683649857988755,35.68564985798875,35.78776551233588,35.78776551233589,35.78776551233589,35.88988116668302,36.08988116668302,36.19199682103015,36.191996821030145,36.191996821030145,36.294112475377275,36.29611247537727,36.3982281297244,36.39822812972441,36.39822812972441,36.50034378407154,36.70034378407154,36.80245943841867,36.802459438418666,36.802459438418666,36.904575092765796,36.90657509276579,37.00869074711292,37.00869074711293,37.00869074711293,37.11080640146006,37.31080640146006,37.41292205580719,37.412922055807186,37.412922055807186,37.51503771015432,37.51703771015431,37.61915336450144,37.61915336450145,37.61915336450145,37.72126901884858,37.921269018848584,38.023384673195714,38.02338467319571,38.02338467319571,38.12550032754284,38.12750032754283,38.229615981889964,38.22961598188997,38.22961598188997,38.33173163623711,38.531731636237105,38.633847290584235,38.63384729058423,38.63384729058423,38.73596294493136,38.737962944931354,38.840078599278485,38.84007859927849,38.84007859927849,38.94219425362563,39.142194253625625,39.244309907972756,39.24430990797275,39.24430990797275,39.34642556231988,39.348425562319875,39.45054121666701,39.45054121666701,39.45054121666701,39.55265687101414,39.75265687101414,39.85477252536127,39.85477252536127,39.85477252536127,39.9568881797084,39.958888179708396,40.06100383405553,40.06100383405553,40.06100383405553,40.163119488402664,40.36311948840266,40.46523514274979,40.46523514274979,40.46523514274979,40.56735079709693,40.569350797096924,40.671466451444054,40.671466451444054,40.671466451444054,40.773582105791185,40.97358210579118,41.07569776013831,41.07569776013831,41.07569776013831,41.17781341448545,41.179813414485444,41.281929068832575,41.281929068832575,41.281929068832575,41.384044723179706,41.5840447231797,41.68616037752684,41.68616037752684,41.68616037752684,41.78827603187397,41.790276031873965,41.892391686221096,41.892391686221096,41.892391686221096,41.99450734056823,42.19450734056822,42.29662299491536,42.29662299491536,42.29662299491536,42.39873864926249,42.400738649262486,42.50285430360962,42.50285430360962,42.50285430360962,42.60496995795675,42.80496995795675,42.90708561230388,42.90708561230388,42.90708561230388,43.00920126665101,43.01120126665101,43.11331692099814,43.11331692099814,43.11331692099814,43.21543257534527,43.41543257534527,43.5175482296924,43.5175482296924,43.5175482296924,43.61966388403953,43.62166388403953,43.72377953838666,43.72377953838666,43.72377953838666,43.82589519273379,44.02589519273379,44.12801084708092,44.12801084708092,44.12801084708092,44.23012650142805,44.23212650142805,44.33424215577518,44.33424215577518,44.33424215577518,44.43635781012231,44.63635781012231,44.73847346446944,44.73847346446944,44.73847346446944,44.840589118816574,44.84258911881657,44.9447047731637,44.9447047731637,44.9447047731637,45.04682042751083,45.24682042751083,45.348936081857964,45.348936081857964,45.348936081857964,45.451051736205095,45.45305173620509,45.55516739055222,45.55516739055222,45.55516739055222,45.65728304489936,45.857283044899354,45.959398699246485,45.959398699246485,45.959398699246485,46.061514353593616,46.06351435359361,46.16563000794074,46.16563000794074,46.16563000794074,46.26774566228788,46.467745662287875,46.569861316635006,46.569861316635006,46.569861316635006,46.671976970982136,46.67397697098213,46.77609262532926,46.77609262532926,46.77609262532926,46.8782082796764,47.078208279676396,47.18032393402353,47.18032393402353,47.18032393402353,47.28243958837066,47.28443958837065,47.38655524271779,47.38655524271779,47.38655524271779,47.48867089706492,47.68867089706492,47.79078655141205,47.79078655141204,47.79078655141204,47.89290220575918,47.894902205759166,47.997017860106304,47.99701786010631,47.99701786010631,48.09913351445344,48.29913351445344,48.40124916880057,48.40124916880056,48.40124916880056,48.5033648231477,48.505364823147694,48.607480477494825,48.607480477494825,48.607480477494825,48.709596131841955,48.90959613184195,49.01171178618909,49.01171178618909,49.01171178618909,49.11382744053622,49.115827440536215,49.217943094883346,49.21794309488334,49.21794309488334,49.32005874923047,49.520058749230465,49.6221744035776,49.6221744035776,49.6221744035776,49.72429005792473,49.72629005792473,49.82840571227186,49.82840571227186,49.82840571227186,49.93052136661899,50.13052136661899,50.23263702096612,50.232637020966116,50.232637020966116,50.33475267531325,50.33675267531324,50.43886832966037,50.43886832966038,50.43886832966038,50.54098398400751,50.740983984007514,50.843099638354644,50.84309963835464,50.84309963835464,50.94521529270177,50.94721529270176,51.049330947048894,51.049330947048894,51.049330947048894,51.151446601396025,51.35144660139603,51.45356225574316,51.45356225574316,51.45356225574316,51.55567791009029,51.557677910090284,51.659793564437415,51.65979356443741,51.65979356443741,51.76190921878454,51.96190921878454,52.06402487313167,52.06402487313167,52.06402487313167,52.1661405274788,52.1681405274788,52.27025618182593,52.27025618182593,52.27025618182593,52.37237183617306,52.57237183617306,52.67448749052019,52.674487490520185,52.674487490520185,52.776603144867316,52.77860314486731,52.88071879921444,52.88071879921445,52.88071879921445,52.98283445356159,53.18283445356158,53.28495010790871,53.284950107908706,53.284950107908706,53.38706576225584,53.38906576225583,53.49118141660296,53.49118141660296,53.49118141660296,53.5932970709501,53.793297070950096,53.89541272529723,53.89541272529723,53.89541272529723,53.99752837964436,53.99952837964435,54.10164403399149,54.101644033991484,54.101644033991484,54.203759688338614,54.40375968833861,54.50587534268574,54.50587534268574,54.50587534268574,54.60799099703288,54.60999099703287,54.712106651380005,54.712106651380005,54.712106651380005,54.814222305727135,55.01422230572713,55.11633796007426,55.116337960074254,55.116337960074254,55.21845361442139,55.22045361442139,55.32256926876852,55.322569268768525,55.322569268768525,55.424684923115656,55.62468492311565,55.72680057746278,55.72680057746278,55.72680057746278,55.82891623180991,55.83091623180991,55.93303188615704,55.93303188615704,55.93303188615704,56.03514754050417,56.235147540504165,56.3372631948513,56.3372631948513,56.3372631948513,56.439378849198434,56.44137884919843,56.54349450354556,56.54349450354555,56.54349450354555,56.64561015789268,56.845610157892686,56.94772581223982,56.94772581223982,56.94772581223982,57.04984146658695,57.05184146658694,57.15395712093407,57.15395712093407,57.15395712093407,57.256072775281204,57.45607277528121,57.55818842962834,57.55818842962833,57.55818842962833,57.66030408397546,57.66230408397546,57.76441973832259,57.764419738322594,57.764419738322594,57.866535392669725,58.06653539266973,58.16865104701686,58.16865104701685,58.16865104701685,58.27076670136398,58.27276670136398,58.37488235571111,58.37488235571111,58.37488235571111,58.47699801005824,58.67699801005824,58.77911366440537,58.77911366440537,58.77911366440537,58.8812293187525,58.8832293187525,58.98534497309963,58.98534497309962,58.98534497309962,59.08746062744675,59.287460627446755,59.389576281793886,59.389576281793886,59.389576281793886,59.49169193614102,59.49369193614101,59.59580759048814,59.59580759048814,59.59580759048814,59.69792324483528,59.897923244835276,60.00003889918241,60.0000388991824,60.0000388991824,60.10215455352953,60.104154553529526,60.206270207876656,60.20627020787666,60.20627020787666,60.3083858622238,60.5083858622238,60.61050151657093,60.61050151657092,60.61050151657092,60.71261717091805,60.714617170918046,60.816732825265184,60.816732825265184,60.816732825265184,60.918848479612315,61.11884847961231,61.22096413395944,61.22096413395944,61.22096413395944,61.32307978830657,61.32507978830657,61.427195442653705,61.4271954426537,61.4271954426537,61.52931109700083,61.729311097000824,61.831426751347955,61.831426751347955,61.831426751347955,61.93354240569509,61.93554240569509,62.03765806004222,62.03765806004222,62.03765806004222,62.13977371438935,62.339773714389345,62.441889368736476,62.441889368736476,62.441889368736476,62.544005023083606,62.744005023083595,62.846120677430726]},{"y":[null,null,null,null,null,null,0.0,-16.900093205663477,-16.900093205663477,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,-16.900093205663477,-16.900093205663477,0.0],"type":"scatter","name":"Gy","hovertemplate":"(%{x:.4f} ms, %{y:.2f} mT/m)","x":[0.0,0.0,0.0,0.5871650124959988,0.5871650124959988,0.5871650124959988,0.5871650124959988,0.6892806668431292,0.8892806668431291,0.9913963211902593,0.9913963211902593,0.9913963211902593,1.0935119755373894,1.2935119755373896,1.39562762988452,1.39562762988452,1.39562762988452,1.49774328423165,1.49974328423165,1.6018589385787805,1.6018589385787805,1.6018589385787805,1.7039745929259107,1.9039745929259106,2.006090247273041,2.006090247273041,2.006090247273041,2.108205901620171,2.110205901620171,2.2123215559673013,2.2123215559673013,2.2123215559673013,2.3144372103144315,2.5144372103144317,2.616552864661562,2.616552864661562,2.616552864661562,2.718668519008692,2.7206685190086923,2.8227841733558225,2.8227841733558225,2.8227841733558225,2.9248998277029523,3.1248998277029525,3.2270154820500827,3.2270154820500827,3.2270154820500827,3.329131136397213,3.331131136397213,3.4332467907443434,3.4332467907443434,3.4332467907443434,3.5353624450914736,3.7353624450914737,3.8374780994386035,3.8374780994386035,3.8374780994386035,3.939593753785734,3.9415937537857335,4.043709408132864,4.043709408132864,4.043709408132864,4.145825062479994,4.345825062479994,4.447940716827125,4.447940716827125,4.447940716827125,4.5500563711742545,4.552056371174255,4.654172025521385,4.654172025521385,4.654172025521385,4.756287679868516,4.956287679868516,5.058403334215646,5.058403334215646,5.058403334215646,5.160518988562776,5.162518988562776,5.264634642909907,5.264634642909907,5.264634642909907,5.3667502972570365,5.5667502972570375,5.668865951604167,5.668865951604167,5.668865951604167,5.770981605951297,5.772981605951298,5.8750972602984275,5.8750972602984275,5.8750972602984275,5.977212914645558,6.177212914645558,6.279328568992689,6.279328568992689,6.279328568992689,6.381444223339819,6.383444223339819,6.485559877686949,6.485559877686949,6.485559877686949,6.58767553203408,6.78767553203408,6.88979118638121,6.88979118638121,6.88979118638121,6.9919068407283405,6.99390684072834,7.096022495075471,7.096022495075471,7.096022495075471,7.198138149422601,7.398138149422602,7.5002538037697315,7.5002538037697315,7.5002538037697315,7.602369458116861,7.604369458116862,7.706485112463992,7.706485112463992,7.706485112463992,7.808600766811122,8.008600766811123,8.110716421158253,8.110716421158253,8.110716421158253,8.212832075505382,8.214832075505383,8.316947729852513,8.316947729852513,8.316947729852513,8.419063384199644,8.619063384199643,8.721179038546774,8.721179038546774,8.721179038546774,8.823294692893905,8.825294692893905,8.927410347241034,8.927410347241034,8.927410347241034,9.029526001588165,9.229526001588166,9.331641655935295,9.331641655935295,9.331641655935295,9.433757310282425,9.435757310282426,9.537872964629557,9.537872964629557,9.537872964629557,9.639988618976686,9.839988618976687,9.942104273323817,9.942104273323817,9.942104273323817,10.044219927670946,10.046219927670947,10.148335582018078,10.148335582018078,10.148335582018078,10.250451236365208,10.450451236365208,10.552566890712338,10.552566890712338,10.552566890712338,10.654682545059469,10.65668254505947,10.758798199406598,10.758798199406598,10.758798199406598,10.860913853753729,11.06091385375373,11.163029508100859,11.163029508100859,11.163029508100859,11.26514516244799,11.26714516244799,11.369260816795121,11.369260816795121,11.369260816795121,11.47137647114225,11.671376471142251,11.773492125489382,11.773492125489382,11.773492125489382,11.87560777983651,11.877607779836511,11.979723434183642,11.979723434183642,11.979723434183642,12.081839088530772,12.281839088530772,12.383954742877902,12.383954742877902,12.383954742877902,12.486070397225033,12.488070397225032,12.590186051572163,12.590186051572163,12.590186051572163,12.692301705919293,12.892301705919294,12.994417360266423,12.994417360266423,12.994417360266423,13.096533014613554,13.098533014613555,13.200648668960683,13.200648668960683,13.200648668960683,13.302764323307814,13.502764323307815,13.604879977654946,13.604879977654946,13.604879977654946,13.706995632002075,13.708995632002075,13.811111286349206,13.811111286349206,13.811111286349206,13.913226940696337,14.113226940696336,14.215342595043467,14.215342595043467,14.215342595043467,14.317458249390597,14.319458249390596,14.421573903737727,14.421573903737727,14.421573903737727,14.523689558084858,14.723689558084859,14.825805212431987,14.825805212431987,14.825805212431987,14.927920866779118,14.929920866779119,15.032036521126248,15.032036521126248,15.032036521126248,15.134152175473378,15.33415217547338,15.43626782982051,15.43626782982051,15.43626782982051,15.538383484167639,15.54038348416764,15.64249913851477,15.64249913851477,15.64249913851477,15.744614792861901,15.9446147928619,16.04673044720903,16.04673044720903,16.04673044720903,16.14884610155616,16.15084610155616,16.25296175590329,16.25296175590329,16.25296175590329,16.35507741025042,16.55507741025042,16.657193064597546,16.657193064597546,16.657193064597546,16.759308718944677,16.761308718944676,16.863424373291807,16.863424373291807,16.863424373291807,16.965540027638937,17.165540027638936,17.267655681986064,17.267655681986064,17.267655681986064,17.369771336333198,17.371771336333197,17.473886990680324,17.473886990680324,17.473886990680324,17.576002645027454,17.776002645027454,17.87811829937458,17.87811829937458,17.87811829937458,17.980233953721715,17.982233953721714,18.08434960806884,18.08434960806884,18.08434960806884,18.18646526241597,18.38646526241597,18.4885809167631,18.4885809167631,18.4885809167631,18.590696571110232,18.59269657111023,18.69481222545736,18.69481222545736,18.69481222545736,18.796927879804493,18.99692787980449,19.09904353415162,19.09904353415162,19.09904353415162,19.20115918849875,19.20315918849875,19.305274842845876,19.305274842845876,19.305274842845876,19.40739049719301,19.60739049719301,19.709506151540136,19.709506151540136,19.709506151540136,19.811621805887267,19.813621805887266,19.915737460234396,19.915737460234396,19.915737460234396,20.017853114581527,20.217853114581526,20.319968768928653,20.319968768928653,20.319968768928653,20.422084423275788,20.424084423275783,20.526200077622914,20.526200077622914,20.526200077622914,20.628315731970044,20.828315731970044,20.93043138631717,20.93043138631717,20.93043138631717,21.032547040664305,21.034547040664304,21.13666269501143,21.13666269501143,21.13666269501143,21.23877834935856,21.43877834935856,21.54089400370569,21.54089400370569,21.54089400370569,21.643009658052822,21.64500965805282,21.747125312399948,21.747125312399948,21.747125312399948,21.849240966747082,22.049240966747078,22.15135662109421,22.15135662109421,22.15135662109421,22.25347227544134,22.25547227544134,22.357587929788465,22.357587929788465,22.357587929788465,22.4597035841356,22.6597035841356,22.761819238482726,22.761819238482726,22.761819238482726,22.863934892829857,22.865934892829856,22.968050547176986,22.968050547176986,22.968050547176986,23.070166201524117,23.270166201524116,23.372281855871243,23.372281855871243,23.372281855871243,23.474397510218374,23.476397510218373,23.578513164565504,23.578513164565504,23.578513164565504,23.680628818912634,23.880628818912633,23.98274447325976,23.98274447325976,23.98274447325976,24.084860127606895,24.086860127606894,24.18897578195402,24.18897578195402,24.18897578195402,24.29109143630115,24.49109143630115,24.593207090648278,24.593207090648278,24.593207090648278,24.695322744995412,24.69732274499541,24.799438399342538,24.799438399342538,24.799438399342538,24.90155405368967,25.101554053689668,25.2036697080368,25.2036697080368,25.2036697080368,25.30578536238393,25.307785362383928,25.409901016731055,25.409901016731055,25.409901016731055,25.51201667107819,25.712016671078185,25.814132325425316,25.814132325425316,25.814132325425316,25.916247979772447,25.918247979772445,26.020363634119573,26.020363634119573,26.020363634119573,26.122479288466707,26.322479288466706,26.424594942813833,26.424594942813833,26.424594942813833,26.526710597160964,26.528710597160963,26.630826251508093,26.630826251508093,26.630826251508093,26.732941905855224,26.932941905855223,27.03505756020235,27.03505756020235,27.03505756020235,27.137173214549485,27.13917321454948,27.24128886889661,27.24128886889661,27.24128886889661,27.34340452324374,27.54340452324374,27.645520177590868,27.645520177590868,27.645520177590868,27.747635831938002,27.749635831938,27.851751486285128,27.851751486285128,27.851751486285128,27.95386714063226,28.153867140632258,28.25598279497939,28.25598279497939,28.25598279497939,28.35809844932652,28.360098449326518,28.462214103673645,28.462214103673645,28.462214103673645,28.564329758020776,28.764329758020775,28.866445412367906,28.866445412367906,28.866445412367906,28.968561066715036,28.970561066715035,29.072676721062162,29.072676721062162,29.072676721062162,29.174792375409297,29.374792375409296,29.476908029756423,29.476908029756423,29.476908029756423,29.579023684103554,29.581023684103553,29.68313933845068,29.68313933845068,29.68313933845068,29.785254992797814,29.985254992797813,30.08737064714494,30.08737064714494,30.08737064714494,30.18948630149207,30.19148630149207,30.2936019558392,30.2936019558392,30.2936019558392,30.39571761018633,30.59571761018633,30.697833264533458,30.697833264533458,30.697833264533458,30.79994891888059,30.801948918880587,30.904064573227718,30.904064573227718,30.904064573227718,31.00618022757485,31.206180227574848,31.30829588192198,31.30829588192198,31.30829588192198,31.410411536269113,31.412411536269108,31.51452719061624,31.51452719061624,31.51452719061624,31.61664284496337,31.81664284496337,31.918758499310503,31.918758499310503,31.918758499310503,32.02087415365763,32.022874153657625,32.12498980800476,32.12498980800476,32.12498980800476,32.22710546235189,32.42710546235189,32.52922111669902,32.52922111669902,32.52922111669902,32.63133677104616,32.633336771046146,32.735452425393284,32.735452425393284,32.735452425393284,32.837568079740414,33.03756807974041,33.13968373408754,33.13968373408754,33.13968373408754,33.24179938843468,33.243799388434674,33.345915042781805,33.345915042781805,33.345915042781805,33.448030697128935,33.64803069712893,33.75014635147607,33.75014635147607,33.75014635147607,33.8522620058232,33.854262005823195,33.956377660170325,33.956377660170325,33.956377660170325,34.058493314517456,34.25849331451745,34.36060896886459,34.36060896886458,34.36060896886458,34.46272462321171,34.46472462321171,34.56684027755884,34.566840277558846,34.566840277558846,34.66895593190598,34.86895593190597,34.97107158625311,34.9710715862531,34.9710715862531,35.073187240600234,35.07518724060023,35.17730289494736,35.17730289494737,35.17730289494737,35.2794185492945,35.4794185492945,35.58153420364163,35.581534203641624,35.581534203641624,35.683649857988755,35.68564985798875,35.78776551233588,35.78776551233589,35.78776551233589,35.88988116668302,36.08988116668302,36.19199682103015,36.191996821030145,36.191996821030145,36.294112475377275,36.29611247537727,36.3982281297244,36.39822812972441,36.39822812972441,36.50034378407154,36.70034378407154,36.80245943841867,36.802459438418666,36.802459438418666,36.904575092765796,36.90657509276579,37.00869074711292,37.00869074711293,37.00869074711293,37.11080640146006,37.31080640146006,37.41292205580719,37.412922055807186,37.412922055807186,37.51503771015432,37.51703771015431,37.61915336450144,37.61915336450145,37.61915336450145,37.72126901884858,37.921269018848584,38.023384673195714,38.02338467319571,38.02338467319571,38.12550032754284,38.12750032754283,38.229615981889964,38.22961598188997,38.22961598188997,38.33173163623711,38.531731636237105,38.633847290584235,38.63384729058423,38.63384729058423,38.73596294493136,38.737962944931354,38.840078599278485,38.84007859927849,38.84007859927849,38.94219425362563,39.142194253625625,39.244309907972756,39.24430990797275,39.24430990797275,39.34642556231988,39.348425562319875,39.45054121666701,39.45054121666701,39.45054121666701,39.55265687101414,39.75265687101414,39.85477252536127,39.85477252536127,39.85477252536127,39.9568881797084,39.958888179708396,40.06100383405553,40.06100383405553,40.06100383405553,40.163119488402664,40.36311948840266,40.46523514274979,40.46523514274979,40.46523514274979,40.56735079709693,40.569350797096924,40.671466451444054,40.671466451444054,40.671466451444054,40.773582105791185,40.97358210579118,41.07569776013831,41.07569776013831,41.07569776013831,41.17781341448545,41.179813414485444,41.281929068832575,41.281929068832575,41.281929068832575,41.384044723179706,41.5840447231797,41.68616037752684,41.68616037752684,41.68616037752684,41.78827603187397,41.790276031873965,41.892391686221096,41.892391686221096,41.892391686221096,41.99450734056823,42.19450734056822,42.29662299491536,42.29662299491536,42.29662299491536,42.39873864926249,42.400738649262486,42.50285430360962,42.50285430360962,42.50285430360962,42.60496995795675,42.80496995795675,42.90708561230388,42.90708561230388,42.90708561230388,43.00920126665101,43.01120126665101,43.11331692099814,43.11331692099814,43.11331692099814,43.21543257534527,43.41543257534527,43.5175482296924,43.5175482296924,43.5175482296924,43.61966388403953,43.62166388403953,43.72377953838666,43.72377953838666,43.72377953838666,43.82589519273379,44.02589519273379,44.12801084708092,44.12801084708092,44.12801084708092,44.23012650142805,44.23212650142805,44.33424215577518,44.33424215577518,44.33424215577518,44.43635781012231,44.63635781012231,44.73847346446944,44.73847346446944,44.73847346446944,44.840589118816574,44.84258911881657,44.9447047731637,44.9447047731637,44.9447047731637,45.04682042751083,45.24682042751083,45.348936081857964,45.348936081857964,45.348936081857964,45.451051736205095,45.45305173620509,45.55516739055222,45.55516739055222,45.55516739055222,45.65728304489936,45.857283044899354,45.959398699246485,45.959398699246485,45.959398699246485,46.061514353593616,46.06351435359361,46.16563000794074,46.16563000794074,46.16563000794074,46.26774566228788,46.467745662287875,46.569861316635006,46.569861316635006,46.569861316635006,46.671976970982136,46.67397697098213,46.77609262532926,46.77609262532926,46.77609262532926,46.8782082796764,47.078208279676396,47.18032393402353,47.18032393402353,47.18032393402353,47.28243958837066,47.28443958837065,47.38655524271779,47.38655524271779,47.38655524271779,47.48867089706492,47.68867089706492,47.79078655141205,47.79078655141204,47.79078655141204,47.89290220575918,47.894902205759166,47.997017860106304,47.99701786010631,47.99701786010631,48.09913351445344,48.29913351445344,48.40124916880057,48.40124916880056,48.40124916880056,48.5033648231477,48.505364823147694,48.607480477494825,48.607480477494825,48.607480477494825,48.709596131841955,48.90959613184195,49.01171178618909,49.01171178618909,49.01171178618909,49.11382744053622,49.115827440536215,49.217943094883346,49.21794309488334,49.21794309488334,49.32005874923047,49.520058749230465,49.6221744035776,49.6221744035776,49.6221744035776,49.72429005792473,49.72629005792473,49.82840571227186,49.82840571227186,49.82840571227186,49.93052136661899,50.13052136661899,50.23263702096612,50.232637020966116,50.232637020966116,50.33475267531325,50.33675267531324,50.43886832966037,50.43886832966038,50.43886832966038,50.54098398400751,50.740983984007514,50.843099638354644,50.84309963835464,50.84309963835464,50.94521529270177,50.94721529270176,51.049330947048894,51.049330947048894,51.049330947048894,51.151446601396025,51.35144660139603,51.45356225574316,51.45356225574316,51.45356225574316,51.55567791009029,51.557677910090284,51.659793564437415,51.65979356443741,51.65979356443741,51.76190921878454,51.96190921878454,52.06402487313167,52.06402487313167,52.06402487313167,52.1661405274788,52.1681405274788,52.27025618182593,52.27025618182593,52.27025618182593,52.37237183617306,52.57237183617306,52.67448749052019,52.674487490520185,52.674487490520185,52.776603144867316,52.77860314486731,52.88071879921444,52.88071879921445,52.88071879921445,52.98283445356159,53.18283445356158,53.28495010790871,53.284950107908706,53.284950107908706,53.38706576225584,53.38906576225583,53.49118141660296,53.49118141660296,53.49118141660296,53.5932970709501,53.793297070950096,53.89541272529723,53.89541272529723,53.89541272529723,53.99752837964436,53.99952837964435,54.10164403399149,54.101644033991484,54.101644033991484,54.203759688338614,54.40375968833861,54.50587534268574,54.50587534268574,54.50587534268574,54.60799099703288,54.60999099703287,54.712106651380005,54.712106651380005,54.712106651380005,54.814222305727135,55.01422230572713,55.11633796007426,55.116337960074254,55.116337960074254,55.21845361442139,55.22045361442139,55.32256926876852,55.322569268768525,55.322569268768525,55.424684923115656,55.62468492311565,55.72680057746278,55.72680057746278,55.72680057746278,55.82891623180991,55.83091623180991,55.93303188615704,55.93303188615704,55.93303188615704,56.03514754050417,56.235147540504165,56.3372631948513,56.3372631948513,56.3372631948513,56.439378849198434,56.44137884919843,56.54349450354556,56.54349450354555,56.54349450354555,56.64561015789268,56.845610157892686,56.94772581223982,56.94772581223982,56.94772581223982,57.04984146658695,57.05184146658694,57.15395712093407,57.15395712093407,57.15395712093407,57.256072775281204,57.45607277528121,57.55818842962834,57.55818842962833,57.55818842962833,57.66030408397546,57.66230408397546,57.76441973832259,57.764419738322594,57.764419738322594,57.866535392669725,58.06653539266973,58.16865104701686,58.16865104701685,58.16865104701685,58.27076670136398,58.27276670136398,58.37488235571111,58.37488235571111,58.37488235571111,58.47699801005824,58.67699801005824,58.77911366440537,58.77911366440537,58.77911366440537,58.8812293187525,58.8832293187525,58.98534497309963,58.98534497309962,58.98534497309962,59.08746062744675,59.287460627446755,59.389576281793886,59.389576281793886,59.389576281793886,59.49169193614102,59.49369193614101,59.59580759048814,59.59580759048814,59.59580759048814,59.69792324483528,59.897923244835276,60.00003889918241,60.0000388991824,60.0000388991824,60.10215455352953,60.104154553529526,60.206270207876656,60.20627020787666,60.20627020787666,60.3083858622238,60.5083858622238,60.61050151657093,60.61050151657092,60.61050151657092,60.71261717091805,60.714617170918046,60.816732825265184,60.816732825265184,60.816732825265184,60.918848479612315,61.11884847961231,61.22096413395944,61.22096413395944,61.22096413395944,61.32307978830657,61.32507978830657,61.427195442653705,61.4271954426537,61.4271954426537,61.52931109700083,61.729311097000824,61.831426751347955,61.831426751347955,61.831426751347955,61.93354240569509,61.93554240569509,62.03765806004222,62.03765806004222,62.03765806004222,62.13977371438935,62.339773714389345,62.441889368736476,62.441889368736476,62.441889368736476,62.544005023083606,62.744005023083595,62.846120677430726]},{"y":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"type":"scatter","name":"Gz","hovertemplate":"(%{x:.4f} ms, %{y:.2f} mT/m)","x":[0.0,0.0,0.0,0.5871650124959988,0.5871650124959988,0.5871650124959988,0.5871650124959988,0.5871650124959988,0.5871650124959988,0.5871650124959988,0.9913963211902593,0.9913963211902593,0.9913963211902593,0.9913963211902593,0.9913963211902593,1.39562762988452,1.39562762988452,1.39562762988452,1.39562762988452,1.39562762988452,1.6018589385787805,1.6018589385787805,1.6018589385787805,1.6018589385787805,1.6018589385787805,2.006090247273041,2.006090247273041,2.006090247273041,2.006090247273041,2.006090247273041,2.2123215559673013,2.2123215559673013,2.2123215559673013,2.2123215559673013,2.2123215559673013,2.616552864661562,2.616552864661562,2.616552864661562,2.616552864661562,2.616552864661562,2.8227841733558225,2.8227841733558225,2.8227841733558225,2.8227841733558225,2.8227841733558225,3.2270154820500827,3.2270154820500827,3.2270154820500827,3.2270154820500827,3.2270154820500827,3.4332467907443434,3.4332467907443434,3.4332467907443434,3.4332467907443434,3.4332467907443434,3.8374780994386035,3.8374780994386035,3.8374780994386035,3.8374780994386035,3.8374780994386035,4.043709408132864,4.043709408132864,4.043709408132864,4.043709408132864,4.043709408132864,4.447940716827125,4.447940716827125,4.447940716827125,4.447940716827125,4.447940716827125,4.654172025521385,4.654172025521385,4.654172025521385,4.654172025521385,4.654172025521385,5.058403334215646,5.058403334215646,5.058403334215646,5.058403334215646,5.058403334215646,5.264634642909907,5.264634642909907,5.264634642909907,5.264634642909907,5.264634642909907,5.668865951604167,5.668865951604167,5.668865951604167,5.668865951604167,5.668865951604167,5.8750972602984275,5.8750972602984275,5.8750972602984275,5.8750972602984275,5.8750972602984275,6.279328568992689,6.279328568992689,6.279328568992689,6.279328568992689,6.279328568992689,6.485559877686949,6.485559877686949,6.485559877686949,6.485559877686949,6.485559877686949,6.88979118638121,6.88979118638121,6.88979118638121,6.88979118638121,6.88979118638121,7.096022495075471,7.096022495075471,7.096022495075471,7.096022495075471,7.096022495075471,7.5002538037697315,7.5002538037697315,7.5002538037697315,7.5002538037697315,7.5002538037697315,7.706485112463992,7.706485112463992,7.706485112463992,7.706485112463992,7.706485112463992,8.110716421158253,8.110716421158253,8.110716421158253,8.110716421158253,8.110716421158253,8.316947729852513,8.316947729852513,8.316947729852513,8.316947729852513,8.316947729852513,8.721179038546774,8.721179038546774,8.721179038546774,8.721179038546774,8.721179038546774,8.927410347241034,8.927410347241034,8.927410347241034,8.927410347241034,8.927410347241034,9.331641655935295,9.331641655935295,9.331641655935295,9.331641655935295,9.331641655935295,9.537872964629557,9.537872964629557,9.537872964629557,9.537872964629557,9.537872964629557,9.942104273323817,9.942104273323817,9.942104273323817,9.942104273323817,9.942104273323817,10.148335582018078,10.148335582018078,10.148335582018078,10.148335582018078,10.148335582018078,10.552566890712338,10.552566890712338,10.552566890712338,10.552566890712338,10.552566890712338,10.758798199406598,10.758798199406598,10.758798199406598,10.758798199406598,10.758798199406598,11.163029508100859,11.163029508100859,11.163029508100859,11.163029508100859,11.163029508100859,11.369260816795121,11.369260816795121,11.369260816795121,11.369260816795121,11.369260816795121,11.773492125489382,11.773492125489382,11.773492125489382,11.773492125489382,11.773492125489382,11.979723434183642,11.979723434183642,11.979723434183642,11.979723434183642,11.979723434183642,12.383954742877902,12.383954742877902,12.383954742877902,12.383954742877902,12.383954742877902,12.590186051572163,12.590186051572163,12.590186051572163,12.590186051572163,12.590186051572163,12.994417360266423,12.994417360266423,12.994417360266423,12.994417360266423,12.994417360266423,13.200648668960683,13.200648668960683,13.200648668960683,13.200648668960683,13.200648668960683,13.604879977654946,13.604879977654946,13.604879977654946,13.604879977654946,13.604879977654946,13.811111286349206,13.811111286349206,13.811111286349206,13.811111286349206,13.811111286349206,14.215342595043467,14.215342595043467,14.215342595043467,14.215342595043467,14.215342595043467,14.421573903737727,14.421573903737727,14.421573903737727,14.421573903737727,14.421573903737727,14.825805212431987,14.825805212431987,14.825805212431987,14.825805212431987,14.825805212431987,15.032036521126248,15.032036521126248,15.032036521126248,15.032036521126248,15.032036521126248,15.43626782982051,15.43626782982051,15.43626782982051,15.43626782982051,15.43626782982051,15.64249913851477,15.64249913851477,15.64249913851477,15.64249913851477,15.64249913851477,16.04673044720903,16.04673044720903,16.04673044720903,16.04673044720903,16.04673044720903,16.25296175590329,16.25296175590329,16.25296175590329,16.25296175590329,16.25296175590329,16.657193064597546,16.657193064597546,16.657193064597546,16.657193064597546,16.657193064597546,16.863424373291807,16.863424373291807,16.863424373291807,16.863424373291807,16.863424373291807,17.267655681986064,17.267655681986064,17.267655681986064,17.267655681986064,17.267655681986064,17.473886990680324,17.473886990680324,17.473886990680324,17.473886990680324,17.473886990680324,17.87811829937458,17.87811829937458,17.87811829937458,17.87811829937458,17.87811829937458,18.08434960806884,18.08434960806884,18.08434960806884,18.08434960806884,18.08434960806884,18.4885809167631,18.4885809167631,18.4885809167631,18.4885809167631,18.4885809167631,18.69481222545736,18.69481222545736,18.69481222545736,18.69481222545736,18.69481222545736,19.09904353415162,19.09904353415162,19.09904353415162,19.09904353415162,19.09904353415162,19.305274842845876,19.305274842845876,19.305274842845876,19.305274842845876,19.305274842845876,19.709506151540136,19.709506151540136,19.709506151540136,19.709506151540136,19.709506151540136,19.915737460234396,19.915737460234396,19.915737460234396,19.915737460234396,19.915737460234396,20.319968768928653,20.319968768928653,20.319968768928653,20.319968768928653,20.319968768928653,20.526200077622914,20.526200077622914,20.526200077622914,20.526200077622914,20.526200077622914,20.93043138631717,20.93043138631717,20.93043138631717,20.93043138631717,20.93043138631717,21.13666269501143,21.13666269501143,21.13666269501143,21.13666269501143,21.13666269501143,21.54089400370569,21.54089400370569,21.54089400370569,21.54089400370569,21.54089400370569,21.747125312399948,21.747125312399948,21.747125312399948,21.747125312399948,21.747125312399948,22.15135662109421,22.15135662109421,22.15135662109421,22.15135662109421,22.15135662109421,22.357587929788465,22.357587929788465,22.357587929788465,22.357587929788465,22.357587929788465,22.761819238482726,22.761819238482726,22.761819238482726,22.761819238482726,22.761819238482726,22.968050547176986,22.968050547176986,22.968050547176986,22.968050547176986,22.968050547176986,23.372281855871243,23.372281855871243,23.372281855871243,23.372281855871243,23.372281855871243,23.578513164565504,23.578513164565504,23.578513164565504,23.578513164565504,23.578513164565504,23.98274447325976,23.98274447325976,23.98274447325976,23.98274447325976,23.98274447325976,24.18897578195402,24.18897578195402,24.18897578195402,24.18897578195402,24.18897578195402,24.593207090648278,24.593207090648278,24.593207090648278,24.593207090648278,24.593207090648278,24.799438399342538,24.799438399342538,24.799438399342538,24.799438399342538,24.799438399342538,25.2036697080368,25.2036697080368,25.2036697080368,25.2036697080368,25.2036697080368,25.409901016731055,25.409901016731055,25.409901016731055,25.409901016731055,25.409901016731055,25.814132325425316,25.814132325425316,25.814132325425316,25.814132325425316,25.814132325425316,26.020363634119573,26.020363634119573,26.020363634119573,26.020363634119573,26.020363634119573,26.424594942813833,26.424594942813833,26.424594942813833,26.424594942813833,26.424594942813833,26.630826251508093,26.630826251508093,26.630826251508093,26.630826251508093,26.630826251508093,27.03505756020235,27.03505756020235,27.03505756020235,27.03505756020235,27.03505756020235,27.24128886889661,27.24128886889661,27.24128886889661,27.24128886889661,27.24128886889661,27.645520177590868,27.645520177590868,27.645520177590868,27.645520177590868,27.645520177590868,27.851751486285128,27.851751486285128,27.851751486285128,27.851751486285128,27.851751486285128,28.25598279497939,28.25598279497939,28.25598279497939,28.25598279497939,28.25598279497939,28.462214103673645,28.462214103673645,28.462214103673645,28.462214103673645,28.462214103673645,28.866445412367906,28.866445412367906,28.866445412367906,28.866445412367906,28.866445412367906,29.072676721062162,29.072676721062162,29.072676721062162,29.072676721062162,29.072676721062162,29.476908029756423,29.476908029756423,29.476908029756423,29.476908029756423,29.476908029756423,29.68313933845068,29.68313933845068,29.68313933845068,29.68313933845068,29.68313933845068,30.08737064714494,30.08737064714494,30.08737064714494,30.08737064714494,30.08737064714494,30.2936019558392,30.2936019558392,30.2936019558392,30.2936019558392,30.2936019558392,30.697833264533458,30.697833264533458,30.697833264533458,30.697833264533458,30.697833264533458,30.904064573227718,30.904064573227718,30.904064573227718,30.904064573227718,30.904064573227718,31.30829588192198,31.30829588192198,31.30829588192198,31.30829588192198,31.30829588192198,31.51452719061624,31.51452719061624,31.51452719061624,31.51452719061624,31.51452719061624,31.918758499310503,31.918758499310503,31.918758499310503,31.918758499310503,31.918758499310503,32.12498980800476,32.12498980800476,32.12498980800476,32.12498980800476,32.12498980800476,32.52922111669902,32.52922111669902,32.52922111669902,32.52922111669902,32.52922111669902,32.735452425393284,32.735452425393284,32.735452425393284,32.735452425393284,32.735452425393284,33.13968373408754,33.13968373408754,33.13968373408754,33.13968373408754,33.13968373408754,33.345915042781805,33.345915042781805,33.345915042781805,33.345915042781805,33.345915042781805,33.75014635147607,33.75014635147607,33.75014635147607,33.75014635147607,33.75014635147607,33.956377660170325,33.956377660170325,33.956377660170325,33.956377660170325,33.956377660170325,34.36060896886458,34.36060896886458,34.36060896886458,34.36060896886458,34.36060896886458,34.566840277558846,34.566840277558846,34.566840277558846,34.566840277558846,34.566840277558846,34.9710715862531,34.9710715862531,34.9710715862531,34.9710715862531,34.9710715862531,35.17730289494737,35.17730289494737,35.17730289494737,35.17730289494737,35.17730289494737,35.581534203641624,35.581534203641624,35.581534203641624,35.581534203641624,35.581534203641624,35.78776551233589,35.78776551233589,35.78776551233589,35.78776551233589,35.78776551233589,36.191996821030145,36.191996821030145,36.191996821030145,36.191996821030145,36.191996821030145,36.39822812972441,36.39822812972441,36.39822812972441,36.39822812972441,36.39822812972441,36.802459438418666,36.802459438418666,36.802459438418666,36.802459438418666,36.802459438418666,37.00869074711293,37.00869074711293,37.00869074711293,37.00869074711293,37.00869074711293,37.412922055807186,37.412922055807186,37.412922055807186,37.412922055807186,37.412922055807186,37.61915336450145,37.61915336450145,37.61915336450145,37.61915336450145,37.61915336450145,38.02338467319571,38.02338467319571,38.02338467319571,38.02338467319571,38.02338467319571,38.22961598188997,38.22961598188997,38.22961598188997,38.22961598188997,38.22961598188997,38.63384729058423,38.63384729058423,38.63384729058423,38.63384729058423,38.63384729058423,38.84007859927849,38.84007859927849,38.84007859927849,38.84007859927849,38.84007859927849,39.24430990797275,39.24430990797275,39.24430990797275,39.24430990797275,39.24430990797275,39.45054121666701,39.45054121666701,39.45054121666701,39.45054121666701,39.45054121666701,39.85477252536127,39.85477252536127,39.85477252536127,39.85477252536127,39.85477252536127,40.06100383405553,40.06100383405553,40.06100383405553,40.06100383405553,40.06100383405553,40.46523514274979,40.46523514274979,40.46523514274979,40.46523514274979,40.46523514274979,40.671466451444054,40.671466451444054,40.671466451444054,40.671466451444054,40.671466451444054,41.07569776013831,41.07569776013831,41.07569776013831,41.07569776013831,41.07569776013831,41.281929068832575,41.281929068832575,41.281929068832575,41.281929068832575,41.281929068832575,41.68616037752684,41.68616037752684,41.68616037752684,41.68616037752684,41.68616037752684,41.892391686221096,41.892391686221096,41.892391686221096,41.892391686221096,41.892391686221096,42.29662299491536,42.29662299491536,42.29662299491536,42.29662299491536,42.29662299491536,42.50285430360962,42.50285430360962,42.50285430360962,42.50285430360962,42.50285430360962,42.90708561230388,42.90708561230388,42.90708561230388,42.90708561230388,42.90708561230388,43.11331692099814,43.11331692099814,43.11331692099814,43.11331692099814,43.11331692099814,43.5175482296924,43.5175482296924,43.5175482296924,43.5175482296924,43.5175482296924,43.72377953838666,43.72377953838666,43.72377953838666,43.72377953838666,43.72377953838666,44.12801084708092,44.12801084708092,44.12801084708092,44.12801084708092,44.12801084708092,44.33424215577518,44.33424215577518,44.33424215577518,44.33424215577518,44.33424215577518,44.73847346446944,44.73847346446944,44.73847346446944,44.73847346446944,44.73847346446944,44.9447047731637,44.9447047731637,44.9447047731637,44.9447047731637,44.9447047731637,45.348936081857964,45.348936081857964,45.348936081857964,45.348936081857964,45.348936081857964,45.55516739055222,45.55516739055222,45.55516739055222,45.55516739055222,45.55516739055222,45.959398699246485,45.959398699246485,45.959398699246485,45.959398699246485,45.959398699246485,46.16563000794074,46.16563000794074,46.16563000794074,46.16563000794074,46.16563000794074,46.569861316635006,46.569861316635006,46.569861316635006,46.569861316635006,46.569861316635006,46.77609262532926,46.77609262532926,46.77609262532926,46.77609262532926,46.77609262532926,47.18032393402353,47.18032393402353,47.18032393402353,47.18032393402353,47.18032393402353,47.38655524271779,47.38655524271779,47.38655524271779,47.38655524271779,47.38655524271779,47.79078655141204,47.79078655141204,47.79078655141204,47.79078655141204,47.79078655141204,47.99701786010631,47.99701786010631,47.99701786010631,47.99701786010631,47.99701786010631,48.40124916880056,48.40124916880056,48.40124916880056,48.40124916880056,48.40124916880056,48.607480477494825,48.607480477494825,48.607480477494825,48.607480477494825,48.607480477494825,49.01171178618909,49.01171178618909,49.01171178618909,49.01171178618909,49.01171178618909,49.21794309488334,49.21794309488334,49.21794309488334,49.21794309488334,49.21794309488334,49.6221744035776,49.6221744035776,49.6221744035776,49.6221744035776,49.6221744035776,49.82840571227186,49.82840571227186,49.82840571227186,49.82840571227186,49.82840571227186,50.232637020966116,50.232637020966116,50.232637020966116,50.232637020966116,50.232637020966116,50.43886832966038,50.43886832966038,50.43886832966038,50.43886832966038,50.43886832966038,50.84309963835464,50.84309963835464,50.84309963835464,50.84309963835464,50.84309963835464,51.049330947048894,51.049330947048894,51.049330947048894,51.049330947048894,51.049330947048894,51.45356225574316,51.45356225574316,51.45356225574316,51.45356225574316,51.45356225574316,51.65979356443741,51.65979356443741,51.65979356443741,51.65979356443741,51.65979356443741,52.06402487313167,52.06402487313167,52.06402487313167,52.06402487313167,52.06402487313167,52.27025618182593,52.27025618182593,52.27025618182593,52.27025618182593,52.27025618182593,52.674487490520185,52.674487490520185,52.674487490520185,52.674487490520185,52.674487490520185,52.88071879921445,52.88071879921445,52.88071879921445,52.88071879921445,52.88071879921445,53.284950107908706,53.284950107908706,53.284950107908706,53.284950107908706,53.284950107908706,53.49118141660296,53.49118141660296,53.49118141660296,53.49118141660296,53.49118141660296,53.89541272529723,53.89541272529723,53.89541272529723,53.89541272529723,53.89541272529723,54.101644033991484,54.101644033991484,54.101644033991484,54.101644033991484,54.101644033991484,54.50587534268574,54.50587534268574,54.50587534268574,54.50587534268574,54.50587534268574,54.712106651380005,54.712106651380005,54.712106651380005,54.712106651380005,54.712106651380005,55.116337960074254,55.116337960074254,55.116337960074254,55.116337960074254,55.116337960074254,55.322569268768525,55.322569268768525,55.322569268768525,55.322569268768525,55.322569268768525,55.72680057746278,55.72680057746278,55.72680057746278,55.72680057746278,55.72680057746278,55.93303188615704,55.93303188615704,55.93303188615704,55.93303188615704,55.93303188615704,56.3372631948513,56.3372631948513,56.3372631948513,56.3372631948513,56.3372631948513,56.54349450354555,56.54349450354555,56.54349450354555,56.54349450354555,56.54349450354555,56.94772581223982,56.94772581223982,56.94772581223982,56.94772581223982,56.94772581223982,57.15395712093407,57.15395712093407,57.15395712093407,57.15395712093407,57.15395712093407,57.55818842962833,57.55818842962833,57.55818842962833,57.55818842962833,57.55818842962833,57.764419738322594,57.764419738322594,57.764419738322594,57.764419738322594,57.764419738322594,58.16865104701685,58.16865104701685,58.16865104701685,58.16865104701685,58.16865104701685,58.37488235571111,58.37488235571111,58.37488235571111,58.37488235571111,58.37488235571111,58.77911366440537,58.77911366440537,58.77911366440537,58.77911366440537,58.77911366440537,58.98534497309962,58.98534497309962,58.98534497309962,58.98534497309962,58.98534497309962,59.389576281793886,59.389576281793886,59.389576281793886,59.389576281793886,59.389576281793886,59.59580759048814,59.59580759048814,59.59580759048814,59.59580759048814,59.59580759048814,60.0000388991824,60.0000388991824,60.0000388991824,60.0000388991824,60.0000388991824,60.20627020787666,60.20627020787666,60.20627020787666,60.20627020787666,60.20627020787666,60.61050151657092,60.61050151657092,60.61050151657092,60.61050151657092,60.61050151657092,60.816732825265184,60.816732825265184,60.816732825265184,60.816732825265184,60.816732825265184,61.22096413395944,61.22096413395944,61.22096413395944,61.22096413395944,61.22096413395944,61.4271954426537,61.4271954426537,61.4271954426537,61.4271954426537,61.4271954426537,61.831426751347955,61.831426751347955,61.831426751347955,61.831426751347955,61.831426751347955,62.03765806004222,62.03765806004222,62.03765806004222,62.03765806004222,62.03765806004222,62.441889368736476,62.441889368736476,62.441889368736476,62.441889368736476,62.441889368736476]},{"y":[null,0.0,10.0,10.0,0.0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"type":"scatter","name":"|RF_1|","hovertemplate":"(%{x:.4f} ms, %{y:.2f} μT)","x":[0.0,0.0,0.0,0.5871650124959988,0.5871650124959988,0.5871650124959988,0.5871650124959988,0.5871650124959988,0.5871650124959988,0.5871650124959988,0.9913963211902593,0.9913963211902593,0.9913963211902593,0.9913963211902593,0.9913963211902593,1.39562762988452,1.39562762988452,1.39562762988452,1.39562762988452,1.39562762988452,1.6018589385787805,1.6018589385787805,1.6018589385787805,1.6018589385787805,1.6018589385787805,2.006090247273041,2.006090247273041,2.006090247273041,2.006090247273041,2.006090247273041,2.2123215559673013,2.2123215559673013,2.2123215559673013,2.2123215559673013,2.2123215559673013,2.616552864661562,2.616552864661562,2.616552864661562,2.616552864661562,2.616552864661562,2.8227841733558225,2.8227841733558225,2.8227841733558225,2.8227841733558225,2.8227841733558225,3.2270154820500827,3.2270154820500827,3.2270154820500827,3.2270154820500827,3.2270154820500827,3.4332467907443434,3.4332467907443434,3.4332467907443434,3.4332467907443434,3.4332467907443434,3.8374780994386035,3.8374780994386035,3.8374780994386035,3.8374780994386035,3.8374780994386035,4.043709408132864,4.043709408132864,4.043709408132864,4.043709408132864,4.043709408132864,4.447940716827125,4.447940716827125,4.447940716827125,4.447940716827125,4.447940716827125,4.654172025521385,4.654172025521385,4.654172025521385,4.654172025521385,4.654172025521385,5.058403334215646,5.058403334215646,5.058403334215646,5.058403334215646,5.058403334215646,5.264634642909907,5.264634642909907,5.264634642909907,5.264634642909907,5.264634642909907,5.668865951604167,5.668865951604167,5.668865951604167,5.668865951604167,5.668865951604167,5.8750972602984275,5.8750972602984275,5.8750972602984275,5.8750972602984275,5.8750972602984275,6.279328568992689,6.279328568992689,6.279328568992689,6.279328568992689,6.279328568992689,6.485559877686949,6.485559877686949,6.485559877686949,6.485559877686949,6.485559877686949,6.88979118638121,6.88979118638121,6.88979118638121,6.88979118638121,6.88979118638121,7.096022495075471,7.096022495075471,7.096022495075471,7.096022495075471,7.096022495075471,7.5002538037697315,7.5002538037697315,7.5002538037697315,7.5002538037697315,7.5002538037697315,7.706485112463992,7.706485112463992,7.706485112463992,7.706485112463992,7.706485112463992,8.110716421158253,8.110716421158253,8.110716421158253,8.110716421158253,8.110716421158253,8.316947729852513,8.316947729852513,8.316947729852513,8.316947729852513,8.316947729852513,8.721179038546774,8.721179038546774,8.721179038546774,8.721179038546774,8.721179038546774,8.927410347241034,8.927410347241034,8.927410347241034,8.927410347241034,8.927410347241034,9.331641655935295,9.331641655935295,9.331641655935295,9.331641655935295,9.331641655935295,9.537872964629557,9.537872964629557,9.537872964629557,9.537872964629557,9.537872964629557,9.942104273323817,9.942104273323817,9.942104273323817,9.942104273323817,9.942104273323817,10.148335582018078,10.148335582018078,10.148335582018078,10.148335582018078,10.148335582018078,10.552566890712338,10.552566890712338,10.552566890712338,10.552566890712338,10.552566890712338,10.758798199406598,10.758798199406598,10.758798199406598,10.758798199406598,10.758798199406598,11.163029508100859,11.163029508100859,11.163029508100859,11.163029508100859,11.163029508100859,11.369260816795121,11.369260816795121,11.369260816795121,11.369260816795121,11.369260816795121,11.773492125489382,11.773492125489382,11.773492125489382,11.773492125489382,11.773492125489382,11.979723434183642,11.979723434183642,11.979723434183642,11.979723434183642,11.979723434183642,12.383954742877902,12.383954742877902,12.383954742877902,12.383954742877902,12.383954742877902,12.590186051572163,12.590186051572163,12.590186051572163,12.590186051572163,12.590186051572163,12.994417360266423,12.994417360266423,12.994417360266423,12.994417360266423,12.994417360266423,13.200648668960683,13.200648668960683,13.200648668960683,13.200648668960683,13.200648668960683,13.604879977654946,13.604879977654946,13.604879977654946,13.604879977654946,13.604879977654946,13.811111286349206,13.811111286349206,13.811111286349206,13.811111286349206,13.811111286349206,14.215342595043467,14.215342595043467,14.215342595043467,14.215342595043467,14.215342595043467,14.421573903737727,14.421573903737727,14.421573903737727,14.421573903737727,14.421573903737727,14.825805212431987,14.825805212431987,14.825805212431987,14.825805212431987,14.825805212431987,15.032036521126248,15.032036521126248,15.032036521126248,15.032036521126248,15.032036521126248,15.43626782982051,15.43626782982051,15.43626782982051,15.43626782982051,15.43626782982051,15.64249913851477,15.64249913851477,15.64249913851477,15.64249913851477,15.64249913851477,16.04673044720903,16.04673044720903,16.04673044720903,16.04673044720903,16.04673044720903,16.25296175590329,16.25296175590329,16.25296175590329,16.25296175590329,16.25296175590329,16.657193064597546,16.657193064597546,16.657193064597546,16.657193064597546,16.657193064597546,16.863424373291807,16.863424373291807,16.863424373291807,16.863424373291807,16.863424373291807,17.267655681986064,17.267655681986064,17.267655681986064,17.267655681986064,17.267655681986064,17.473886990680324,17.473886990680324,17.473886990680324,17.473886990680324,17.473886990680324,17.87811829937458,17.87811829937458,17.87811829937458,17.87811829937458,17.87811829937458,18.08434960806884,18.08434960806884,18.08434960806884,18.08434960806884,18.08434960806884,18.4885809167631,18.4885809167631,18.4885809167631,18.4885809167631,18.4885809167631,18.69481222545736,18.69481222545736,18.69481222545736,18.69481222545736,18.69481222545736,19.09904353415162,19.09904353415162,19.09904353415162,19.09904353415162,19.09904353415162,19.305274842845876,19.305274842845876,19.305274842845876,19.305274842845876,19.305274842845876,19.709506151540136,19.709506151540136,19.709506151540136,19.709506151540136,19.709506151540136,19.915737460234396,19.915737460234396,19.915737460234396,19.915737460234396,19.915737460234396,20.319968768928653,20.319968768928653,20.319968768928653,20.319968768928653,20.319968768928653,20.526200077622914,20.526200077622914,20.526200077622914,20.526200077622914,20.526200077622914,20.93043138631717,20.93043138631717,20.93043138631717,20.93043138631717,20.93043138631717,21.13666269501143,21.13666269501143,21.13666269501143,21.13666269501143,21.13666269501143,21.54089400370569,21.54089400370569,21.54089400370569,21.54089400370569,21.54089400370569,21.747125312399948,21.747125312399948,21.747125312399948,21.747125312399948,21.747125312399948,22.15135662109421,22.15135662109421,22.15135662109421,22.15135662109421,22.15135662109421,22.357587929788465,22.357587929788465,22.357587929788465,22.357587929788465,22.357587929788465,22.761819238482726,22.761819238482726,22.761819238482726,22.761819238482726,22.761819238482726,22.968050547176986,22.968050547176986,22.968050547176986,22.968050547176986,22.968050547176986,23.372281855871243,23.372281855871243,23.372281855871243,23.372281855871243,23.372281855871243,23.578513164565504,23.578513164565504,23.578513164565504,23.578513164565504,23.578513164565504,23.98274447325976,23.98274447325976,23.98274447325976,23.98274447325976,23.98274447325976,24.18897578195402,24.18897578195402,24.18897578195402,24.18897578195402,24.18897578195402,24.593207090648278,24.593207090648278,24.593207090648278,24.593207090648278,24.593207090648278,24.799438399342538,24.799438399342538,24.799438399342538,24.799438399342538,24.799438399342538,25.2036697080368,25.2036697080368,25.2036697080368,25.2036697080368,25.2036697080368,25.409901016731055,25.409901016731055,25.409901016731055,25.409901016731055,25.409901016731055,25.814132325425316,25.814132325425316,25.814132325425316,25.814132325425316,25.814132325425316,26.020363634119573,26.020363634119573,26.020363634119573,26.020363634119573,26.020363634119573,26.424594942813833,26.424594942813833,26.424594942813833,26.424594942813833,26.424594942813833,26.630826251508093,26.630826251508093,26.630826251508093,26.630826251508093,26.630826251508093,27.03505756020235,27.03505756020235,27.03505756020235,27.03505756020235,27.03505756020235,27.24128886889661,27.24128886889661,27.24128886889661,27.24128886889661,27.24128886889661,27.645520177590868,27.645520177590868,27.645520177590868,27.645520177590868,27.645520177590868,27.851751486285128,27.851751486285128,27.851751486285128,27.851751486285128,27.851751486285128,28.25598279497939,28.25598279497939,28.25598279497939,28.25598279497939,28.25598279497939,28.462214103673645,28.462214103673645,28.462214103673645,28.462214103673645,28.462214103673645,28.866445412367906,28.866445412367906,28.866445412367906,28.866445412367906,28.866445412367906,29.072676721062162,29.072676721062162,29.072676721062162,29.072676721062162,29.072676721062162,29.476908029756423,29.476908029756423,29.476908029756423,29.476908029756423,29.476908029756423,29.68313933845068,29.68313933845068,29.68313933845068,29.68313933845068,29.68313933845068,30.08737064714494,30.08737064714494,30.08737064714494,30.08737064714494,30.08737064714494,30.2936019558392,30.2936019558392,30.2936019558392,30.2936019558392,30.2936019558392,30.697833264533458,30.697833264533458,30.697833264533458,30.697833264533458,30.697833264533458,30.904064573227718,30.904064573227718,30.904064573227718,30.904064573227718,30.904064573227718,31.30829588192198,31.30829588192198,31.30829588192198,31.30829588192198,31.30829588192198,31.51452719061624,31.51452719061624,31.51452719061624,31.51452719061624,31.51452719061624,31.918758499310503,31.918758499310503,31.918758499310503,31.918758499310503,31.918758499310503,32.12498980800476,32.12498980800476,32.12498980800476,32.12498980800476,32.12498980800476,32.52922111669902,32.52922111669902,32.52922111669902,32.52922111669902,32.52922111669902,32.735452425393284,32.735452425393284,32.735452425393284,32.735452425393284,32.735452425393284,33.13968373408754,33.13968373408754,33.13968373408754,33.13968373408754,33.13968373408754,33.345915042781805,33.345915042781805,33.345915042781805,33.345915042781805,33.345915042781805,33.75014635147607,33.75014635147607,33.75014635147607,33.75014635147607,33.75014635147607,33.956377660170325,33.956377660170325,33.956377660170325,33.956377660170325,33.956377660170325,34.36060896886458,34.36060896886458,34.36060896886458,34.36060896886458,34.36060896886458,34.566840277558846,34.566840277558846,34.566840277558846,34.566840277558846,34.566840277558846,34.9710715862531,34.9710715862531,34.9710715862531,34.9710715862531,34.9710715862531,35.17730289494737,35.17730289494737,35.17730289494737,35.17730289494737,35.17730289494737,35.581534203641624,35.581534203641624,35.581534203641624,35.581534203641624,35.581534203641624,35.78776551233589,35.78776551233589,35.78776551233589,35.78776551233589,35.78776551233589,36.191996821030145,36.191996821030145,36.191996821030145,36.191996821030145,36.191996821030145,36.39822812972441,36.39822812972441,36.39822812972441,36.39822812972441,36.39822812972441,36.802459438418666,36.802459438418666,36.802459438418666,36.802459438418666,36.802459438418666,37.00869074711293,37.00869074711293,37.00869074711293,37.00869074711293,37.00869074711293,37.412922055807186,37.412922055807186,37.412922055807186,37.412922055807186,37.412922055807186,37.61915336450145,37.61915336450145,37.61915336450145,37.61915336450145,37.61915336450145,38.02338467319571,38.02338467319571,38.02338467319571,38.02338467319571,38.02338467319571,38.22961598188997,38.22961598188997,38.22961598188997,38.22961598188997,38.22961598188997,38.63384729058423,38.63384729058423,38.63384729058423,38.63384729058423,38.63384729058423,38.84007859927849,38.84007859927849,38.84007859927849,38.84007859927849,38.84007859927849,39.24430990797275,39.24430990797275,39.24430990797275,39.24430990797275,39.24430990797275,39.45054121666701,39.45054121666701,39.45054121666701,39.45054121666701,39.45054121666701,39.85477252536127,39.85477252536127,39.85477252536127,39.85477252536127,39.85477252536127,40.06100383405553,40.06100383405553,40.06100383405553,40.06100383405553,40.06100383405553,40.46523514274979,40.46523514274979,40.46523514274979,40.46523514274979,40.46523514274979,40.671466451444054,40.671466451444054,40.671466451444054,40.671466451444054,40.671466451444054,41.07569776013831,41.07569776013831,41.07569776013831,41.07569776013831,41.07569776013831,41.281929068832575,41.281929068832575,41.281929068832575,41.281929068832575,41.281929068832575,41.68616037752684,41.68616037752684,41.68616037752684,41.68616037752684,41.68616037752684,41.892391686221096,41.892391686221096,41.892391686221096,41.892391686221096,41.892391686221096,42.29662299491536,42.29662299491536,42.29662299491536,42.29662299491536,42.29662299491536,42.50285430360962,42.50285430360962,42.50285430360962,42.50285430360962,42.50285430360962,42.90708561230388,42.90708561230388,42.90708561230388,42.90708561230388,42.90708561230388,43.11331692099814,43.11331692099814,43.11331692099814,43.11331692099814,43.11331692099814,43.5175482296924,43.5175482296924,43.5175482296924,43.5175482296924,43.5175482296924,43.72377953838666,43.72377953838666,43.72377953838666,43.72377953838666,43.72377953838666,44.12801084708092,44.12801084708092,44.12801084708092,44.12801084708092,44.12801084708092,44.33424215577518,44.33424215577518,44.33424215577518,44.33424215577518,44.33424215577518,44.73847346446944,44.73847346446944,44.73847346446944,44.73847346446944,44.73847346446944,44.9447047731637,44.9447047731637,44.9447047731637,44.9447047731637,44.9447047731637,45.348936081857964,45.348936081857964,45.348936081857964,45.348936081857964,45.348936081857964,45.55516739055222,45.55516739055222,45.55516739055222,45.55516739055222,45.55516739055222,45.959398699246485,45.959398699246485,45.959398699246485,45.959398699246485,45.959398699246485,46.16563000794074,46.16563000794074,46.16563000794074,46.16563000794074,46.16563000794074,46.569861316635006,46.569861316635006,46.569861316635006,46.569861316635006,46.569861316635006,46.77609262532926,46.77609262532926,46.77609262532926,46.77609262532926,46.77609262532926,47.18032393402353,47.18032393402353,47.18032393402353,47.18032393402353,47.18032393402353,47.38655524271779,47.38655524271779,47.38655524271779,47.38655524271779,47.38655524271779,47.79078655141204,47.79078655141204,47.79078655141204,47.79078655141204,47.79078655141204,47.99701786010631,47.99701786010631,47.99701786010631,47.99701786010631,47.99701786010631,48.40124916880056,48.40124916880056,48.40124916880056,48.40124916880056,48.40124916880056,48.607480477494825,48.607480477494825,48.607480477494825,48.607480477494825,48.607480477494825,49.01171178618909,49.01171178618909,49.01171178618909,49.01171178618909,49.01171178618909,49.21794309488334,49.21794309488334,49.21794309488334,49.21794309488334,49.21794309488334,49.6221744035776,49.6221744035776,49.6221744035776,49.6221744035776,49.6221744035776,49.82840571227186,49.82840571227186,49.82840571227186,49.82840571227186,49.82840571227186,50.232637020966116,50.232637020966116,50.232637020966116,50.232637020966116,50.232637020966116,50.43886832966038,50.43886832966038,50.43886832966038,50.43886832966038,50.43886832966038,50.84309963835464,50.84309963835464,50.84309963835464,50.84309963835464,50.84309963835464,51.049330947048894,51.049330947048894,51.049330947048894,51.049330947048894,51.049330947048894,51.45356225574316,51.45356225574316,51.45356225574316,51.45356225574316,51.45356225574316,51.65979356443741,51.65979356443741,51.65979356443741,51.65979356443741,51.65979356443741,52.06402487313167,52.06402487313167,52.06402487313167,52.06402487313167,52.06402487313167,52.27025618182593,52.27025618182593,52.27025618182593,52.27025618182593,52.27025618182593,52.674487490520185,52.674487490520185,52.674487490520185,52.674487490520185,52.674487490520185,52.88071879921445,52.88071879921445,52.88071879921445,52.88071879921445,52.88071879921445,53.284950107908706,53.284950107908706,53.284950107908706,53.284950107908706,53.284950107908706,53.49118141660296,53.49118141660296,53.49118141660296,53.49118141660296,53.49118141660296,53.89541272529723,53.89541272529723,53.89541272529723,53.89541272529723,53.89541272529723,54.101644033991484,54.101644033991484,54.101644033991484,54.101644033991484,54.101644033991484,54.50587534268574,54.50587534268574,54.50587534268574,54.50587534268574,54.50587534268574,54.712106651380005,54.712106651380005,54.712106651380005,54.712106651380005,54.712106651380005,55.116337960074254,55.116337960074254,55.116337960074254,55.116337960074254,55.116337960074254,55.322569268768525,55.322569268768525,55.322569268768525,55.322569268768525,55.322569268768525,55.72680057746278,55.72680057746278,55.72680057746278,55.72680057746278,55.72680057746278,55.93303188615704,55.93303188615704,55.93303188615704,55.93303188615704,55.93303188615704,56.3372631948513,56.3372631948513,56.3372631948513,56.3372631948513,56.3372631948513,56.54349450354555,56.54349450354555,56.54349450354555,56.54349450354555,56.54349450354555,56.94772581223982,56.94772581223982,56.94772581223982,56.94772581223982,56.94772581223982,57.15395712093407,57.15395712093407,57.15395712093407,57.15395712093407,57.15395712093407,57.55818842962833,57.55818842962833,57.55818842962833,57.55818842962833,57.55818842962833,57.764419738322594,57.764419738322594,57.764419738322594,57.764419738322594,57.764419738322594,58.16865104701685,58.16865104701685,58.16865104701685,58.16865104701685,58.16865104701685,58.37488235571111,58.37488235571111,58.37488235571111,58.37488235571111,58.37488235571111,58.77911366440537,58.77911366440537,58.77911366440537,58.77911366440537,58.77911366440537,58.98534497309962,58.98534497309962,58.98534497309962,58.98534497309962,58.98534497309962,59.389576281793886,59.389576281793886,59.389576281793886,59.389576281793886,59.389576281793886,59.59580759048814,59.59580759048814,59.59580759048814,59.59580759048814,59.59580759048814,60.0000388991824,60.0000388991824,60.0000388991824,60.0000388991824,60.0000388991824,60.20627020787666,60.20627020787666,60.20627020787666,60.20627020787666,60.20627020787666,60.61050151657092,60.61050151657092,60.61050151657092,60.61050151657092,60.61050151657092,60.816732825265184,60.816732825265184,60.816732825265184,60.816732825265184,60.816732825265184,61.22096413395944,61.22096413395944,61.22096413395944,61.22096413395944,61.22096413395944,61.4271954426537,61.4271954426537,61.4271954426537,61.4271954426537,61.4271954426537,61.831426751347955,61.831426751347955,61.831426751347955,61.831426751347955,61.831426751347955,62.03765806004222,62.03765806004222,62.03765806004222,62.03765806004222,62.03765806004222,62.441889368736476,62.441889368736476,62.441889368736476,62.441889368736476,62.441889368736476]},{"y":[null,0.0,0.0,0.0,0.0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"type":"scatter","name":"
@@ -17,11 +17,11 @@ window.PLOTLYENV = window.PLOTLYENV || {} - if (document.getElementById('527f6cd8-031f-4795-8afa-fb5068aef837')) { + if (document.getElementById('a78efc2a-cd51-47a3-9e60-ae6ff4d55f41')) { Plotly.newPlot( - '527f6cd8-031f-4795-8afa-fb5068aef837', - [{"y":[null,null,null,null,null,null,0.0,-25.528913586782558,-25.528913586782558,0.0,null,0.0,51.057827173565116,51.057827173565116,0.0,null,null,null,null,null,null,0.0,-51.057827173565116,-51.057827173565116,0.0,null,null,null,null,null,null,0.0,51.057827173565116,51.057827173565116,0.0,null,null,null,null,null,null,0.0,-51.057827173565116,-51.057827173565116,0.0,null,null,null,null,null,null,0.0,51.057827173565116,51.057827173565116,0.0],"type":"scatter","name":"Gx","hovertemplate":"(%{x:.4f} ms, %{y:.2f} mT/m)","x":[0.0,0.0,0.0,0.5871650124959988,0.5871650124959988,0.5871650124959988,0.5871650124959988,0.6892806668431292,0.8892806668431291,0.9913963211902593,0.9913963211902593,0.9913963211902593,1.0935119755373894,1.2935119755373896,1.39562762988452,1.39562762988452,1.39562762988452,1.49774328423165,1.49974328423165,1.6018589385787805,1.6018589385787805,1.6018589385787805,1.7039745929259107,1.9039745929259106,2.006090247273041,2.006090247273041,2.006090247273041,2.108205901620171,2.110205901620171,2.2123215559673013,2.2123215559673013,2.2123215559673013,2.3144372103144315,2.5144372103144317,2.616552864661562,2.616552864661562,2.616552864661562,2.718668519008692,2.7206685190086923,2.8227841733558225,2.8227841733558225,2.8227841733558225,2.9248998277029523,3.1248998277029525,3.2270154820500827,3.2270154820500827,3.2270154820500827,3.329131136397213,3.331131136397213,3.4332467907443434,3.4332467907443434,3.4332467907443434,3.5353624450914736,3.7353624450914737,3.8374780994386035]},{"y":[null,null,null,null,null,null,0.0,-16.900093205663477,-16.900093205663477,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null,null,0.0,0.9807905928023867,0.9807905928023867,0.0,null,null,null,null,null],"type":"scatter","name":"Gy","hovertemplate":"(%{x:.4f} ms, %{y:.2f} mT/m)","x":[0.0,0.0,0.0,0.5871650124959988,0.5871650124959988,0.5871650124959988,0.5871650124959988,0.6892806668431292,0.8892806668431291,0.9913963211902593,0.9913963211902593,0.9913963211902593,1.0935119755373894,1.2935119755373896,1.39562762988452,1.39562762988452,1.39562762988452,1.49774328423165,1.49974328423165,1.6018589385787805,1.6018589385787805,1.6018589385787805,1.7039745929259107,1.9039745929259106,2.006090247273041,2.006090247273041,2.006090247273041,2.108205901620171,2.110205901620171,2.2123215559673013,2.2123215559673013,2.2123215559673013,2.3144372103144315,2.5144372103144317,2.616552864661562,2.616552864661562,2.616552864661562,2.718668519008692,2.7206685190086923,2.8227841733558225,2.8227841733558225,2.8227841733558225,2.9248998277029523,3.1248998277029525,3.2270154820500827,3.2270154820500827,3.2270154820500827,3.329131136397213,3.331131136397213,3.4332467907443434,3.4332467907443434,3.4332467907443434,3.5353624450914736,3.7353624450914737,3.8374780994386035]},{"y":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"type":"scatter","name":"Gz","hovertemplate":"(%{x:.4f} ms, %{y:.2f} mT/m)","x":[0.0,0.0,0.0,0.5871650124959988,0.5871650124959988,0.5871650124959988,0.5871650124959988,0.5871650124959988,0.5871650124959988,0.5871650124959988,0.9913963211902593,0.9913963211902593,0.9913963211902593,0.9913963211902593,0.9913963211902593,1.39562762988452,1.39562762988452,1.39562762988452,1.39562762988452,1.39562762988452,1.6018589385787805,1.6018589385787805,1.6018589385787805,1.6018589385787805,1.6018589385787805,2.006090247273041,2.006090247273041,2.006090247273041,2.006090247273041,2.006090247273041,2.2123215559673013,2.2123215559673013,2.2123215559673013,2.2123215559673013,2.2123215559673013,2.616552864661562,2.616552864661562,2.616552864661562,2.616552864661562,2.616552864661562,2.8227841733558225,2.8227841733558225,2.8227841733558225,2.8227841733558225,2.8227841733558225,3.2270154820500827,3.2270154820500827,3.2270154820500827,3.2270154820500827,3.2270154820500827,3.4332467907443434,3.4332467907443434,3.4332467907443434,3.4332467907443434,3.4332467907443434]},{"y":[null,0.0,10.0,10.0,0.0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"type":"scatter","name":"|RF_1|","hovertemplate":"(%{x:.4f} ms, %{y:.2f} μT)","x":[0.0,0.0,0.0,0.5871650124959988,0.5871650124959988,0.5871650124959988,0.5871650124959988,0.5871650124959988,0.5871650124959988,0.5871650124959988,0.9913963211902593,0.9913963211902593,0.9913963211902593,0.9913963211902593,0.9913963211902593,1.39562762988452,1.39562762988452,1.39562762988452,1.39562762988452,1.39562762988452,1.6018589385787805,1.6018589385787805,1.6018589385787805,1.6018589385787805,1.6018589385787805,2.006090247273041,2.006090247273041,2.006090247273041,2.006090247273041,2.006090247273041,2.2123215559673013,2.2123215559673013,2.2123215559673013,2.2123215559673013,2.2123215559673013,2.616552864661562,2.616552864661562,2.616552864661562,2.616552864661562,2.616552864661562,2.8227841733558225,2.8227841733558225,2.8227841733558225,2.8227841733558225,2.8227841733558225,3.2270154820500827,3.2270154820500827,3.2270154820500827,3.2270154820500827,3.2270154820500827,3.4332467907443434,3.4332467907443434,3.4332467907443434,3.4332467907443434,3.4332467907443434]},{"y":[null,0.0,0.0,0.0,0.0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"type":"scatter","name":" -Create Your Own Phantom · KomaMRI.jl: General MRI simulation framework

Create Your Own Phantom

In this section, we will create a custom Phantom struct. While the example is presented in 2D, the concepts discussed here can be readily extended to 3D phantoms.

In KomaMRI, the creation of a Phantom struct involves defining spin position arrays (x, y, z) and spin property arrays. The indices of these arrays are then associated with independent spins.

For instance, you can create a Phantom with one spin like so:

# Define arrays of positions (spin at zero position)
+Create Your Own Phantom · KomaMRI.jl: General MRI simulation framework

Create Your Own Phantom

In this section, we will create a custom Phantom struct. While the example is presented in 2D, the concepts discussed here can be readily extended to 3D phantoms.

In KomaMRI, the creation of a Phantom struct involves defining spin position arrays (x, y, z) and spin property arrays. The indices of these arrays are then associated with independent spins.

For instance, you can create a Phantom with one spin like so:

# Define arrays of positions (spin at zero position)
 x = [0.0]
 y = [0.0]
 z = [0.0]
@@ -111,4 +111,4 @@
 	T2 = T2[ρ.!=0],
 	T2s = T2s[ρ.!=0],
 	Δw = Δw[ρ.!=0],
-)

We can display the Phantom struct with the plot_phantom_map function. In this case we select the proton density to be displayed, but you can choose other property to be displayed:

plot_phantom_map(obj, :ρ)
+)

We can display the Phantom struct with the plot_phantom_map function. In this case we select the proton density to be displayed, but you can choose other property to be displayed:

plot_phantom_map(obj, :ρ)
diff --git a/dev/create-your-own-sequence/index.html b/dev/create-your-own-sequence/index.html index 2c5ea6e77..20d0fd9ce 100644 --- a/dev/create-your-own-sequence/index.html +++ b/dev/create-your-own-sequence/index.html @@ -1,5 +1,5 @@ -Create Your Own Sequence · KomaMRI.jl: General MRI simulation framework

Create Your Own Sequence

Warning

This section is currently under construction, and some details on how to construct a Sequence may be missing.

This is an example of how to create a Sequence struct:

# Export necessary modules
+Create Your Own Sequence · KomaMRI.jl: General MRI simulation framework

Create Your Own Sequence

Warning

This section is currently under construction, and some details on how to construct a Sequence may be missing.

This is an example of how to create a Sequence struct:

# Export necessary modules
 using KomaMRI
 
 # Create the function that creates a phantom
@@ -44,4 +44,4 @@
 
 # Plot the sequence in time and its kspace
 plot_seq(seq; range=[0 30])
-plot_kspace(seq)
+plot_kspace(seq)
diff --git a/dev/docstrings/index.html b/dev/docstrings/index.html index 87a02ea68..b3b8f8168 100644 --- a/dev/docstrings/index.html +++ b/dev/docstrings/index.html @@ -1,5 +1,5 @@ -API Documentation · KomaMRI.jl: General MRI simulation framework

API Documentation

Dataflow Graph

DataTypes

Mag

KomaMRICore.MagType
mag = Mag(xy::Complex, z::Real)

The Magnetization struct.

Arguments

  • xy: (::Complex{Float64}) magnetization of a spin in the xy plane
  • z: (::Real) magnetization of a spin in the z plane

Returns

  • mag: (::Mag) Magnetization struct
Missing docstring.

Missing docstring for show(::IO, ::Mag). Check Documenter's build log for details.

Missing docstring.

Missing docstring for getproperty(::Vector{Mag}, ::Symbol). Check Documenter's build log for details.

Phantom

Refer to API Documentation:

Scanner

Refer to API Documentation:

Sequence

Refer to API Documentation:

Base.showMethod
str = show(io::IO, s::Sequence)

Displays information about the Sequence struct s in the julia REPL.

Arguments

  • s: (::Sequence) Sequence struct

Returns

  • str (::String) output string message
KomaMRICore.is_ADC_onFunction
y = is_ADC_on(x::Sequence)
+API Documentation · KomaMRI.jl: General MRI simulation framework

API Documentation

Dataflow Graph

DataTypes

Mag

KomaMRICore.MagType
mag = Mag(xy::Complex, z::Real)

The Magnetization struct.

Arguments

  • xy: (::Complex{Float64}) magnetization of a spin in the xy plane
  • z: (::Real) magnetization of a spin in the z plane

Returns

  • mag: (::Mag) Magnetization struct
Missing docstring.

Missing docstring for show(::IO, ::Mag). Check Documenter's build log for details.

Missing docstring.

Missing docstring for getproperty(::Vector{Mag}, ::Symbol). Check Documenter's build log for details.

Phantom

Refer to API Documentation:

Scanner

Refer to API Documentation:

Sequence

Refer to API Documentation:

Base.showMethod
str = show(io::IO, s::Sequence)

Displays information about the Sequence struct s in the julia REPL.

Arguments

  • s: (::Sequence) Sequence struct

Returns

  • str (::String) output string message
KomaMRICore.is_ADC_onFunction
y = is_ADC_on(x::Sequence)
 y = is_ADC_on(x::Sequence, t::Union{Array{Float64,1}, Array{Float64,2}})

Tells if the sequence seq has elements with ADC active, or active during time t.

Arguments

  • x: (::Sequence) sequence struct
  • t: (::Union{Array{Float64,1}, Array{Float64,2}}, [s]) time to check

Returns

  • y: (::Bool) boolean that tells whether or not the ADC in the sequence is active
KomaMRICore.is_RF_onFunction
y = is_RF_on(x::Sequence)
 y = is_RF_on(x::Sequence, t::Vector{Float64})

Tells if the sequence seq has elements with RF active, or active during time t.

Arguments

  • x: (::Sequence) Sequence struct
  • t: (::Vector{Float64}, [s]) time to check

Returns

  • y: (::Bool) boolean that tells whether or not the RF in the sequence is active
KomaMRICore.is_GR_onFunction
y = is_GR_on(x::Sequence)

Tells if the sequence seq has elements with GR active.

Arguments

  • x: (::Sequence) Sequence struct

Returns

  • y: (::Bool) boolean that tells whether or not the GR in the sequence is active
Missing docstring.

Missing docstring for KomaMRI.is_Gx_on. Check Documenter's build log for details.

Missing docstring.

Missing docstring for KomaMRI.is_Gy_on. Check Documenter's build log for details.

Missing docstring.

Missing docstring for KomaMRI.is_Gz_on. Check Documenter's build log for details.

Missing docstring.

Missing docstring for KomaMRI.is_Delay. Check Documenter's build log for details.

Missing docstring.

Missing docstring for KomaMRI.durs(::Sequence). Check Documenter's build log for details.

KomaMRICore.durMethod
T = dur(x::Sequence)

The total duration of the sequence in [s].

Arguments

  • x: (::Sequence) Sequence struct

Returns

  • T: (::Real, [s]) total duration of the sequence
Missing docstring.

Missing docstring for KomaMRI.⏢. Check Documenter's build log for details.

Missing docstring.

Missing docstring for KomaMRI.get_grads. Check Documenter's build log for details.

Missing docstring.

Missing docstring for KomaMRI.get_rfs. Check Documenter's build log for details.

KomaMRICore.get_flip_anglesFunction
y = get_flip_angles(x::Sequence)

Returns all the flip angles of the RF pulses in the sequence x.

Arguments

  • x: (::Sequence) Sequence struct

Returns

  • y: (::Vector{Float64}, [deg]) flip angles
Missing docstring.

Missing docstring for KomaMRI.get_ADC_on. Check Documenter's build log for details.

KomaMRICore.get_kspaceFunction
kspace, kspace_adc = get_kspace(seq::Sequence; Δt=1)

Outputs the designed k-space trajectory of the Sequence seq.

Arguments

  • seq: (::Sequence) Sequence struct
  • Δt: (::Real, =1, [s]) nominal delta time separation between two time samples for ADC acquisition and Gradients

Returns

  • kspace: (3-column ::Matrix{Float64}) kspace
  • kspace_adc: (3-column ::Matrix{Float64}) adc kspace
Missing docstring.

Missing docstring for KomaMRI.get_RF_types. Check Documenter's build log for details.

Missing docstring.

Missing docstring for KomaMRI.δ2N. Check Documenter's build log for details.

Grad

Refer to API Documentation:

KomaMRICore.rotxFunction
Rx = rotx(θ::Real)

Rotates vector counter-clockwise with respect to the x-axis.

Arguments

  • θ: (::Real, [rad]) rotation angle

Returns

  • Rx: (::Matrix{Int64}) rotation matrix
KomaMRICore.rotyFunction
Ry = roty(θ::Real)

Rotates vector counter-clockwise with respect to the y-axis.

Arguments

  • θ: (::Real, [rad]) rotation angle

Returns

  • Ry: (::Matrix{Int64}) rotation matrix
KomaMRICore.rotzFunction
Rz = rotz(θ::Real)

Rotates vector counter-clockwise with respect to the z-axis.

Arguments

  • θ: (::Real, [rad]) rotation angle

Returns

  • Rz: (::Matrix{Int64}) rotation matrix
Base.showMethod
str = show(io::IO, x::Grad)

Displays information about the Grad struct x in the julia REPL.

Arguments

  • x: (::Grad) Grad struct

Returns

  • str (::String) output string message
Base.getpropertyMethod
y = getproperty(x::Vector{Grad}, f::Symbol)
 y = getproperty(x::Matrix{Grad}, f::Symbol)

Overloads Base.getproperty(). It is meant to access properties of the Grad vector x directly without the need to iterate elementwise.

Arguments

  • x: (::Vector{Grad} or ::Matrix{Grad}) vector or matrix of Grad structs
  • f: (::Symbol, opts: [:x, :y, :z, :T, :delay, :rise, :delay, :dur, :A, f]) input symbol that represents a property of the vector or matrix of Grad structs

Returns

  • y: (::Vector{Any} or ::Matrix{Any}) vector or matrix with the property defined by the symbol f for all elements of the Grad vector or matrix x
KomaMRICore.durMethod
y = dur(x::Grad)
@@ -11,4 +11,4 @@
 y = getproperty(x::Matrix{RF}, f::Symbol)

Overloads Base.getproperty(). It is meant to access properties of the RF vector x directly without the need to iterate elementwise.

Arguments

  • x: (::Vector{RF} or ::Matrix{RF}) vector or matrix of RF structs
  • f: (::Symbol, opts: [:A, :Bx, :By, :T, :Δf, :delay and :dur]) input symbol that represents a property of the vector or matrix of RF structs

Returns

  • y: (::Vector{Any} or ::Matrix{Any}) vector with the property defined by the symbol f for all elements of the RF vector or matrix x
KomaMRICore.durMethod
y = dur(x::RF)
 y = dur(x::Array{RF,1})
 y = dur(x::Array{RF,2})

Duration time in [s] of RF struct or RF array.

Arguments

  • x: (::RF or ::Array{RF,1} or ::Array{RF,2}) RF struct or RF array

Returns

  • y: (::Float64, [s]) duration of the RF struct or RF array
Missing docstring.

Missing docstring for KomaMRI.RF_fun. Check Documenter's build log for details.

Missing docstring.

Missing docstring for KomaMRI.get_flip_angle. Check Documenter's build log for details.

Missing docstring.

Missing docstring for KomaMRI.get_RF_center. Check Documenter's build log for details.

ADC

Refer to API Documentation:

Base.getpropertyMethod
y = getproperty(x::Vector{ADC}, f::Symbol)

Overloads Base.getproperty(). It is meant to access properties of the ADC vector x directly without the need to iterate elementwise.

Arguments

  • x: (::Vector{ADC}) vector of ADC structs
  • f: (::Symbol, opts: [:N, :T, :delay, :Δf, , :dur]) input symbol that represents a property of the ADC structs

Returns

  • y: (::Vector{Any}) vector with the property defined by the f for all elements of the ADC vector x
Missing docstring.

Missing docstring for KomaMRI.get_adc_sampling_times. Check Documenter's build log for details.

Missing docstring.

Missing docstring for KomaMRI.get_adc_phase_compensation. Check Documenter's build log for details.

Delay

Refer to API Documentation:

Base.showMethod
str = show(io::IO, s::Delay)

Displays the delay time in m[s] of the delay struct s in the julia REPL.

Arguments

  • s: (::Delay) delay struct

Returns

  • str: (::String) output string message
Base.:+Method
seq = +(s::Sequence, d::Delay)
-seq = +(d::Delay, s::Sequence)

Add a delay to sequence struct. It ultimately affects to the duration of the gradients of a sequence.

Arguments

  • s: (::Sequence) sequence struct
  • d: (::Delay) delay struct

Returns

  • seq: (::Sequence) delayed sequence

Pulseq.jl

Refer to API Documentation:

read_Grad

Missing docstring.

Missing docstring for KomaMRI.read_Grad. Check Documenter's build log for details.

read_RF

Missing docstring.

Missing docstring for KomaMRI.read_RF. Check Documenter's build log for details.

read_ADC

Missing docstring.

Missing docstring for KomaMRI.read_ADC. Check Documenter's build log for details.

get_block

Missing docstring.

Missing docstring for KomaMRI.get_block. Check Documenter's build log for details.

JEMRIS.jl

read_phantom_jemris

Refer to API Documentation:

ISMRMRD.jl

signal_to_raw_data

Refer to API Documentation:

PulseDesigner.jl

Refer to API Documentation:

KeyValuesCalculation.jl

get_theo_A

Missing docstring.

Missing docstring for KomaMRI.get_theo_A. Check Documenter's build log for details.

get_theo_t

Missing docstring.

Missing docstring for KomaMRI.get_theo_t. Check Documenter's build log for details.

get_theo_Gi

Missing docstring.

Missing docstring for KomaMRI.get_theo_Gi. Check Documenter's build log for details.

TrapezoidalIntegration.jl

trapz

Missing docstring.

Missing docstring for KomaMRI.trapz. Check Documenter's build log for details.

cumtrapz

Missing docstring.

Missing docstring for KomaMRI.cumtrapz. Check Documenter's build log for details.

TimeStepCalculation.jl

points_from_key_times

Missing docstring.

Missing docstring for KomaMRI.points_from_key_times. Check Documenter's build log for details.

get_variable_times

Missing docstring.

Missing docstring for KomaMRI.get_variable_times. Check Documenter's build log for details.

get_uniform_times

Missing docstring.

Missing docstring for KomaMRI.get_uniform_times. Check Documenter's build log for details.

kfoldperm

Missing docstring.

Missing docstring for KomaMRI.kfoldperm. Check Documenter's build log for details.

get_breaks_in_RF_key_points

Missing docstring.

Missing docstring for KomaMRI.get_breaks_in_RF_key_points. Check Documenter's build log for details.

SimulationCore.jl

Refer to API Documentation:

Missing docstring.

Missing docstring for KomaMRI.print_gpus. Check Documenter's build log for details.

run_spin_precession

Missing docstring.

Missing docstring for KomaMRI.run_spin_precession. Check Documenter's build log for details.

run_spin_precession_parallel

Missing docstring.

Missing docstring for KomaMRI.run_spin_precession_parallel. Check Documenter's build log for details.

run_spin_excitation

Missing docstring.

Missing docstring for KomaMRI.run_spin_excitation. Check Documenter's build log for details.

run_spin_excitation_parallel

Missing docstring.

Missing docstring for KomaMRI.run_spin_excitation_parallel. Check Documenter's build log for details.

run_sim_time_iter

Missing docstring.

Missing docstring for KomaMRI.run_sim_time_iter. Check Documenter's build log for details.

DisplayFunctions.jl

Refer to API Documentation:

theme_chooser

Missing docstring.

Missing docstring for KomaMRI.theme_chooser. Check Documenter's build log for details.

interp_map

Missing docstring.

Missing docstring for KomaMRI.interp_map. Check Documenter's build log for details.

plot_dict

KomaMRIPlots.plot_dictFunction
str = plot_dict(dict::Dict)

Generates an HTML table based on the dictionary dict.

Arguments

  • dict: (::Dict) dictionary

Returns

  • str: (::String) dictionary as an HTML table
+seq = +(d::Delay, s::Sequence)

Add a delay to sequence struct. It ultimately affects to the duration of the gradients of a sequence.

Arguments

  • s: (::Sequence) sequence struct
  • d: (::Delay) delay struct

Returns

  • seq: (::Sequence) delayed sequence

Pulseq.jl

Refer to API Documentation:

read_Grad

Missing docstring.

Missing docstring for KomaMRI.read_Grad. Check Documenter's build log for details.

read_RF

Missing docstring.

Missing docstring for KomaMRI.read_RF. Check Documenter's build log for details.

read_ADC

Missing docstring.

Missing docstring for KomaMRI.read_ADC. Check Documenter's build log for details.

get_block

Missing docstring.

Missing docstring for KomaMRI.get_block. Check Documenter's build log for details.

JEMRIS.jl

read_phantom_jemris

Refer to API Documentation:

ISMRMRD.jl

signal_to_raw_data

Refer to API Documentation:

PulseDesigner.jl

Refer to API Documentation:

KeyValuesCalculation.jl

get_theo_A

Missing docstring.

Missing docstring for KomaMRI.get_theo_A. Check Documenter's build log for details.

get_theo_t

Missing docstring.

Missing docstring for KomaMRI.get_theo_t. Check Documenter's build log for details.

get_theo_Gi

Missing docstring.

Missing docstring for KomaMRI.get_theo_Gi. Check Documenter's build log for details.

TrapezoidalIntegration.jl

trapz

Missing docstring.

Missing docstring for KomaMRI.trapz. Check Documenter's build log for details.

cumtrapz

Missing docstring.

Missing docstring for KomaMRI.cumtrapz. Check Documenter's build log for details.

TimeStepCalculation.jl

points_from_key_times

Missing docstring.

Missing docstring for KomaMRI.points_from_key_times. Check Documenter's build log for details.

get_variable_times

Missing docstring.

Missing docstring for KomaMRI.get_variable_times. Check Documenter's build log for details.

get_uniform_times

Missing docstring.

Missing docstring for KomaMRI.get_uniform_times. Check Documenter's build log for details.

kfoldperm

Missing docstring.

Missing docstring for KomaMRI.kfoldperm. Check Documenter's build log for details.

get_breaks_in_RF_key_points

Missing docstring.

Missing docstring for KomaMRI.get_breaks_in_RF_key_points. Check Documenter's build log for details.

SimulationCore.jl

Refer to API Documentation:

Missing docstring.

Missing docstring for KomaMRI.print_gpus. Check Documenter's build log for details.

run_spin_precession

Missing docstring.

Missing docstring for KomaMRI.run_spin_precession. Check Documenter's build log for details.

run_spin_precession_parallel

Missing docstring.

Missing docstring for KomaMRI.run_spin_precession_parallel. Check Documenter's build log for details.

run_spin_excitation

Missing docstring.

Missing docstring for KomaMRI.run_spin_excitation. Check Documenter's build log for details.

run_spin_excitation_parallel

Missing docstring.

Missing docstring for KomaMRI.run_spin_excitation_parallel. Check Documenter's build log for details.

run_sim_time_iter

Missing docstring.

Missing docstring for KomaMRI.run_sim_time_iter. Check Documenter's build log for details.

DisplayFunctions.jl

Refer to API Documentation:

theme_chooser

Missing docstring.

Missing docstring for KomaMRI.theme_chooser. Check Documenter's build log for details.

interp_map

Missing docstring.

Missing docstring for KomaMRI.interp_map. Check Documenter's build log for details.

plot_dict

KomaMRIPlots.plot_dictFunction
str = plot_dict(dict::Dict)

Generates an HTML table based on the dictionary dict.

Arguments

  • dict: (::Dict) dictionary

Returns

  • str: (::String) dictionary as an HTML table
diff --git a/dev/events/index.html b/dev/events/index.html index 77c92a9b2..30acd525e 100644 --- a/dev/events/index.html +++ b/dev/events/index.html @@ -1,5 +1,5 @@ -Events Definition · KomaMRI.jl: General MRI simulation framework

Event Definitions

We refer to RF, Grad, and ADC as "events". This section covers the details of how events are defined and manipulated within a Sequence struct.

Sequence Events

As we already know, a Sequence struct contains field names that store arrays of RF, Grad and ADC structs. To create a Sequence, it's essential to understand how to create these fundamental events.

In the following subsections, we will provide detailed explanations of event parameters and how to create a Sequence using RF, Grad and ADC events.

RF

The RF struct is defined in the source code of KomaMRI as follows:

mutable struct RF
+Sequence Events · KomaMRI.jl: General MRI simulation framework

Sequence Events

We refer to RF, Grad, and ADC as "events". This section covers the details of how events are defined and manipulated within a Sequence struct.

Sequence Events

As we already know, a Sequence struct contains field names that store arrays of RF, Grad and ADC structs. To create a Sequence, it's essential to understand how to create these fundamental events.

In the following subsections, we will provide detailed explanations of event parameters and how to create a Sequence using RF, Grad and ADC events.

RF

The RF struct is defined in the source code of KomaMRI as follows:

mutable struct RF
     A
     T
     Δf
@@ -12,7 +12,7 @@
 julia> seq = Sequence(); seq += rf; seq = seq[2:end]
 Sequence[ τ = 0.6 ms | blocks: 1 | ADC: 0 | GR: 0 | RF: 1 | DEF: 0 ]
 
-julia> plot_seq(seq)

RF Uniformly-Sampled Waveform

julia> tl = -3:0.2:-0.2; tr = 0.2:0.2:3;
+julia> plot_seq(seq; slider=false)

RF Uniformly-Sampled Waveform

julia> tl = -3:0.2:-0.2; tr = 0.2:0.2:3;
 
 julia> A = (10e-3)*[sin.(π*tl)./(π*tl); 1; sin.(π*tr)./(π*tr)];
 
@@ -24,7 +24,7 @@
 julia> seq = Sequence(); seq += rf; seq = seq[2:end]
 Sequence[ τ = 0.6 ms | blocks: 1 | ADC: 0 | GR: 0 | RF: 1 | DEF: 0 ]
 
-julia> plot_seq(seq)

RF Time-Shaped Waveform

julia> tl = -4:0.2:-0.2; tr = 0.2:0.2:4
+julia> plot_seq(seq; slider=false)

RF Time-Shaped Waveform

julia> tl = -4:0.2:-0.2; tr = 0.2:0.2:4
 
 julia> A = (10e-3)*[sin.(π*tl)./(π*tl); 1; sin.(π*tr)./(π*tr)]
 
@@ -38,7 +38,7 @@
 julia> seq = Sequence(); seq += rf; seq = seq[2:end]
 Sequence[ τ = 4.1 ms | blocks: 1 | ADC: 0 | GR: 0 | RF: 1 | DEF: 0 ]
 
-julia> plot_seq(seq)

Gradient

The Grad struct is defined as follows in the source code of KomaMRI:

mutable struct Grad
+julia> plot_seq(seq; slider=false)

Gradient

The Grad struct is defined as follows in the source code of KomaMRI:

mutable struct Grad
     A
     T
     rise::Real
@@ -52,7 +52,7 @@
 julia> seq = Sequence([gr])
 Sequence[ τ = 9.0 ms | blocks: 1 | ADC: 0 | GR: 1 | RF: 0 | DEF: 0 ]
 
-julia> plot_seq(seq)

Gradient Uniformly-Sampled Waveform

julia> t = 0:0.25:7.5
+julia> plot_seq(seq; slider=false)

Gradient Uniformly-Sampled Waveform

julia> t = 0:0.25:7.5
 
 julia> A = 10*10e-6 * sqrt.(π*t) .* sin.(π*t)
 
@@ -66,7 +66,7 @@
 julia> seq = Sequence([gr])
 Sequence[ τ = 12.0 ms | blocks: 1 | ADC: 0 | GR: 1 | RF: 0 | DEF: 0 ]
 
-julia> plot_seq(seq)

Gradient Time-Shaped Waveform

julia> A = 50*10e-6*[1; 1; 0.8; 0.8; 1; 1];
+julia> plot_seq(seq; slider=false)

Gradient Time-Shaped Waveform

julia> A = 50*10e-6*[1; 1; 0.8; 0.8; 1; 1];
 
 julia> T = 1e-3*[5; 0.2; 5; 0.2; 5];
 
@@ -78,7 +78,7 @@
 julia> seq = Sequence([gr])
 Sequence[ τ = 10.75 ms | blocks: 1 | ADC: 0 | GR: 1 | RF: 0 | DEF: 0 ]
 
-julia> plot_seq(seq)

ADC

The ADC struct is defined in the KomaMRI source code as follows:

mutable struct ADC
+julia> plot_seq(seq; slider=false)

ADC

The ADC struct is defined in the KomaMRI source code as follows:

mutable struct ADC
     N::Integer
     T::Real
     delay::Real
@@ -92,7 +92,7 @@
 julia> seq = Sequence(); seq += adc; seq = seq[2:end]
 Sequence[ τ = 6.0 ms | blocks: 1 | ADC: 1 | GR: 0 | RF: 0 | DEF: 0 ]
 
-julia> plot_seq(seq)

Combination of Events

We can include multiple events within a single block of a sequence. The example below demonstrates how to combine an RF struct, three Grad structs for the x-y-z components, and an ADC struct in a single block of a sequence:

# Define an RF struct
+julia> plot_seq(seq; slider=false)

Combination of Events

We can include multiple events within a single block of a sequence. The example below demonstrates how to combine an RF struct, three Grad structs for the x-y-z components, and an ADC struct in a single block of a sequence:

# Define an RF struct
 A, T =  1e-6*[0; -0.1; 0.2; -0.5; 1; -0.5; 0.2; -0.1; 0], 0.5e-3;
 rf = RF(A, T)
 
@@ -115,4 +115,4 @@
 adc = ADC(N, T, delay)
julia> seq = Sequence([gx; gy; gz;;], [rf;;], [adc])
 Sequence[ τ = 9.0 ms | blocks: 1 | ADC: 1 | GR: 3 | RF: 1 | DEF: 0 ]
 
-julia> plot_seq(seq)

Once the struct events are defined, it's important to note that to create a single block sequence, you need to provide 2D matrices of Grad and RF structs, as well as a vector of ADC structs as arguments in the Sequence constructor.

+julia> plot_seq(seq; slider=false)

Once the struct events are defined, it's important to note that to create a single block sequence, you need to provide 2D matrices of Grad and RF structs, as well as a vector of ADC structs as arguments in the Sequence constructor.

diff --git a/dev/generated/examples/01-FID/index.html b/dev/generated/examples/01-FID/index.html index cd452c5a2..3e706e7de 100644 --- a/dev/generated/examples/01-FID/index.html +++ b/dev/generated/examples/01-FID/index.html @@ -1,5 +1,5 @@ -Free Induction Decay · KomaMRI.jl: General MRI simulation framework

Free Induction Decay

First of all, let's use the KomaMRI package and define the default scanner.

using KomaMRI
+Free Induction Decay · KomaMRI.jl: General MRI simulation framework

Free Induction Decay

First of all, let's use the KomaMRI package and define the default scanner.

using KomaMRI
 sys = Scanner() # default hardware definition
Scanner
   B0: Float64 1.5
   B1: Float64 1.0e-5
@@ -39,4 +39,4 @@
 

Finally, to simulate we will need to use the function simulate.

raw = simulate(obj, seq, sys)
RawAcquisitionData[SeqName: NoName | 1 Profile(s) of 8192×1]

To plot the results we will need to use the plot_signal function

p2 = plot_signal(raw; slider=false, height=300)
"../../assets/examples/1-signal.html"

Nice!, we can see that $S(t)$ follows an exponential decay $\exp(-t/T_2)$ as expected.

For a little bit of spiciness, let's add off-resonance to our example. We will use $\Delta f=-100\,\mathrm{Hz}$. For this, we will need to add a definition for Δw in our Phantom

obj = Phantom{Float64}(x=[0.], T1=[1000e-3], T2=[100e-3], Δw=[-2π*100])# and simulate again.
 
 raw = simulate(obj, seq, sys)
-p3 = plot_signal(raw; slider=false, height=300)
"../../assets/examples/1-signal2.html"

The signal now follows an exponential of the form $\exp(-t/T_2)\cdot\exp(-i\Delta\omega t)$. The addition of $\exp(-i\Delta\omega t)$ to the signal will generate a shift in the image space (Fourier shifting property). This effect will be better visualized and explained in later examples.


This page was generated using Literate.jl.

+p3 = plot_signal(raw; slider=false, height=300)
"../../assets/examples/1-signal2.html"

The signal now follows an exponential of the form $\exp(-t/T_2)\cdot\exp(-i\Delta\omega t)$. The addition of $\exp(-i\Delta\omega t)$ to the signal will generate a shift in the image space (Fourier shifting property). This effect will be better visualized and explained in later examples.


This page was generated using Literate.jl.

diff --git a/dev/generated/examples/02-SmallTipApproximation/index.html b/dev/generated/examples/02-SmallTipApproximation/index.html index 85aa4dc7f..0d557f302 100644 --- a/dev/generated/examples/02-SmallTipApproximation/index.html +++ b/dev/generated/examples/02-SmallTipApproximation/index.html @@ -1,5 +1,5 @@ -Small Tip Angle Approximation · KomaMRI.jl: General MRI simulation framework

Small Tip Angle Approximation

Based on the results in page 41 of the book "Handbook of MRI Pulse Sequences" by Bernstein et al.

50

In this example, we will showcase a common approximation in MRI, the small tip angle approximation. For this, we will simulate a slice profile for spins with positions $z\in[-2,\,2]\,\mathrm{cm}$ and with a gradient $G_{z}$ so their frequencies are mapped to $f\in[-5,\,5]\,\mathrm{kHz}$. To start, we define an RF pulse with a flip angle of 30 deg and pulse duration of $T_{\mathrm{rf}}=3.2\,\mathrm{ms}$.

B1 = 4.92e-6
+Small Tip Angle Approximation · KomaMRI.jl: General MRI simulation framework

Small Tip Angle Approximation

Based on the results in page 41 of the book "Handbook of MRI Pulse Sequences" by Bernstein et al.

50

In this example, we will showcase a common approximation in MRI, the small tip angle approximation. For this, we will simulate a slice profile for spins with positions $z\in[-2,\,2]\,\mathrm{cm}$ and with a gradient $G_{z}$ so their frequencies are mapped to $f\in[-5,\,5]\,\mathrm{kHz}$. To start, we define an RF pulse with a flip angle of 30 deg and pulse duration of $T_{\mathrm{rf}}=3.2\,\mathrm{ms}$.

B1 = 4.92e-6
 Trf = 3.2e-3
 zmax = 2e-2
 fmax = 5e3
@@ -39,4 +39,4 @@
 scale_factor = maximum(abs.(M.xy)) / maximum(FT_dat_pad) # hide
 s2 = scatter(x=u, y=FT_dat_pad*scale_factor, name="|FT(B₁(t))|", line=attr(dash="dash")) # hide
 pa = plot([s1,s2], Layout(title="120 deg SINC pulse (TBP=8, Hamming)", xaxis_title="Frequency [Hz]", xaxis_range=[-fmax,fmax])) # hide
-savefig(pa, "../../assets/examples/4a-profile.html") # hide

For this case, the small tip angle approximation breaks 😢, thus, the reason for its name!

This basic sinc pulse is not designed to be $B_{1}$-insensitive. Some adiabatic RF pulses have been proposed to achieve this. Watch out for a future example showing these adiabatic RF pulses 👀.


This page was generated using Literate.jl.

+savefig(pa, "../../assets/examples/4a-profile.html") # hide

For this case, the small tip angle approximation breaks 😢, thus, the reason for its name!

This basic sinc pulse is not designed to be $B_{1}$-insensitive. Some adiabatic RF pulses have been proposed to achieve this. Watch out for a future example showing these adiabatic RF pulses 👀.


This page was generated using Literate.jl.

diff --git a/dev/generated/examples/03-ChemicalShiftEPI/index.html b/dev/generated/examples/03-ChemicalShiftEPI/index.html index e574830e3..84a358acd 100644 --- a/dev/generated/examples/03-ChemicalShiftEPI/index.html +++ b/dev/generated/examples/03-ChemicalShiftEPI/index.html @@ -1,5 +1,5 @@ -Chemical Shift in an EPI sequence · KomaMRI.jl: General MRI simulation framework

Chemical Shift in an EPI sequence

Scanner
+Chemical Shift in an EPI sequence · KomaMRI.jl: General MRI simulation framework

Chemical Shift in an EPI sequence

Scanner
   B0: Float64 1.5
   B1: Float64 1.0e-5
   Gmax: Float64 0.06
@@ -27,4 +27,4 @@
 
 # Plotting the recon
 slice_abs = abs.(image[:, :, 1])
-p5 = plot_image(slice_abs; height=400)
"../../assets/examples/2-recon.html"

This page was generated using Literate.jl.

+p5 = plot_image(slice_abs; height=400)
"../../assets/examples/2-recon.html"

This page was generated using Literate.jl.

diff --git a/dev/generated/examples/04-3DSliceSelective/index.html b/dev/generated/examples/04-3DSliceSelective/index.html index 079dbb6bb..380d6904b 100644 --- a/dev/generated/examples/04-3DSliceSelective/index.html +++ b/dev/generated/examples/04-3DSliceSelective/index.html @@ -1,5 +1,5 @@ -Slice Selective Acquisition of 3D Phantom · KomaMRI.jl: General MRI simulation framework

Slice Selective Acquisition of 3D Phantom

Scanner
+Slice Selective Acquisition of 3D Phantom · KomaMRI.jl: General MRI simulation framework

Slice Selective Acquisition of 3D Phantom

Scanner
   B0: Float64 1.5
   B1: Float64 1.0e-5
   Gmax: Float64 0.06
@@ -35,4 +35,4 @@
 p6 = plot_image(abs.(image[:, :, 3]); height=360, title="Slice 3")
 savefig(p4, "../../assets/examples/3-recon1.html") # hide
 savefig(p5, "../../assets/examples/3-recon2.html") # hide
-savefig(p6, "../../assets/examples/3-recon3.html") # hide

This page was generated using Literate.jl.

+savefig(p6, "../../assets/examples/3-recon3.html") # hide

This page was generated using Literate.jl.

diff --git a/dev/getting-started/index.html b/dev/getting-started/index.html index 6cdc8728f..3af4b2dc3 100644 --- a/dev/getting-started/index.html +++ b/dev/getting-started/index.html @@ -1,6 +1,6 @@ -Getting Started · KomaMRI.jl: General MRI simulation framework

Getting Started

Installing Julia

KomaMRI was written in Julia, so the first thing you should do is to install it! The latest version of Julia can be downloaded at the Julia Downloads page. It is advisable you add julia to the PATH, which can be done during the installation process.

Installing KomaMRI

Once Julia is installed, open the Julia REPL, and add the KomaMRI package by typing the following commands:

  • Press the ] key and then press enter to bring up Julia's package manager.
  • Type add KomaMRI and then press enter in the package manager session.

This process should take about 5 minutes in a fresh Julia installation. Here is how it looks in the Julia REPL:

julia> ]
+Getting Started · KomaMRI.jl: General MRI simulation framework

Getting Started

Installing Julia

KomaMRI was written in Julia, so the first thing you should do is to install it! The latest version of Julia can be downloaded at the Julia Downloads page. It is advisable you add julia to the PATH, which can be done during the installation process.

Installing KomaMRI

Once Julia is installed, open the Julia REPL, and add the KomaMRI package by typing the following commands:

  • Press the ] key and then press enter to bring up Julia's package manager.
  • Type add KomaMRI and then press enter in the package manager session.

This process should take about 5 minutes in a fresh Julia installation. Here is how it looks in the Julia REPL:

julia> ]
 
 (@v1.9) pkg> add KomaMRI

Then press Ctrl+C or backspace to return to the julia> prompt.


My First MRI Simulation

For our first simulation we will use KomaMRI's graphical user interface (GUI). For this, you will first need to load KomaMRI by typing using KomaMRI, and then launch the GUI with KomaUI().

julia> using KomaMRI
 
-julia> KomaUI()

The first time you use this command it may take more time than usual, but a window with the Koma GUI will pop up:

The user interface has some basic definitions for the scanner, phantom, and sequence already preloaded. So you can immediately interact with the simulation and reconstruction processes, and then visualize the results.

As a simple demonstration, press the Simulate! button and wait until the simulation is ready. Now you have acquired the Raw Signal and you should see the following:

Then, press the Reconstruct! button and wait until the reconstruction ends. Now you have reconstructed an Image from the Raw Signal and you should see the following in the GUI:

Congratulations, you successfully simulated an MRI acquisition! 🎊

+julia> KomaUI()

The first time you use this command it may take more time than usual, but a window with the Koma GUI will pop up:

The user interface has some basic definitions for the scanner, phantom, and sequence already preloaded. So you can immediately interact with the simulation and reconstruction processes, and then visualize the results.

As a simple demonstration, press the Simulate! button and wait until the simulation is ready. Now you have acquired the Raw Signal and you should see the following:

Then, press the Reconstruct! button and wait until the reconstruction ends. Now you have reconstructed an Image from the Raw Signal and you should see the following in the GUI:

Congratulations, you successfully simulated an MRI acquisition! 🎊

diff --git a/dev/index.html b/dev/index.html index 03a486146..7803df379 100644 --- a/dev/index.html +++ b/dev/index.html @@ -1,3 +1,3 @@ -Home · KomaMRI.jl: General MRI simulation framework

Introduction

KomaMRI is a Julia package meant to simulate general Magnetic Resonance Imaging (MRI) scenarios. Its name comes from the Japanese word for spinning-top こま (ko-ma) as they precess due to gravity like spins in a magnetic field.

KomaMRI generates raw data by solving the Bloch equations using the specified scanner, phantom and sequence. It also provides a Graphical User Interface (GUI) that encapsulates the whole imaging pipeline (simulation and reconstruction).

-

KomaMRI can be used by either:

  • User Interface: User-friendly interaction. No Julia programming skills are required. Refer to Simulation with User Interface to dive into the details of how to use the GUI.

  • Scripts : Basic knowledge of Julia is required. Refer to Simulation with Scripts to follow a basic workflow on how to work with KomaMRI.

If you are new to KomaMRI, we recommend starting with the "Getting Started" section to install Julia, KomaMRI, and perform your first simulation.

Features

Some of the features of KomaMRI are:

  • Fast simulations by using CPU and GPU parallelization 🏃💨.
  • Open Source, so anyone can include additional features 🆙.
  • Compatibility with community-standards 🤝 like Pulseq .seq and ISMRMRD .mrd.
  • Compatibility with Pluto and Jupyter notebooks 🎈
  • Cross-platform 🌐 thanks to the use of the Julia programming language.
  • Friendly user interface for people with no programming skills 😌.
  • Flexible API for advanced users 👨‍💻.

Potential Use Cases

We see Koma being used in:

  • The generation of synthetic data to train Machine Learning models.
  • To test novel pulse sequences before implementing them directly in a real scanner (with a Pulseq sequence).
  • Teaching exercises for MRI acquisition or reconstruction.
+Home · KomaMRI.jl: General MRI simulation framework

Introduction

KomaMRI is a Julia package meant to simulate general Magnetic Resonance Imaging (MRI) scenarios. Its name comes from the Japanese word for spinning-top こま (ko-ma) as they precess due to gravity like spins in a magnetic field.

KomaMRI generates raw data by solving the Bloch equations using the specified scanner, phantom and sequence. It also provides a Graphical User Interface (GUI) that encapsulates the whole imaging pipeline (simulation and reconstruction).

+

KomaMRI can be used in different environments:

  • User Interface: User-friendly interaction. No Julia programming skills are required. Refer to the User Interface Section to dive into the details of how to use the GUI.

  • Scripts : Basic knowledge of Julia is required. Refer to the Scripts Section to follow a basic workflow on how to work with KomaMRI.

  • Notebooks: Basic knowledge of Julia is required. This serves as an alternative development environment featuring user-friendly interactive tools. For guidance on setting up these environments, refer to the Notebooks Section.

If you are new to KomaMRI, we recommend starting with the "Getting Started" section to install Julia, KomaMRI, and perform your first simulation.

Features

Some of the features of KomaMRI are:

  • Fast simulations by using CPU and GPU parallelization 🏃💨.
  • Open Source, so anyone can include additional features 🆙.
  • Compatibility with community-standards 🤝 like Pulseq .seq and ISMRMRD .mrd.
  • Compatibility with Pluto and Jupyter notebooks 🎈
  • Cross-platform 🌐 thanks to the use of the Julia programming language.
  • Friendly user interface for people with no programming skills 😌.
  • Flexible API for advanced users 👨‍💻.

Potential Use Cases

We see Koma being used in:

  • The generation of synthetic data to train Machine Learning models.
  • To test novel pulse sequences before implementing them directly in a real scanner (with a Pulseq sequence).
  • Teaching exercises for MRI acquisition or reconstruction.
diff --git a/dev/mri-theory-informal/index.html b/dev/mri-theory-informal/index.html index c558ee0cc..2df949a12 100644 --- a/dev/mri-theory-informal/index.html +++ b/dev/mri-theory-informal/index.html @@ -1,5 +1,5 @@ -MRI Theory · KomaMRI.jl: General MRI simulation framework

MRI Theory

This section is meant to be a general overview or summary of the main MRI concepts and insights. It is a good starting point to show up the most relevant components involved and how they are related for raw signal acquisition and image reconstruction. The idea is to have a fresh and clear understanding of what is happening behind the scenes when using the KomaMRI.jl package. Some light background in Differential Equations, Signal Processing and Fourier Theory is advisable to follow along.

Raw Signal Generation

In order to generate an image from a phantom object with a scanner system and sequence signals, its necessary to acquire a raw signal $s(t)$. This signal can be though as the sum of all spin magnetizations $M$ of the object:

\[s(t) = +MRI Theory · KomaMRI.jl: General MRI simulation framework

MRI Theory

This section is meant to be a general overview or summary of the main MRI concepts and insights. It is a good starting point to show up the most relevant components involved and how they are related for raw signal acquisition and image reconstruction. The idea is to have a fresh and clear understanding of what is happening behind the scenes when using the KomaMRI.jl package. Some light background in Differential Equations, Signal Processing and Fourier Theory is advisable to follow along.

Raw Signal Generation

In order to generate an image from a phantom object with a scanner system and sequence signals, its necessary to acquire a raw signal $s(t)$. This signal can be though as the sum of all spin magnetizations $M$ of the object:

\[s(t) = \int_{x} \int_{y} \int_{z} \underbrace{ M(x, y, z, t) @@ -120,4 +120,4 @@ \end{pmatrix} = \int_{x} \int_{y} \int_{z} \vec{M}(x, y, z, t) -\: \mathrm{d}z \: \mathrm{d}y \: \mathrm{d}x\]

+\: \mathrm{d}z \: \mathrm{d}y \: \mathrm{d}x\]

diff --git a/dev/mri-theory/index.html b/dev/mri-theory/index.html index d2b22a82f..7ed97681c 100644 --- a/dev/mri-theory/index.html +++ b/dev/mri-theory/index.html @@ -1,5 +1,5 @@ -Simulation · KomaMRI.jl: General MRI simulation framework

Simulation

General Overview

KomaMRI simulates the magnetization of each spin of a Phantom for variable magnetic fields given by a Sequence. It is assumed that a single spin is independent of the state of the other spins in the system (a key feature that enables parallelization). Furthermore, there are defined two regimes in the Sequence: excitation and precession. During the latter, the excitation fields are nulled and are useful for simplifying some physical equations.

The are more internal considerations in the KomaMRI implementation. The Figure 1 summarizes the functions called to perform the simulation.

+Simulation · KomaMRI.jl: General MRI simulation framework

Simulation

General Overview

KomaMRI simulates the magnetization of each spin of a Phantom for variable magnetic fields given by a Sequence. It is assumed that a single spin is independent of the state of the other spins in the system (a key feature that enables parallelization). Furthermore, there are defined two regimes in the Sequence: excitation and precession. During the latter, the excitation fields are nulled and are useful for simplifying some physical equations.

The are more internal considerations in the KomaMRI implementation. The Figure 1 summarizes the functions called to perform the simulation.

Figure 1: The sequence ${\tt seq }$ is discretized after calculating the required time points in the wrapper function ${\tt simulate}$. The time points are then divided into ${\tt Nblocks}$ to reduce the amount of memory used. The phantom ${\tt obj}$ is divided into ${\tt Nthreads}$, and ${\bf KomaMRI}$ will use either ${\tt run\_spin\_excitation!}$ or ${\tt run\_spin\_precession!}$ depending on the regime. If an ${\tt ADC}$ object is present, the simulator will add the signal contributions of each thread to construct the acquired signal ${\tt sig[t]}$. All the parameters: ${\tt Nthreads}$, ${\tt Nblocks}$, ${\tt Δt_{rf}}$, and ${\tt Δt}$, are passed through a dictionary called ${\tt sim\_params}$ as an optional parameter of the simulate function. @@ -47,4 +47,4 @@
Figure 2: Solution of the Bloch equations for one time step can be described by (2) a rotation and (3) a relaxation step.
-

BlochDict Simulation Method

This is another simulation method defined in the source code of KomaMRI. It can be specified by setting the sim_method = BlochDict() entry of the sim_params dictionary.

Note

This section is under construction. More explanation of this simulation method is required.

+

BlochDict Simulation Method

This is another simulation method defined in the source code of KomaMRI. It can be specified by setting the sim_method = BlochDict() entry of the sim_params dictionary.

Note

This section is under construction. More explanation of this simulation method is required.

diff --git a/dev/notebooks/index.html b/dev/notebooks/index.html index 100d6362d..3053af2d5 100644 --- a/dev/notebooks/index.html +++ b/dev/notebooks/index.html @@ -1,9 +1,9 @@ -Notebooks · KomaMRI.jl: General MRI simulation framework

Notebooks

You can use KomaMRI with popular programming environments such as Pluto and Jupyter notebooks. The following sections show how to set up these notebooks and test KomaMRI with them.

Using KomaMRI with Pluto

First, install the Pluto module in your Julia environment. Remember to press the ] button to open the Package Manager Session:"

julia>
+Notebooks · KomaMRI.jl: General MRI simulation framework

Notebooks

You can use KomaMRI with popular programming environments such as Pluto and Jupyter notebooks. The following sections show how to set up these notebooks and test KomaMRI with them.

Using KomaMRI with Pluto

First, install the Pluto module in your Julia environment. Remember to press the ] button to open the Package Manager Session:

julia>
 
 @(1.9) pkg> add Pluto

Afterward, return to the Julia Session by pressing the backspace button, and then execute the Pluto.run() function:

julia> using Pluto
 
-julia> Pluto.run()

This should automatically open the Pluto dashboard in your default web browser:

Next, create a new notebook by clicking on + Create a new notebook:

Write and run the following code, which is identical to the Free Induction Decay example. Pluto automatically installs the required modules if they are not present on your system. Additionally, note that we do not use KomaMRI directly since we won't be utilizing the KomaUI() function. Instead, we rely on the KomaMRICore and KomaMRIPlots dependencies. To display plots in Pluto, ensure that you import the PlutoPlots package:"

Using KomaMRI with Jupyter

Ensure you have Jupyter installed on your computer. Follow this tutorial for installation using Anaconda.

Next, install the IJulia module in your Julia environment. Remember to press the ] key to open the Package Manager Session:

julia>
+julia> Pluto.run()

This should automatically open the Pluto dashboard in your default web browser:

Next, create a new notebook by clicking on + Create a new notebook:

Write and run the following code, which is identical to the Free Induction Decay example. Pluto automatically installs the required modules if they are not present on your system. Additionally, note that we do not directly use KomaMRI since we won't be utilizing the KomaUI() function. Instead, we rely on the KomaMRICore and KomaMRIPlots dependencies. To display plots in Pluto, ensure that you import the PlutoPlotly package, as KomaMRIPlots requires its backend to display figures in Pluto:

One of the most outstanding features of Pluto is its ability to ensure reproducibility by storing the information necessary to recreate the package environment in the notebook file. When others open your notebook with Pluto, it automatically ensures they use the exact same package environment, guaranteeing seamless functionality on their computers.

Using KomaMRI with Jupyter

Ensure you have Jupyter installed on your computer. Follow this tutorial for installation using Anaconda.

Next, install the IJulia module in your Julia environment. Remember to press the ] key to open the Package Manager Session:

julia>
 
 (@v1.9) pkg> add IJulia

For this example, make sure to install KomaMRICore and KomaMRIPlots (we do not use KomaMRI directly since we won't be utilizing the KomaUI() function):

(@v1.9) pkg> add KomaMRICore
 
@@ -25,4 +25,4 @@
 seq += acq        # adding ADC-only block
 
 # Plot the sequence
-plot_seq(seq; slider=false, height=300)

This should be sufficient, and now you can start working with KomaMRI using Jupyter notebooks.

If you encounter the issue of WebIO not being detected:

Refer to this troubleshooting guide for details. Essentially, you need to install a WebIO extension based on your Jupyter installation.

+plot_seq(seq; slider=false, height=300)

This should be sufficient, and now you can start working with KomaMRI using Jupyter notebooks.

If you encounter the issue of WebIO not being detected:

Refer to this IJulia documentation and this troubleshooting guide for details. Essentially, you need to install a WebIO extension depending on your Jupyter installation.

diff --git a/dev/programming-workflow/index.html b/dev/programming-workflow/index.html index ebd1a90ba..151f8dcad 100644 --- a/dev/programming-workflow/index.html +++ b/dev/programming-workflow/index.html @@ -1,5 +1,5 @@ -Simulation with Scripts · KomaMRI.jl: General MRI simulation framework

Julia Scripts

You should already be familiar with the Graphical User Interface of KomaMRI. However, you can also use this package directly from the Julia REPL or write your own Julia scripts. This allows you to unlock the full potential of KomaMRI, enabling you to utilize more of its functionalities and even test your own MRI ideas.

This section demonstrates a basic workflow with KomaMRI through writing your own scripts or entering commands directly into the Julia REPL. Let's begin.

Basic Workflow

(You can also go to analog steps using UI)

As a general overview, remember the following workflow steps when using KomaMRI:

  • Loading Simulation Inputs: Scanner, Phantom, Sequence
  • Running Simulation
  • Reconstructing Image using MRIReco

Let's replicate these previous steps in a Julia script. You will obtain the following code, which you can copy and paste into the Julia REPL:

# Import the package
+Julia Scripts · KomaMRI.jl: General MRI simulation framework

Julia Scripts

You should already be familiar with the Graphical User Interface of KomaMRI. However, you can also use this package directly from the Julia REPL or write your own Julia scripts. This allows you to unlock the full potential of KomaMRI, enabling you to utilize more of its functionalities and even test your own MRI ideas.

This section demonstrates a basic workflow with KomaMRI through writing your own scripts or entering commands directly into the Julia REPL. Let's begin.

Basic Workflow

(You can also go to analog steps using UI)

As a general overview, remember the following workflow steps when using KomaMRI:

  • Loading Simulation Inputs: Scanner, Phantom, Sequence
  • Running Simulation
  • Reconstructing Image using MRIReco

Let's replicate these previous steps in a Julia script. You will obtain the following code, which you can copy and paste into the Julia REPL:

# Import the package
 using KomaMRI
 
 # Define scanner, object and sequence
@@ -106,4 +106,4 @@
 raw = simulate(obj, seq, sys; sim_params)
 
 # Save the .mat file in the temp directory
-matwrite(joinpath(tempdir(), "koma-raw.mat"), Dict("raw" => raw))

Note that we need to simulate to return an array type (not the default RawAcquisitionData), and then we utilize the matwrite function to save a file named "koma-raw.mat" in your computer's temporary directory. Now, you can navigate to your temporary directory (which you can find by displaying the result of tempdir() in the Julia REPL) and locate the "koma-raw.mat" file.

+matwrite(joinpath(tempdir(), "koma-raw.mat"), Dict("raw" => raw))

Note that we need to simulate to return an array type (not the default RawAcquisitionData), and then we utilize the matwrite function to save a file named "koma-raw.mat" in your computer's temporary directory. Now, you can navigate to your temporary directory (which you can find by displaying the result of tempdir() in the Julia REPL) and locate the "koma-raw.mat" file.

diff --git a/dev/search/index.html b/dev/search/index.html index 1c5c99d37..d2f456e66 100644 --- a/dev/search/index.html +++ b/dev/search/index.html @@ -1,2 +1,2 @@ -Search · KomaMRI.jl: General MRI simulation framework +Search · KomaMRI.jl: General MRI simulation framework

Loading search...

    diff --git a/dev/search_index.js b/dev/search_index.js index b2d2706d1..7d6926693 100644 --- a/dev/search_index.js +++ b/dev/search_index.js @@ -1,3 +1,3 @@ var documenterSearchIndex = {"docs": -[{"location":"notebooks/#Notebooks","page":"Notebooks","title":"Notebooks","text":"","category":"section"},{"location":"notebooks/","page":"Notebooks","title":"Notebooks","text":"You can use KomaMRI with popular programming environments such as Pluto and Jupyter notebooks. The following sections show how to set up these notebooks and test KomaMRI with them.","category":"page"},{"location":"notebooks/#Using-KomaMRI-with-Pluto","page":"Notebooks","title":"Using KomaMRI with Pluto","text":"","category":"section"},{"location":"notebooks/","page":"Notebooks","title":"Notebooks","text":"First, install the Pluto module in your Julia environment. Remember to press the ] button to open the Package Manager Session:\"","category":"page"},{"location":"notebooks/","page":"Notebooks","title":"Notebooks","text":"julia>\n\n@(1.9) pkg> add Pluto","category":"page"},{"location":"notebooks/","page":"Notebooks","title":"Notebooks","text":"Afterward, return to the Julia Session by pressing the backspace button, and then execute the Pluto.run() function:","category":"page"},{"location":"notebooks/","page":"Notebooks","title":"Notebooks","text":"julia> using Pluto\n\njulia> Pluto.run()","category":"page"},{"location":"notebooks/","page":"Notebooks","title":"Notebooks","text":"This should automatically open the Pluto dashboard in your default web browser:","category":"page"},{"location":"notebooks/","page":"Notebooks","title":"Notebooks","text":"
    \"\"
    ","category":"page"},{"location":"notebooks/","page":"Notebooks","title":"Notebooks","text":"Next, create a new notebook by clicking on + Create a new notebook:","category":"page"},{"location":"notebooks/","page":"Notebooks","title":"Notebooks","text":"
    \"\"
    ","category":"page"},{"location":"notebooks/","page":"Notebooks","title":"Notebooks","text":"Write and run the following code, which is identical to the Free Induction Decay example. Pluto automatically installs the required modules if they are not present on your system. Additionally, note that we do not use KomaMRI directly since we won't be utilizing the KomaUI() function. Instead, we rely on the KomaMRICore and KomaMRIPlots dependencies. To display plots in Pluto, ensure that you import the PlutoPlots package:\"","category":"page"},{"location":"notebooks/","page":"Notebooks","title":"Notebooks","text":"","category":"page"},{"location":"notebooks/#Using-KomaMRI-with-Jupyter","page":"Notebooks","title":"Using KomaMRI with Jupyter","text":"","category":"section"},{"location":"notebooks/","page":"Notebooks","title":"Notebooks","text":"Ensure you have Jupyter installed on your computer. Follow this tutorial for installation using Anaconda.","category":"page"},{"location":"notebooks/","page":"Notebooks","title":"Notebooks","text":"Next, install the IJulia module in your Julia environment. Remember to press the ] key to open the Package Manager Session:","category":"page"},{"location":"notebooks/","page":"Notebooks","title":"Notebooks","text":"julia>\n\n(@v1.9) pkg> add IJulia","category":"page"},{"location":"notebooks/","page":"Notebooks","title":"Notebooks","text":"For this example, make sure to install KomaMRICore and KomaMRIPlots (we do not use KomaMRI directly since we won't be utilizing the KomaUI() function):","category":"page"},{"location":"notebooks/","page":"Notebooks","title":"Notebooks","text":"(@v1.9) pkg> add KomaMRICore\n\n(@v1.9) pkg> add KomaMRIPlots","category":"page"},{"location":"notebooks/","page":"Notebooks","title":"Notebooks","text":"Next, open Jupyter, navigate to a working folder, and create a new notebook by clicking on New, then Julia 1.9.3.\"","category":"page"},{"location":"notebooks/","page":"Notebooks","title":"Notebooks","text":"
    \"\"
    ","category":"page"},{"location":"notebooks/","page":"Notebooks","title":"Notebooks","text":"A new, empty notebook will appear:","category":"page"},{"location":"notebooks/","page":"Notebooks","title":"Notebooks","text":"
    \"\"
    ","category":"page"},{"location":"notebooks/","page":"Notebooks","title":"Notebooks","text":"Proceed to write and execute the provided example:","category":"page"},{"location":"notebooks/","page":"Notebooks","title":"Notebooks","text":"
    View code","category":"page"},{"location":"notebooks/","page":"Notebooks","title":"Notebooks","text":"# Import modules\nusing KomaMRICore, KomaMRIPlots\n\n# Define sequence\nampRF = 2e-6 # 2 uT RF amplitude\ndurRF = π / 2 / (2π * γ * ampRF) # required duration for a 90 deg RF pulse\nexc = RF(ampRF, durRF)\n\nnADC = 8192 # number of acquisition samples\ndurADC = 250e-3 # duration of the acquisition\ndelay = 1e-3 # small delay\nacq = ADC(nADC, durADC, delay)\n\nseq = Sequence() # empty sequence\nseq += exc # adding RF-only block\nseq += acq # adding ADC-only block\n\n# Plot the sequence\nplot_seq(seq; slider=false, height=300)","category":"page"},{"location":"notebooks/","page":"Notebooks","title":"Notebooks","text":"
    ","category":"page"},{"location":"notebooks/","page":"Notebooks","title":"Notebooks","text":"
    \"\"
    ","category":"page"},{"location":"notebooks/","page":"Notebooks","title":"Notebooks","text":"This should be sufficient, and now you can start working with KomaMRI using Jupyter notebooks.","category":"page"},{"location":"notebooks/","page":"Notebooks","title":"Notebooks","text":"If you encounter the issue of WebIO not being detected:","category":"page"},{"location":"notebooks/","page":"Notebooks","title":"Notebooks","text":"
    \"\"
    ","category":"page"},{"location":"notebooks/","page":"Notebooks","title":"Notebooks","text":"Refer to this troubleshooting guide for details. Essentially, you need to install a WebIO extension based on your Jupyter installation.","category":"page"},{"location":"generated/examples/04-3DSliceSelective/","page":"Slice Selective Acquisition of 3D Phantom","title":"Slice Selective Acquisition of 3D Phantom","text":"EditURL = \"../../../../examples/literate/examples/04-3DSliceSelective.jl\"","category":"page"},{"location":"generated/examples/04-3DSliceSelective/#Slice-Selective-Acquisition-of-3D-Phantom","page":"Slice Selective Acquisition of 3D Phantom","title":"Slice Selective Acquisition of 3D Phantom","text":"","category":"section"},{"location":"generated/examples/04-3DSliceSelective/","page":"Slice Selective Acquisition of 3D Phantom","title":"Slice Selective Acquisition of 3D Phantom","text":"(Image: ) (Image: )","category":"page"},{"location":"generated/examples/04-3DSliceSelective/","page":"Slice Selective Acquisition of 3D Phantom","title":"Slice Selective Acquisition of 3D Phantom","text":"using KomaMRI # hide\nsys = Scanner() # hide","category":"page"},{"location":"generated/examples/04-3DSliceSelective/","page":"Slice Selective Acquisition of 3D Phantom","title":"Slice Selective Acquisition of 3D Phantom","text":"While in the previous examples we simulated using hard RF pulses, in this demonstration we will illustrate the principles of slice selection. First, let's import a 3D phantom, in this case a brain slab (thickness of 2mathrmcm), by calling the function brain_phantom3D.","category":"page"},{"location":"generated/examples/04-3DSliceSelective/","page":"Slice Selective Acquisition of 3D Phantom","title":"Slice Selective Acquisition of 3D Phantom","text":"obj = brain_phantom3D()\nobj.Δw .= 0 # Removes the off-resonance\np1 = plot_phantom_map(obj, :T2 ; height=400)\nsavefig(p1, \"../../assets/examples/3-phantom.html\") # hide","category":"page"},{"location":"generated/examples/04-3DSliceSelective/","page":"Slice Selective Acquisition of 3D Phantom","title":"Slice Selective Acquisition of 3D Phantom","text":"
    ","category":"page"},{"location":"generated/examples/04-3DSliceSelective/","page":"Slice Selective Acquisition of 3D Phantom","title":"Slice Selective Acquisition of 3D Phantom","text":"Now, we are going to import a sequence which acquires 3 slices in the longitudinal axis. Note that the sequence contains three EPIs to acquire 3 slices of the phantom.","category":"page"},{"location":"generated/examples/04-3DSliceSelective/","page":"Slice Selective Acquisition of 3D Phantom","title":"Slice Selective Acquisition of 3D Phantom","text":"seq_file = joinpath(dirname(pathof(KomaMRI)), \"../examples/1.sequences/epi_multislice.seq\")\nseq = read_seq(seq_file)\np2 = plot_seq(seq; range=[0,10], height=400)\nsavefig(p2, \"../../assets/examples/3-seq.html\") # hide","category":"page"},{"location":"generated/examples/04-3DSliceSelective/","page":"Slice Selective Acquisition of 3D Phantom","title":"Slice Selective Acquisition of 3D Phantom","text":"","category":"page"},{"location":"generated/examples/04-3DSliceSelective/","page":"Slice Selective Acquisition of 3D Phantom","title":"Slice Selective Acquisition of 3D Phantom","text":"We can take a look to the slice profiles by using the function simulate_slice_profile:","category":"page"},{"location":"generated/examples/04-3DSliceSelective/","page":"Slice Selective Acquisition of 3D Phantom","title":"Slice Selective Acquisition of 3D Phantom","text":"z = range(-2., 2., 200) * 1e-2; # -2 to 2 cm\nrf1, rf2, rf3 = findall(is_RF_on.(seq))\nM1 = simulate_slice_profile(seq[rf1]; z)\nM2 = simulate_slice_profile(seq[rf2]; z)\nM3 = simulate_slice_profile(seq[rf3]; z)\n\nusing PlotlyJS # hide\npa = scatter(x=z*1e2, y=abs.(M1.xy), name=\"Slice 1\") # hide\npb = scatter(x=z*1e2, y=abs.(M2.xy), name=\"Slice 2\") # hide\npc = scatter(x=z*1e2, y=abs.(M3.xy), name=\"Slice 3\") # hide\npd = plot([pa,pb,pc], Layout(xaxis=attr(title=\"z [cm]\"), height=300,margin=attr(t=40,l=0,r=0), title=\"Slice profiles for the slice-selective sequence\")) # hide\nsavefig(pd, \"../../assets/examples/3-profile.html\") # hide","category":"page"},{"location":"generated/examples/04-3DSliceSelective/","page":"Slice Selective Acquisition of 3D Phantom","title":"Slice Selective Acquisition of 3D Phantom","text":"","category":"page"},{"location":"generated/examples/04-3DSliceSelective/","page":"Slice Selective Acquisition of 3D Phantom","title":"Slice Selective Acquisition of 3D Phantom","text":"Now let's simulate the acquisition. Notice the three echoes, one for every slice excitation.","category":"page"},{"location":"generated/examples/04-3DSliceSelective/","page":"Slice Selective Acquisition of 3D Phantom","title":"Slice Selective Acquisition of 3D Phantom","text":"raw = simulate(obj, seq, sys; sim_params=Dict{String,Any}(\"Nblocks\"=>20))\np3 = plot_signal(raw; slider=false, height=300)\nsavefig(p3, \"../../assets/examples/3-signal.html\") # hide","category":"page"},{"location":"generated/examples/04-3DSliceSelective/","page":"Slice Selective Acquisition of 3D Phantom","title":"Slice Selective Acquisition of 3D Phantom","text":"","category":"page"},{"location":"generated/examples/04-3DSliceSelective/","page":"Slice Selective Acquisition of 3D Phantom","title":"Slice Selective Acquisition of 3D Phantom","text":"Finally, we reconstruct the acquiered images.","category":"page"},{"location":"generated/examples/04-3DSliceSelective/","page":"Slice Selective Acquisition of 3D Phantom","title":"Slice Selective Acquisition of 3D Phantom","text":"# Get the acquisition data\nacq = AcquisitionData(raw)\n\n# Setting up the reconstruction parameters and perform reconstruction\nNx, Ny = raw.params[\"reconSize\"][1:2]\nreconParams = Dict{Symbol,Any}(:reco=>\"direct\", :reconSize=>(Nx, Ny))\nimage = reconstruction(acq, reconParams)\n\n# Plotting the slices\np4 = plot_image(abs.(image[:, :, 1]); height=360, title=\"Slice 1\")\np5 = plot_image(abs.(image[:, :, 2]); height=360, title=\"Slice 2\")\np6 = plot_image(abs.(image[:, :, 3]); height=360, title=\"Slice 3\")\nsavefig(p4, \"../../assets/examples/3-recon1.html\") # hide\nsavefig(p5, \"../../assets/examples/3-recon2.html\") # hide\nsavefig(p6, \"../../assets/examples/3-recon3.html\") # hide","category":"page"},{"location":"generated/examples/04-3DSliceSelective/","page":"Slice Selective Acquisition of 3D Phantom","title":"Slice Selective Acquisition of 3D Phantom","text":"","category":"page"},{"location":"generated/examples/04-3DSliceSelective/","page":"Slice Selective Acquisition of 3D Phantom","title":"Slice Selective Acquisition of 3D Phantom","text":"
    ","category":"page"},{"location":"generated/examples/04-3DSliceSelective/","page":"Slice Selective Acquisition of 3D Phantom","title":"Slice Selective Acquisition of 3D Phantom","text":"","category":"page"},{"location":"generated/examples/04-3DSliceSelective/","page":"Slice Selective Acquisition of 3D Phantom","title":"Slice Selective Acquisition of 3D Phantom","text":"This page was generated using Literate.jl.","category":"page"},{"location":"generated/examples/01-FID/","page":"Free Induction Decay","title":"Free Induction Decay","text":"EditURL = \"../../../../examples/literate/examples/01-FID.jl\"","category":"page"},{"location":"generated/examples/01-FID/#Free-Induction-Decay","page":"Free Induction Decay","title":"Free Induction Decay","text":"","category":"section"},{"location":"generated/examples/01-FID/","page":"Free Induction Decay","title":"Free Induction Decay","text":"(Image: ) (Image: )","category":"page"},{"location":"generated/examples/01-FID/","page":"Free Induction Decay","title":"Free Induction Decay","text":"First of all, let's use the KomaMRI package and define the default scanner.","category":"page"},{"location":"generated/examples/01-FID/","page":"Free Induction Decay","title":"Free Induction Decay","text":"using KomaMRI\nsys = Scanner() # default hardware definition","category":"page"},{"location":"generated/examples/01-FID/","page":"Free Induction Decay","title":"Free Induction Decay","text":"The free induction decay is the simplest observable NMR signal. This signal is the one that follows a single tipping RF pulse. To recreate this experiment, we will need to define a Sequence with 2 blocks.","category":"page"},{"location":"generated/examples/01-FID/","page":"Free Induction Decay","title":"Free Induction Decay","text":"The first block containing an RF pulse with a flip-angle of 90 deg,","category":"page"},{"location":"generated/examples/01-FID/","page":"Free Induction Decay","title":"Free Induction Decay","text":"ampRF = 2e-6 # 2 uT RF amplitude\ndurRF = π / 2 / (2π * γ * ampRF) # required duration for a 90 deg RF pulse\nexc = RF(ampRF,durRF)","category":"page"},{"location":"generated/examples/01-FID/","page":"Free Induction Decay","title":"Free Induction Decay","text":"and the second block containing the ADC.","category":"page"},{"location":"generated/examples/01-FID/","page":"Free Induction Decay","title":"Free Induction Decay","text":"nADC = 8192 # number of acquisition samples\ndurADC = 250e-3 # duration of the acquisition\ndelay = 1e-3 # small delay\nacq = ADC(nADC, durADC, delay)","category":"page"},{"location":"generated/examples/01-FID/","page":"Free Induction Decay","title":"Free Induction Decay","text":"Finally, we concatenate the sequence blocks to create the final sequence.","category":"page"},{"location":"generated/examples/01-FID/","page":"Free Induction Decay","title":"Free Induction Decay","text":"seq = Sequence() # empty sequence\nseq += exc # adding RF-only block\nseq += acq # adding ADC-only block\np1 = plot_seq(seq; slider=false, height=300)\nsavefig(p1, \"../../assets/examples/1-seq.html\") # hide","category":"page"},{"location":"generated/examples/01-FID/","page":"Free Induction Decay","title":"Free Induction Decay","text":"","category":"page"},{"location":"generated/examples/01-FID/","page":"Free Induction Decay","title":"Free Induction Decay","text":"Now, we will define a Phantom with a single spin at x=0 with T_1=1000mathrmms and T_2=100mathrmms.","category":"page"},{"location":"generated/examples/01-FID/","page":"Free Induction Decay","title":"Free Induction Decay","text":"obj = Phantom{Float64}(x=[0.], T1=[1000e-3], T2=[100e-3])","category":"page"},{"location":"generated/examples/01-FID/","page":"Free Induction Decay","title":"Free Induction Decay","text":"Finally, to simulate we will need to use the function simulate.","category":"page"},{"location":"generated/examples/01-FID/","page":"Free Induction Decay","title":"Free Induction Decay","text":"raw = simulate(obj, seq, sys)","category":"page"},{"location":"generated/examples/01-FID/","page":"Free Induction Decay","title":"Free Induction Decay","text":"To plot the results we will need to use the plot_signal function","category":"page"},{"location":"generated/examples/01-FID/","page":"Free Induction Decay","title":"Free Induction Decay","text":"p2 = plot_signal(raw; slider=false, height=300)\nsavefig(p2, \"../../assets/examples/1-signal.html\") # hide","category":"page"},{"location":"generated/examples/01-FID/","page":"Free Induction Decay","title":"Free Induction Decay","text":"","category":"page"},{"location":"generated/examples/01-FID/","page":"Free Induction Decay","title":"Free Induction Decay","text":"Nice!, we can see that S(t) follows an exponential decay exp(-tT_2) as expected.","category":"page"},{"location":"generated/examples/01-FID/","page":"Free Induction Decay","title":"Free Induction Decay","text":"For a little bit of spiciness, let's add off-resonance to our example. We will use Delta f=-100mathrmHz. For this, we will need to add a definition for Δw in our Phantom","category":"page"},{"location":"generated/examples/01-FID/","page":"Free Induction Decay","title":"Free Induction Decay","text":"obj = Phantom{Float64}(x=[0.], T1=[1000e-3], T2=[100e-3], Δw=[-2π*100])# and simulate again.\n\nraw = simulate(obj, seq, sys)\np3 = plot_signal(raw; slider=false, height=300)\nsavefig(p3, \"../../assets/examples/1-signal2.html\") # hide","category":"page"},{"location":"generated/examples/01-FID/","page":"Free Induction Decay","title":"Free Induction Decay","text":"","category":"page"},{"location":"generated/examples/01-FID/","page":"Free Induction Decay","title":"Free Induction Decay","text":"The signal now follows an exponential of the form exp(-tT_2)cdotexp(-iDeltaomega t). The addition of exp(-iDeltaomega t) to the signal will generate a shift in the image space (Fourier shifting property). This effect will be better visualized and explained in later examples.","category":"page"},{"location":"generated/examples/01-FID/","page":"Free Induction Decay","title":"Free Induction Decay","text":"","category":"page"},{"location":"generated/examples/01-FID/","page":"Free Induction Decay","title":"Free Induction Decay","text":"This page was generated using Literate.jl.","category":"page"},{"location":"mri-theory-informal/#MRI-Theory","page":"MRI Theory","title":"MRI Theory","text":"","category":"section"},{"location":"mri-theory-informal/","page":"MRI Theory","title":"MRI Theory","text":"This section is meant to be a general overview or summary of the main MRI concepts and insights. It is a good starting point to show up the most relevant components involved and how they are related for raw signal acquisition and image reconstruction. The idea is to have a fresh and clear understanding of what is happening behind the scenes when using the KomaMRI.jl package. Some light background in Differential Equations, Signal Processing and Fourier Theory is advisable to follow along. ","category":"page"},{"location":"mri-theory-informal/#Raw-Signal-Generation","page":"MRI Theory","title":"Raw Signal Generation","text":"","category":"section"},{"location":"mri-theory-informal/","page":"MRI Theory","title":"MRI Theory","text":"In order to generate an image from a phantom object with a scanner system and sequence signals, its necessary to acquire a raw signal s(t). This signal can be though as the sum of all spin magnetizations M of the object:","category":"page"},{"location":"mri-theory-informal/","page":"MRI Theory","title":"MRI Theory","text":"s(t) =\nint_x int_y int_z\nunderbrace\nM(x y z t)\n_approx alpha image(xyz) \n mathrmdz mathrmdy mathrmdx","category":"page"},{"location":"mri-theory-informal/","page":"MRI Theory","title":"MRI Theory","text":"Note that the magnitude of the magnetization is kind of proportional to the image. In real life it's not possible to get directly all the spin magnetizations, however it's possible to obtain the sum of all of them in the raw signal. To avoid losing image information in the sum operation, every spin magnetization resonates with different Larmor frequencies which values depend on the position (xyz) (i.e. modulated or encoded with the basis of the spatial frequency domain). Thus the raw signal can be thought as:","category":"page"},{"location":"mri-theory-informal/","page":"MRI Theory","title":"MRI Theory","text":"beginalign tag1\n\ns(t) approx\nint_x int_y int_z\nunderbrace\nm(x y z)\n_alpha image(xyz)\nunderbrace\ne^-j 2 pi k_x(t) x + k_y(t) y + k_z(t) z\n_modulation basis \n mathrmdz mathrmdy mathrmdx\n\nendalign","category":"page"},{"location":"mri-theory-informal/","page":"MRI Theory","title":"MRI Theory","text":"where:","category":"page"},{"location":"mri-theory-informal/","page":"MRI Theory","title":"MRI Theory","text":"veck(t) =\nbeginpmatrix\nk_x(t) \nk_y(t) \nk_z(t)\nendpmatrix =\nfrac2pigamma\nbeginpmatrix\nint_0^t G_x(tau) mathrmd tau\nint_0^t G_y(tau) mathrmd tau\nint_0^t G_z(tau) mathrmd tau\nendpmatrix\n \nbeginmatrix*l\ngamma gyromagnetic ratio \nG_i(t) input gradient signals\nendmatrix*","category":"page"},{"location":"mri-theory-informal/","page":"MRI Theory","title":"MRI Theory","text":"In the above expressions, we can see that the frequency of each spin can be manipulated by applying input gradient signals (or a gradient field). In practice, this gradient field is applied in the longitudinal axis hatz (but it is always dependent on the (xyz) position), which makes the spins able to resonate (or precess) at different Larmor frequencies after another input RF pulse excite them in the transverse direction. Both inputs, the gradient signal and the RF pulse, are part of the effective magnetic field vecB(t):","category":"page"},{"location":"mri-theory-informal/","page":"MRI Theory","title":"MRI Theory","text":"vecB(t) = \nbeginpmatrix\nB_1x(t) \nB_1y(t) \nG_x(t) x + G_y(t) y + G_z(t) z\nendpmatrix\n \nbeginmatrix*l\nB_1i(t) input RF pulse (transverse) \nG_i(t) input gradients (longitudinal)\nendmatrix*","category":"page"},{"location":"mri-theory-informal/","page":"MRI Theory","title":"MRI Theory","text":"It's important to highlight that the coil that senses the raw signal can only detects magnetization components oriented in the transverse direction. For this reason is necessary to apply the short RF signal orthogonally to the longitudinal hatz axe.","category":"page"},{"location":"mri-theory-informal/","page":"MRI Theory","title":"MRI Theory","text":"One of the primary concerns, to generate an image is to design proper input signals for the effective magnetic field vecB(t). In particular, by inspecting equation (1), it's possible to manipulate the spacial frequencies k_x(t), k_y(t) and k_z(t) by applying the gradients G_x(t), G_y(t) and G_z(t). Thus, we have information of the raw signal s(t) an the basis e^-j 2 pi k_x(t) x + k_y(t) y + k_z(t) z. Mathematically speaking, every sample of the raw signal is the Fourier transform of the magnetization m(xyz) for a specific point of the spacial frequency domain:","category":"page"},{"location":"mri-theory-informal/","page":"MRI Theory","title":"MRI Theory","text":"s(t) = Fourierm (k_x(t) k_y(t) k_z(t))","category":"page"},{"location":"mri-theory-informal/","page":"MRI Theory","title":"MRI Theory","text":"Therefore, to get the magnetization m(xyz) for all the points in the spacial domain its necessary to solve the inverse problem with enough points to cover the complete spacial frequency domain, which can be achieved by following a trajectory over time applying different gradient signals (i.e. a trajectory to complete the k-space).","category":"page"},{"location":"mri-theory-informal/#K-Space-and-Acquisition","page":"MRI Theory","title":"K-Space and Acquisition","text":"","category":"section"},{"location":"mri-theory-informal/","page":"MRI Theory","title":"MRI Theory","text":"Note that the trajectory to cover the k-space eventually can have any continuos shape, however it cannot fill the complete space. Furthermore, due to natural hardware restrictions, the continuos trajectory is sampled during the acquisition of the raw signal st. Thus, every discrete point of st represents a discrete point in the k-space.","category":"page"},{"location":"mri-theory-informal/","page":"MRI Theory","title":"MRI Theory","text":"Intuitively, it is desirable to get many points as possible and homogeneously distributed in the k-space. In particular, since the theory behind the raw signal generation is intimately related with the Fourier Transform, a natural way to cover the k-space is by taken a discrete mesh grid of points (trajectories and samples separated by small cubes). In this case, it is possible to apply Fourier theory to define the minimal k-space resolution (separation of the samples in the k-space) to set space dimensions (Field of Views) and prevent aliasing in the image, and define maximal limits in the k-space to set space resolution in the image.","category":"page"},{"location":"mri-theory-informal/","page":"MRI Theory","title":"MRI Theory","text":"underbrace\nDelta k_i\n_k-space resolution\nlongrightarrow\nunderbrace\nFOV_i\n_space width bounds ","category":"page"},{"location":"mri-theory-informal/","page":"MRI Theory","title":"MRI Theory","text":"underbrace\nW_k_i\n_k-space width bounds\nlongrightarrow\nunderbrace\nDelta i\n_space resolution ","category":"page"},{"location":"mri-theory-informal/","page":"MRI Theory","title":"MRI Theory","text":"forall i in x y z","category":"page"},{"location":"mri-theory-informal/","page":"MRI Theory","title":"MRI Theory","text":"Even though a mesh grid of discrete points is the natural way of thinking to cover the k-space, it is always possible possible to apply more exotic k-space trajectories, which could be helpful, for instance, to reduce the complete acquisition time. Keep in mind though, this fact must be regarded when solving the inverse problem for obtaining the image, for example by applying and interpolation function before taking the inverse Fourier Transform.","category":"page"},{"location":"mri-theory-informal/#Spin-Dynamics","page":"MRI Theory","title":"Spin Dynamics","text":"","category":"section"},{"location":"mri-theory-informal/","page":"MRI Theory","title":"MRI Theory","text":"It's important to point out that all the magnetization spins are independent from each other, so we could separate the phantom object into multiple spins and solve the Bloch Equations for every magnetization vector vecM independently:","category":"page"},{"location":"mri-theory-informal/","page":"MRI Theory","title":"MRI Theory","text":"fracmathrmd vecMmathrmd t =\n gamma vecM times vecB\n- fracM_x hatx + M_y hatyT_2\n- fracM_z hatx + M_0 hatyT_1","category":"page"},{"location":"mri-theory-informal/","page":"MRI Theory","title":"MRI Theory","text":"or:","category":"page"},{"location":"mri-theory-informal/","page":"MRI Theory","title":"MRI Theory","text":"beginalign tag2\n\nfracmathrmdmathrmdt vecM =\nunderbrace\ngamma\nbeginbmatrix\n 0 B_z -B_y \n-B_z 0 B_x \n B_y -B_x 0\nendbmatrix\nvecM\n_textrotation \n-\nunderbrace\nbeginbmatrix\ntfrac1T_2 0 0 \n0 tfrac1T_2 0 \n0 0 tfrac1T_1\nendbmatrix\nvecM\n_textrelaxation \n+\nunderbrace\nbeginbmatrix\n0 \n0 \ntfracM_0T_1\nendbmatrix\n_textsteady-state \n\nendalign","category":"page"},{"location":"mri-theory-informal/","page":"MRI Theory","title":"MRI Theory","text":"beginmatrix*l\ngamma gyromagnetic ratio \nT_2 transverse relaxation time constant \nT_1 longitudinal relaxation time constant\nendmatrix*","category":"page"},{"location":"mri-theory-informal/","page":"MRI Theory","title":"MRI Theory","text":"vecM(t) =\nbeginpmatrix\nM_x(t) \nM_y(t) \nM_z(t)\nendpmatrix\n \nvecB(t) = \nbeginpmatrix\nB_x(t) \nB_y(t) \nB_z(t)\nendpmatrix =\nbeginpmatrix\nB_1x(t) \nB_1y(t) \nG_x(t) x + G_y(t) y + G_z(t) z\nendpmatrix","category":"page"},{"location":"mri-theory-informal/","page":"MRI Theory","title":"MRI Theory","text":"beginmatrix*l\nB_1i(t) input RF pulse (transverse) \nG_i(t) input gradients (longitudinal)\nendmatrix*","category":"page"},{"location":"mri-theory-informal/","page":"MRI Theory","title":"MRI Theory","text":"Note that equation (2) can be separated into three parts:","category":"page"},{"location":"mri-theory-informal/","page":"MRI Theory","title":"MRI Theory","text":"Rotation: governed by the inputs RF pulse and gradient signals. It gives an initial excitation and the oscillatory behavior for different Larmor frequencies, respectively. \nRelaxation: gives the decay behavior (the magnetization envelope) after the excitation of the spins.\nSteady-State: spins points towards the longitudinal direction after a while.","category":"page"},{"location":"mri-theory-informal/","page":"MRI Theory","title":"MRI Theory","text":"Thus, to get the raw signal s(t) it's necessary to solve the Bloch equations (equation (2)) for every spin of the phantom object, then sum up the contributions of all of them and finally consider just the components of the transverse plane:","category":"page"},{"location":"mri-theory-informal/","page":"MRI Theory","title":"MRI Theory","text":"s(t) = s_xy(t)\n \ns_xy(t) = s_x(t) + j s_y(t)","category":"page"},{"location":"mri-theory-informal/","page":"MRI Theory","title":"MRI Theory","text":"beginpmatrix\ns_x(t) \ns_y(t) \ns_z(t)\nendpmatrix =\nint_x int_y int_z\nvecM(x y z t)\n mathrmdz mathrmdy mathrmdx","category":"page"},{"location":"docstrings/#API-Documentation","page":"API Documentation","title":"API Documentation","text":"","category":"section"},{"location":"docstrings/#dataflow-graph","page":"API Documentation","title":"Dataflow Graph","text":"","category":"section"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"(Image: )","category":"page"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"Pages = [\"docstrings.md\"]\nDepth = 3","category":"page"},{"location":"docstrings/#datatypes","page":"API Documentation","title":"DataTypes","text":"","category":"section"},{"location":"docstrings/#Mag","page":"API Documentation","title":"Mag","text":"","category":"section"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"Mag\nshow(::IO, ::Mag)\ngetproperty(::Vector{Mag}, ::Symbol)","category":"page"},{"location":"docstrings/#KomaMRICore.Mag","page":"API Documentation","title":"KomaMRICore.Mag","text":"mag = Mag(xy::Complex, z::Real)\n\nThe Magnetization struct.\n\nArguments\n\nxy: (::Complex{Float64}) magnetization of a spin in the xy plane\nz: (::Real) magnetization of a spin in the z plane\n\nReturns\n\nmag: (::Mag) Magnetization struct\n\n\n\n\n\n","category":"type"},{"location":"docstrings/#Phantom","page":"API Documentation","title":"Phantom","text":"","category":"section"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"Refer to API Documentation:","category":"page"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"KomaMRI.Phantom — Type\nKomaMRI.brain_phantom2D — Function\nKomaMRI.brain_phantom3D — Function","category":"page"},{"location":"docstrings/#Scanner","page":"API Documentation","title":"Scanner","text":"","category":"section"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"Refer to API Documentation:","category":"page"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"KomaMRI.Scanner — Type","category":"page"},{"location":"docstrings/#Sequence","page":"API Documentation","title":"Sequence","text":"","category":"section"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"Refer to API Documentation:","category":"page"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"KomaMRI.Sequence — Type","category":"page"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"show(::IO, ::Sequence)\nKomaMRI.is_ADC_on\nKomaMRI.is_RF_on\nKomaMRI.is_GR_on\nKomaMRI.is_Gx_on\nKomaMRI.is_Gy_on\nKomaMRI.is_Gz_on\nKomaMRI.is_Delay\nKomaMRI.durs(::Sequence)\ndur(::Sequence)\nKomaMRI.⏢\nKomaMRI.get_grads\nKomaMRI.get_rfs\nKomaMRI.get_flip_angles\nKomaMRI.get_ADC_on\nKomaMRI.get_kspace\nKomaMRI.get_RF_types\n\nKomaMRI.δ2N","category":"page"},{"location":"docstrings/#Base.show-Tuple{IO, Sequence}","page":"API Documentation","title":"Base.show","text":"str = show(io::IO, s::Sequence)\n\nDisplays information about the Sequence struct s in the julia REPL.\n\nArguments\n\ns: (::Sequence) Sequence struct\n\nReturns\n\nstr (::String) output string message\n\n\n\n\n\n","category":"method"},{"location":"docstrings/#KomaMRICore.is_ADC_on","page":"API Documentation","title":"KomaMRICore.is_ADC_on","text":"y = is_ADC_on(x::Sequence)\ny = is_ADC_on(x::Sequence, t::Union{Array{Float64,1}, Array{Float64,2}})\n\nTells if the sequence seq has elements with ADC active, or active during time t.\n\nArguments\n\nx: (::Sequence) sequence struct\nt: (::Union{Array{Float64,1}, Array{Float64,2}}, [s]) time to check\n\nReturns\n\ny: (::Bool) boolean that tells whether or not the ADC in the sequence is active\n\n\n\n\n\n","category":"function"},{"location":"docstrings/#KomaMRICore.is_RF_on","page":"API Documentation","title":"KomaMRICore.is_RF_on","text":"y = is_RF_on(x::Sequence)\ny = is_RF_on(x::Sequence, t::Vector{Float64})\n\nTells if the sequence seq has elements with RF active, or active during time t.\n\nArguments\n\nx: (::Sequence) Sequence struct\nt: (::Vector{Float64}, [s]) time to check\n\nReturns\n\ny: (::Bool) boolean that tells whether or not the RF in the sequence is active\n\n\n\n\n\n","category":"function"},{"location":"docstrings/#KomaMRICore.is_GR_on","page":"API Documentation","title":"KomaMRICore.is_GR_on","text":"y = is_GR_on(x::Sequence)\n\nTells if the sequence seq has elements with GR active.\n\nArguments\n\nx: (::Sequence) Sequence struct\n\nReturns\n\ny: (::Bool) boolean that tells whether or not the GR in the sequence is active\n\n\n\n\n\n","category":"function"},{"location":"docstrings/#KomaMRICore.dur-Tuple{Sequence}","page":"API Documentation","title":"KomaMRICore.dur","text":"T = dur(x::Sequence)\n\nThe total duration of the sequence in [s].\n\nArguments\n\nx: (::Sequence) Sequence struct\n\nReturns\n\nT: (::Real, [s]) total duration of the sequence\n\n\n\n\n\n","category":"method"},{"location":"docstrings/#KomaMRICore.get_flip_angles","page":"API Documentation","title":"KomaMRICore.get_flip_angles","text":"y = get_flip_angles(x::Sequence)\n\nReturns all the flip angles of the RF pulses in the sequence x.\n\nArguments\n\nx: (::Sequence) Sequence struct\n\nReturns\n\ny: (::Vector{Float64}, [deg]) flip angles\n\n\n\n\n\n","category":"function"},{"location":"docstrings/#KomaMRICore.get_kspace","page":"API Documentation","title":"KomaMRICore.get_kspace","text":"kspace, kspace_adc = get_kspace(seq::Sequence; Δt=1)\n\nOutputs the designed k-space trajectory of the Sequence seq.\n\nArguments\n\nseq: (::Sequence) Sequence struct\nΔt: (::Real, =1, [s]) nominal delta time separation between two time samples for ADC acquisition and Gradients\n\nReturns\n\nkspace: (3-column ::Matrix{Float64}) kspace\nkspace_adc: (3-column ::Matrix{Float64}) adc kspace\n\n\n\n\n\n","category":"function"},{"location":"docstrings/#Grad","page":"API Documentation","title":"Grad","text":"","category":"section"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"Refer to API Documentation:","category":"page"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"KomaMRI.Grad — Type\nKomaMRI.Grad(::Function, ::Real, ::Int64) — Method","category":"page"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"rotx\nroty\nrotz\nshow(::IO, ::Grad)\ngetproperty(::Vector{Grad}, ::Symbol)\ndur(::Grad)","category":"page"},{"location":"docstrings/#KomaMRICore.rotx","page":"API Documentation","title":"KomaMRICore.rotx","text":"Rx = rotx(θ::Real)\n\nRotates vector counter-clockwise with respect to the x-axis.\n\nArguments\n\nθ: (::Real, [rad]) rotation angle\n\nReturns\n\nRx: (::Matrix{Int64}) rotation matrix\n\n\n\n\n\n","category":"function"},{"location":"docstrings/#KomaMRICore.roty","page":"API Documentation","title":"KomaMRICore.roty","text":"Ry = roty(θ::Real)\n\nRotates vector counter-clockwise with respect to the y-axis.\n\nArguments\n\nθ: (::Real, [rad]) rotation angle\n\nReturns\n\nRy: (::Matrix{Int64}) rotation matrix\n\n\n\n\n\n","category":"function"},{"location":"docstrings/#KomaMRICore.rotz","page":"API Documentation","title":"KomaMRICore.rotz","text":"Rz = rotz(θ::Real)\n\nRotates vector counter-clockwise with respect to the z-axis.\n\nArguments\n\nθ: (::Real, [rad]) rotation angle\n\nReturns\n\nRz: (::Matrix{Int64}) rotation matrix\n\n\n\n\n\n","category":"function"},{"location":"docstrings/#Base.show-Tuple{IO, Grad}","page":"API Documentation","title":"Base.show","text":"str = show(io::IO, x::Grad)\n\nDisplays information about the Grad struct x in the julia REPL.\n\nArguments\n\nx: (::Grad) Grad struct\n\nReturns\n\nstr (::String) output string message\n\n\n\n\n\n","category":"method"},{"location":"docstrings/#Base.getproperty-Tuple{Vector{Grad}, Symbol}","page":"API Documentation","title":"Base.getproperty","text":"y = getproperty(x::Vector{Grad}, f::Symbol)\ny = getproperty(x::Matrix{Grad}, f::Symbol)\n\nOverloads Base.getproperty(). It is meant to access properties of the Grad vector x directly without the need to iterate elementwise.\n\nArguments\n\nx: (::Vector{Grad} or ::Matrix{Grad}) vector or matrix of Grad structs\nf: (::Symbol, opts: [:x, :y, :z, :T, :delay, :rise, :delay, :dur, :A, f]) input symbol that represents a property of the vector or matrix of Grad structs\n\nReturns\n\ny: (::Vector{Any} or ::Matrix{Any}) vector or matrix with the property defined by the symbol f for all elements of the Grad vector or matrix x\n\n\n\n\n\n","category":"method"},{"location":"docstrings/#KomaMRICore.dur-Tuple{Grad}","page":"API Documentation","title":"KomaMRICore.dur","text":"y = dur(x::Grad)\ny = dur(x::Vector{Grad})\n\nDuration time in [s] of Grad struct or Grad array. When the input is a gradient vector, then the duration is the maximum duration of all the elements of the gradient vector.\n\nArguments\n\nx: (::Grad or ::Vector{Grad}) RF struct or RF array\n\nReturns\n\ny: (::Float64, [s]) duration of the RF struct or RF array\n\n\n\n\n\n","category":"method"},{"location":"docstrings/#RF","page":"API Documentation","title":"RF","text":"","category":"section"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"Refer to API Documentation:","category":"page"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"KomaMRI.RF — Type","category":"page"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"Spinor\nshow(::IO,::Spinor)\n*(::Spinor, ::Spinor)\nRz\nRy\nRx\nKomaMRI.Rg\nKomaMRI.Rφ\nQ\nabs(::Spinor)\n\nshow(::IO, ::RF)\ngetproperty(::Vector{RF}, ::Symbol)\ndur(::RF)\nKomaMRI.RF_fun\nKomaMRI.get_flip_angle\nKomaMRI.get_RF_center","category":"page"},{"location":"docstrings/#KomaMRICore.Spinor","page":"API Documentation","title":"KomaMRICore.Spinor","text":"spinor = Spinor(α, β)\n\nSpinor(α, β) with Cayley-Klein parameters α and β. Based on \"Introduction to the Shinnar-Le Roux algorithm\", Patrick Le Roux (1995). A spinor is a way to represent 3D rotations, the underlying representation is a 2 X 2 complex unitary matrix (alphabetainmathbbC):\n\nR=leftbeginarraycc\nalpha -beta^*\nbeta alpha^*\nendarrayright\n\nwith alpha^2+beta^2 = 1.\n\nThis later operates on the 2times2 representation of (xyz) as follows V^+ = R V R^*.\n\nArguments\n\nα: (::Complex{Float64}) Cayley-Klein parameter α\nβ: (::Complex{Float64}) Cayley-Klein parameter β\n\nReturns\n\nspinor: (::Spinor) Spinor struct\n\n\n\n\n\n","category":"type"},{"location":"docstrings/#Base.show-Tuple{IO, Spinor}","page":"API Documentation","title":"Base.show","text":"str = show(io::IO, s::Spinor)\n\nDisplays the spinor parameters in the julia REPL.\n\nArguments\n\ns: (::Spinor) Spinor struct\n\nReturns\n\nstr: (::String) output string message\n\n\n\n\n\n","category":"method"},{"location":"docstrings/#Base.:*-Tuple{Spinor, Spinor}","page":"API Documentation","title":"Base.:*","text":"s = *(s1::Spinor, s2::Spinor)\n\nSpinor multiplication identity: (α1,β1)×(α2,β2) = (α1 α2 - β2⋆ β1 , β2 α1 + α2⋆ β1)\n\nArguments\n\ns1: (::Spinor) first spinor struct\ns2: (::Spinor) second spinor struct\n\nReturns\n\ns: (::Spinor) multiplication spinnor identity result\n\n\n\n\n\n","category":"method"},{"location":"docstrings/#KomaMRICore.Rz","page":"API Documentation","title":"KomaMRICore.Rz","text":"s = Rz(φ)\n\nSpinor clockwise rotation matrix with angle φ with respect to z-axis.\n\nArguments\n\nφ: (::Real, [rad]) angle with respect to z-axis\n\nReturns\n\ns: (::Spinor) spinnor struct that represents the Rz rotation matrix\n\n\n\n\n\n","category":"function"},{"location":"docstrings/#KomaMRICore.Ry","page":"API Documentation","title":"KomaMRICore.Ry","text":"s = Ry(θ)\n\nSpinor clockwise rotation matrix with angle θ with respect to y-axis.\n\nArguments\n\nθ: (::Real, [rad]) angle with respect to y-axis\n\nReturns\n\ns: (::Spinor) spinor struct that represents the Ry rotation matrix\n\n\n\n\n\n","category":"function"},{"location":"docstrings/#KomaMRICore.Rx","page":"API Documentation","title":"KomaMRICore.Rx","text":"s = Rx(θ)\n\nSpinor clockwise rotation matrix with angle θ with respect to x-axis.\n\nArguments\n\nθ: (::Real, [rad]) angle with respect to x-axis\n\nReturns\n\ns: (::Spinor) spinor struct that represents the Rx rotation matrix\n\n\n\n\n\n","category":"function"},{"location":"docstrings/#KomaMRICore.Q","page":"API Documentation","title":"KomaMRICore.Q","text":"s = Q(φ, nxy, nz)\n\nSpinor rotation matrix. Rotation of φ with respect to the axis of rotation n=(nx, ny, nz).\n\nPauly, J., Le Roux, P., Nishimura, D., & Macovski, A. (1991). Parameter relations for the Shinnar-Le Roux selective excitation pulse design algorithm (NMR imaging). IEEE Transactions on Medical Imaging, 10(1), 53-65. doi:10.1109/42.75611\n\nvarphi=-gammaDelta tsqrtleftB_1right^2+left(boldsymbolGcdotboldsymbolx\nright)^2=-gammaDelta tleftVert boldsymbolBrightVert\n\nboldsymboln=boldsymbolBleftVert boldsymbolBrightVert\n\nArguments\n\nφ: (::Real, [rad]) φ angle\nnxy: (::Real) nxy factor\nnz: (::Real) nz factor\n\nReturns\n\ns: (::Spinor) spinnor struct that represents the Q rotation matrix\n\n\n\n\n\n","category":"function"},{"location":"docstrings/#Base.abs-Tuple{Spinor}","page":"API Documentation","title":"Base.abs","text":"y = abs(s::Spinor)\n\nIt calculates |α|^2 + |β|^2 of the Cayley-Klein parameters.\n\nArguments\n\ns: (::Spinor) spinnor struct\n\nReturns\n\ny: (::Real) result of the abs operator\n\n\n\n\n\n","category":"method"},{"location":"docstrings/#Base.show-Tuple{IO, RF}","page":"API Documentation","title":"Base.show","text":"str = show(io::IO, x::RF)\n\nDisplays information about the RF struct x in the julia REPL.\n\nArguments\n\nx: (::RF) RF struct\n\nReturns\n\nstr: (::String) output string message\n\n\n\n\n\n","category":"method"},{"location":"docstrings/#Base.getproperty-Tuple{Vector{RF}, Symbol}","page":"API Documentation","title":"Base.getproperty","text":"y = getproperty(x::Vector{RF}, f::Symbol)\ny = getproperty(x::Matrix{RF}, f::Symbol)\n\nOverloads Base.getproperty(). It is meant to access properties of the RF vector x directly without the need to iterate elementwise.\n\nArguments\n\nx: (::Vector{RF} or ::Matrix{RF}) vector or matrix of RF structs\nf: (::Symbol, opts: [:A, :Bx, :By, :T, :Δf, :delay and :dur]) input symbol that represents a property of the vector or matrix of RF structs\n\nReturns\n\ny: (::Vector{Any} or ::Matrix{Any}) vector with the property defined by the symbol f for all elements of the RF vector or matrix x\n\n\n\n\n\n","category":"method"},{"location":"docstrings/#KomaMRICore.dur-Tuple{RF}","page":"API Documentation","title":"KomaMRICore.dur","text":"y = dur(x::RF)\ny = dur(x::Array{RF,1})\ny = dur(x::Array{RF,2})\n\nDuration time in [s] of RF struct or RF array.\n\nArguments\n\nx: (::RF or ::Array{RF,1} or ::Array{RF,2}) RF struct or RF array\n\nReturns\n\ny: (::Float64, [s]) duration of the RF struct or RF array\n\n\n\n\n\n","category":"method"},{"location":"docstrings/#ADC","page":"API Documentation","title":"ADC","text":"","category":"section"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"Refer to API Documentation:","category":"page"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"KomaMRI.ADC — Type","category":"page"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"getproperty(::Vector{ADC}, ::Symbol)\nKomaMRI.get_adc_sampling_times\nKomaMRI.get_adc_phase_compensation","category":"page"},{"location":"docstrings/#Base.getproperty-Tuple{Vector{ADC}, Symbol}","page":"API Documentation","title":"Base.getproperty","text":"y = getproperty(x::Vector{ADC}, f::Symbol)\n\nOverloads Base.getproperty(). It is meant to access properties of the ADC vector x directly without the need to iterate elementwise.\n\nArguments\n\nx: (::Vector{ADC}) vector of ADC structs\nf: (::Symbol, opts: [:N, :T, :delay, :Δf, :ϕ, :dur]) input symbol that represents a property of the ADC structs\n\nReturns\n\ny: (::Vector{Any}) vector with the property defined by the f for all elements of the ADC vector x\n\n\n\n\n\n","category":"method"},{"location":"docstrings/#Delay","page":"API Documentation","title":"Delay","text":"","category":"section"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"Refer to API Documentation:","category":"page"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"KomaMRI.Delay — Type","category":"page"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"show(::IO, ::Delay)\n+(::Sequence, ::Delay)","category":"page"},{"location":"docstrings/#Base.show-Tuple{IO, Delay}","page":"API Documentation","title":"Base.show","text":"str = show(io::IO, s::Delay)\n\nDisplays the delay time in m[s] of the delay struct s in the julia REPL.\n\nArguments\n\ns: (::Delay) delay struct\n\nReturns\n\nstr: (::String) output string message\n\n\n\n\n\n","category":"method"},{"location":"docstrings/#Base.:+-Tuple{Sequence, Delay}","page":"API Documentation","title":"Base.:+","text":"seq = +(s::Sequence, d::Delay)\nseq = +(d::Delay, s::Sequence)\n\nAdd a delay to sequence struct. It ultimately affects to the duration of the gradients of a sequence.\n\nArguments\n\ns: (::Sequence) sequence struct\nd: (::Delay) delay struct\n\nReturns\n\nseq: (::Sequence) delayed sequence\n\n\n\n\n\n","category":"method"},{"location":"docstrings/#pulseq","page":"API Documentation","title":"Pulseq.jl","text":"","category":"section"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"Refer to API Documentation:","category":"page"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"KomaMRI.read_seq — Function","category":"page"},{"location":"docstrings/#read_Grad","page":"API Documentation","title":"read_Grad","text":"","category":"section"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"KomaMRI.read_Grad","category":"page"},{"location":"docstrings/#read_RF","page":"API Documentation","title":"read_RF","text":"","category":"section"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"KomaMRI.read_RF","category":"page"},{"location":"docstrings/#read_ADC","page":"API Documentation","title":"read_ADC","text":"","category":"section"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"KomaMRI.read_ADC","category":"page"},{"location":"docstrings/#get_block","page":"API Documentation","title":"get_block","text":"","category":"section"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"KomaMRI.get_block","category":"page"},{"location":"docstrings/#jemris","page":"API Documentation","title":"JEMRIS.jl","text":"","category":"section"},{"location":"docstrings/#read_phantom_jemris","page":"API Documentation","title":"read_phantom_jemris","text":"","category":"section"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"Refer to API Documentation:","category":"page"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"KomaMRI.read_phantom_jemris — Function","category":"page"},{"location":"docstrings/#ismrmrd","page":"API Documentation","title":"ISMRMRD.jl","text":"","category":"section"},{"location":"docstrings/#signal_to_raw_data","page":"API Documentation","title":"signal_to_raw_data","text":"","category":"section"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"Refer to API Documentation:","category":"page"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"KomaMRI.signal_to_raw_data — Function","category":"page"},{"location":"docstrings/#pulse-designer","page":"API Documentation","title":"PulseDesigner.jl","text":"","category":"section"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"Refer to API Documentation:","category":"page"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"KomaMRI.PulseDesigner — Function\nKomaMRI.PulseDesigner.RF_hard — Function\nKomaMRI.PulseDesigner.EPI — Function\nKomaMRI.PulseDesigner.radial_base — Function","category":"page"},{"location":"docstrings/#key-values-calculation","page":"API Documentation","title":"KeyValuesCalculation.jl","text":"","category":"section"},{"location":"docstrings/#get_theo_A","page":"API Documentation","title":"get_theo_A","text":"","category":"section"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"KomaMRI.get_theo_A","category":"page"},{"location":"docstrings/#get_theo_t","page":"API Documentation","title":"get_theo_t","text":"","category":"section"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"KomaMRI.get_theo_t","category":"page"},{"location":"docstrings/#get_theo_Gi","page":"API Documentation","title":"get_theo_Gi","text":"","category":"section"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"KomaMRI.get_theo_Gi","category":"page"},{"location":"docstrings/#trapezoidal-integration","page":"API Documentation","title":"TrapezoidalIntegration.jl","text":"","category":"section"},{"location":"docstrings/#trapz","page":"API Documentation","title":"trapz","text":"","category":"section"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"KomaMRI.trapz","category":"page"},{"location":"docstrings/#cumtrapz","page":"API Documentation","title":"cumtrapz","text":"","category":"section"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"KomaMRI.cumtrapz","category":"page"},{"location":"docstrings/#time-step-calculation","page":"API Documentation","title":"TimeStepCalculation.jl","text":"","category":"section"},{"location":"docstrings/#points_from_key_times","page":"API Documentation","title":"points_from_key_times","text":"","category":"section"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"KomaMRI.points_from_key_times","category":"page"},{"location":"docstrings/#get_variable_times","page":"API Documentation","title":"get_variable_times","text":"","category":"section"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"KomaMRI.get_variable_times","category":"page"},{"location":"docstrings/#get_uniform_times","page":"API Documentation","title":"get_uniform_times","text":"","category":"section"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"KomaMRI.get_uniform_times","category":"page"},{"location":"docstrings/#kfoldperm","page":"API Documentation","title":"kfoldperm","text":"","category":"section"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"KomaMRI.kfoldperm","category":"page"},{"location":"docstrings/#get_breaks_in_RF_key_points","page":"API Documentation","title":"get_breaks_in_RF_key_points","text":"","category":"section"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"KomaMRI.get_breaks_in_RF_key_points","category":"page"},{"location":"docstrings/#simulation-core","page":"API Documentation","title":"SimulationCore.jl","text":"","category":"section"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"Refer to API Documentation:","category":"page"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"KomaMRI.simulate — Function\nKomaMRI.simulate_slice_profile — Function","category":"page"},{"location":"docstrings/#print_gpus","page":"API Documentation","title":"print_gpus","text":"","category":"section"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"KomaMRI.print_gpus","category":"page"},{"location":"docstrings/#run_spin_precession","page":"API Documentation","title":"run_spin_precession","text":"","category":"section"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"KomaMRI.run_spin_precession","category":"page"},{"location":"docstrings/#run_spin_precession_parallel","page":"API Documentation","title":"run_spin_precession_parallel","text":"","category":"section"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"KomaMRI.run_spin_precession_parallel","category":"page"},{"location":"docstrings/#run_spin_excitation","page":"API Documentation","title":"run_spin_excitation","text":"","category":"section"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"KomaMRI.run_spin_excitation","category":"page"},{"location":"docstrings/#run_spin_excitation_parallel","page":"API Documentation","title":"run_spin_excitation_parallel","text":"","category":"section"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"KomaMRI.run_spin_excitation_parallel","category":"page"},{"location":"docstrings/#run_sim_time_iter","page":"API Documentation","title":"run_sim_time_iter","text":"","category":"section"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"KomaMRI.run_sim_time_iter","category":"page"},{"location":"docstrings/#display-functions","page":"API Documentation","title":"DisplayFunctions.jl","text":"","category":"section"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"Refer to API Documentation:","category":"page"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"KomaMRI.plot_seq — Function\nKomaMRI.plot_image — Function\nplot_kspace — Function\nplot_M0 — Function\nplot_phantom_map — Function\nplot_signal — Function","category":"page"},{"location":"docstrings/#theme_chooser","page":"API Documentation","title":"theme_chooser","text":"","category":"section"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"KomaMRI.theme_chooser","category":"page"},{"location":"docstrings/#interp_map","page":"API Documentation","title":"interp_map","text":"","category":"section"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"KomaMRI.interp_map","category":"page"},{"location":"docstrings/#plot_dict","page":"API Documentation","title":"plot_dict","text":"","category":"section"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"KomaMRI.plot_dict","category":"page"},{"location":"docstrings/#KomaMRIPlots.plot_dict","page":"API Documentation","title":"KomaMRIPlots.plot_dict","text":"str = plot_dict(dict::Dict)\n\nGenerates an HTML table based on the dictionary dict.\n\nArguments\n\ndict: (::Dict) dictionary\n\nReturns\n\nstr: (::String) dictionary as an HTML table\n\n\n\n\n\n","category":"function"},{"location":"getting-started/#Getting-Started","page":"Getting Started","title":"Getting Started","text":"","category":"section"},{"location":"getting-started/#Installing-Julia","page":"Getting Started","title":"Installing Julia","text":"","category":"section"},{"location":"getting-started/","page":"Getting Started","title":"Getting Started","text":"KomaMRI was written in Julia, so the first thing you should do is to install it! The latest version of Julia can be downloaded at the Julia Downloads page. It is advisable you add julia to the PATH, which can be done during the installation process.","category":"page"},{"location":"getting-started/#Installing-KomaMRI","page":"Getting Started","title":"Installing KomaMRI","text":"","category":"section"},{"location":"getting-started/","page":"Getting Started","title":"Getting Started","text":"Once Julia is installed, open the Julia REPL, and add the KomaMRI package by typing the following commands:","category":"page"},{"location":"getting-started/","page":"Getting Started","title":"Getting Started","text":"Press the ] key and then press enter to bring up Julia's package manager.\nType add KomaMRI and then press enter in the package manager session.","category":"page"},{"location":"getting-started/","page":"Getting Started","title":"Getting Started","text":"This process should take about 5 minutes in a fresh Julia installation. Here is how it looks in the Julia REPL:","category":"page"},{"location":"getting-started/","page":"Getting Started","title":"Getting Started","text":"julia> ]\n\n(@v1.9) pkg> add KomaMRI","category":"page"},{"location":"getting-started/","page":"Getting Started","title":"Getting Started","text":"Then press Ctrl+C or backspace to return to the julia> prompt.","category":"page"},{"location":"getting-started/","page":"Getting Started","title":"Getting Started","text":"","category":"page"},{"location":"getting-started/#My-First-MRI-Simulation","page":"Getting Started","title":"My First MRI Simulation","text":"","category":"section"},{"location":"getting-started/","page":"Getting Started","title":"Getting Started","text":"For our first simulation we will use KomaMRI's graphical user interface (GUI). For this, you will first need to load KomaMRI by typing using KomaMRI, and then launch the GUI with KomaUI().","category":"page"},{"location":"getting-started/","page":"Getting Started","title":"Getting Started","text":"julia> using KomaMRI\n\njulia> KomaUI()","category":"page"},{"location":"getting-started/","page":"Getting Started","title":"Getting Started","text":"The first time you use this command it may take more time than usual, but a window with the Koma GUI will pop up:","category":"page"},{"location":"getting-started/","page":"Getting Started","title":"Getting Started","text":"(Image: )","category":"page"},{"location":"getting-started/","page":"Getting Started","title":"Getting Started","text":"The user interface has some basic definitions for the scanner, phantom, and sequence already preloaded. So you can immediately interact with the simulation and reconstruction processes, and then visualize the results.","category":"page"},{"location":"getting-started/","page":"Getting Started","title":"Getting Started","text":"As a simple demonstration, press the Simulate! button and wait until the simulation is ready. Now you have acquired the Raw Signal and you should see the following:","category":"page"},{"location":"getting-started/","page":"Getting Started","title":"Getting Started","text":"(Image: )","category":"page"},{"location":"getting-started/","page":"Getting Started","title":"Getting Started","text":"Then, press the Reconstruct! button and wait until the reconstruction ends. Now you have reconstructed an Image from the Raw Signal and you should see the following in the GUI:","category":"page"},{"location":"getting-started/","page":"Getting Started","title":"Getting Started","text":"(Image: )","category":"page"},{"location":"getting-started/","page":"Getting Started","title":"Getting Started","text":"Congratulations, you successfully simulated an MRI acquisition! 🎊","category":"page"},{"location":"generated/examples/02-SmallTipApproximation/","page":"Small Tip Angle Approximation","title":"Small Tip Angle Approximation","text":"EditURL = \"../../../../examples/literate/examples/02-SmallTipApproximation.jl\"","category":"page"},{"location":"generated/examples/02-SmallTipApproximation/#Small-Tip-Angle-Approximation","page":"Small Tip Angle Approximation","title":"Small Tip Angle Approximation","text":"","category":"section"},{"location":"generated/examples/02-SmallTipApproximation/","page":"Small Tip Angle Approximation","title":"Small Tip Angle Approximation","text":"(Image: ) (Image: )","category":"page"},{"location":"generated/examples/02-SmallTipApproximation/","page":"Small Tip Angle Approximation","title":"Small Tip Angle Approximation","text":"Based on the results in page 41 of the book \"Handbook of MRI Pulse Sequences\" by Bernstein et al.","category":"page"},{"location":"generated/examples/02-SmallTipApproximation/","page":"Small Tip Angle Approximation","title":"Small Tip Angle Approximation","text":"using KomaMRI # hide\nsys = Scanner() # hide\nsys.Smax = 50 # hide","category":"page"},{"location":"generated/examples/02-SmallTipApproximation/","page":"Small Tip Angle Approximation","title":"Small Tip Angle Approximation","text":"In this example, we will showcase a common approximation in MRI, the small tip angle approximation. For this, we will simulate a slice profile for spins with positions zin-22mathrmcm and with a gradient G_z so their frequencies are mapped to fin-55mathrmkHz. To start, we define an RF pulse with a flip angle of 30 deg and pulse duration of T_mathrmrf=32mathrmms.","category":"page"},{"location":"generated/examples/02-SmallTipApproximation/","page":"Small Tip Angle Approximation","title":"Small Tip Angle Approximation","text":"B1 = 4.92e-6\nTrf = 3.2e-3\nzmax = 2e-2\nfmax = 5e3\nz = range(-zmax, zmax, 400)\nGz = fmax / (γ * zmax)\nf = γ * Gz * z # hide","category":"page"},{"location":"generated/examples/02-SmallTipApproximation/","page":"Small Tip Angle Approximation","title":"Small Tip Angle Approximation","text":"The designed RF pulse is presented in the figure below, where the additional gradient refocuses the spins' phase after the excitation.","category":"page"},{"location":"generated/examples/02-SmallTipApproximation/","page":"Small Tip Angle Approximation","title":"Small Tip Angle Approximation","text":"seq = PulseDesigner.RF_sinc(B1, Trf, sys; G=[0;0;Gz], TBP=8)\np2 = plot_seq(seq; max_rf_samples=Inf, slider=false)\nsavefig(p2, \"../../assets/examples/42-seq.html\") # hide","category":"page"},{"location":"generated/examples/02-SmallTipApproximation/","page":"Small Tip Angle Approximation","title":"Small Tip Angle Approximation","text":"","category":"page"},{"location":"generated/examples/02-SmallTipApproximation/","page":"Small Tip Angle Approximation","title":"Small Tip Angle Approximation","text":"Now we will perform the simulation using the function simulate_slice_profile. Note that we modified Δt_rf in sim_params to match the resolution of the waveform.","category":"page"},{"location":"generated/examples/02-SmallTipApproximation/","page":"Small Tip Angle Approximation","title":"Small Tip Angle Approximation","text":"sim_params = Dict{String, Any}(\"Δt_rf\" => Trf / length(seq.RF.A[1]))\nM = simulate_slice_profile(seq; z, sim_params)\n\nusing PlotlyJS # hide\ns1 = scatter(x=f, y=real.(M.xy), name=\"Mx\") # hide\ns2 = scatter(x=f, y=imag.(M.xy), name=\"My\") # hide\ndat = seq.RF.A[1] # hide\nN = length(dat) # hide\ndat_pad = [zeros(floor(Int64,N)); dat; zeros(floor(Int64,N))] # hide\nN_pad = length(dat_pad) # hide\nU = 1 / (Trf) * N / N_pad #hide\nu = range(0, (N_pad - 1) * U; step=U) # hide\nu = u .- maximum(u) / 2 .- U/2 # hide\nFT_dat_pad = abs.(KomaMRI.fftc(dat_pad; dims=1)) # hide\nscale_factor = maximum(abs.(M.xy)) / maximum(FT_dat_pad) # hide\ns3 = scatter(x=u, y=FT_dat_pad*scale_factor, name=\"|FT(B₁(t))|\", line=attr(dash=\"dash\")) # hide\npb = plot([s1,s2,s3], Layout(title=\"30 deg SINC pulse (TBP=8, Hamming)\", xaxis_title=\"Frequency [Hz]\", xaxis_range=[-fmax,fmax])) # hide\nsavefig(pb, \"../../assets/examples/4b-profile.html\") # hide","category":"page"},{"location":"generated/examples/02-SmallTipApproximation/","page":"Small Tip Angle Approximation","title":"Small Tip Angle Approximation","text":"This produces the following slice profile:","category":"page"},{"location":"generated/examples/02-SmallTipApproximation/","page":"Small Tip Angle Approximation","title":"Small Tip Angle Approximation","text":"","category":"page"},{"location":"generated/examples/02-SmallTipApproximation/","page":"Small Tip Angle Approximation","title":"Small Tip Angle Approximation","text":"As you can see, for a flip angle of 30 deg, the slice profile is very close to the small tip angle approximation (the Fourier transform of B_1(t)).","category":"page"},{"location":"generated/examples/02-SmallTipApproximation/","page":"Small Tip Angle Approximation","title":"Small Tip Angle Approximation","text":"But what will happen if we use a flip angle of 120 deg instead?","category":"page"},{"location":"generated/examples/02-SmallTipApproximation/","page":"Small Tip Angle Approximation","title":"Small Tip Angle Approximation","text":"α_desired = 120 + 0im # The multiplication of a complex number scales the RF pulse of a Sequence\nα = get_flip_angles(seq)[1] # Previous FA approx 30 deg\nseq = (α_desired / α) * seq # Scaling the pulse to have a flip angle of 120\nM = simulate_slice_profile(seq; z, sim_params)\n\ns1 = scatter(x=f, y=abs.(M.xy), name=\"|Mxy|\") # hide\ndat = seq.RF.A[1] # hide\nN = length(dat) # hide\ndat_pad = [zeros(floor(Int64,N)); dat; zeros(floor(Int64,N))] # hide\nN_pad = length(dat_pad) # hide\nU = 1 / (Trf) * N / N_pad #hide\nu = range(0, (N_pad - 1) * U; step=U) # hide\nu = u .- maximum(u) / 2 .- U/2 # hide\nFT_dat_pad = abs.(KomaMRI.fftc(dat_pad; dims=1)) # hide\nscale_factor = maximum(abs.(M.xy)) / maximum(FT_dat_pad) # hide\ns2 = scatter(x=u, y=FT_dat_pad*scale_factor, name=\"|FT(B₁(t))|\", line=attr(dash=\"dash\")) # hide\npa = plot([s1,s2], Layout(title=\"120 deg SINC pulse (TBP=8, Hamming)\", xaxis_title=\"Frequency [Hz]\", xaxis_range=[-fmax,fmax])) # hide\nsavefig(pa, \"../../assets/examples/4a-profile.html\") # hide","category":"page"},{"location":"generated/examples/02-SmallTipApproximation/","page":"Small Tip Angle Approximation","title":"Small Tip Angle Approximation","text":"","category":"page"},{"location":"generated/examples/02-SmallTipApproximation/","page":"Small Tip Angle Approximation","title":"Small Tip Angle Approximation","text":"For this case, the small tip angle approximation breaks 😢, thus, the reason for its name!","category":"page"},{"location":"generated/examples/02-SmallTipApproximation/","page":"Small Tip Angle Approximation","title":"Small Tip Angle Approximation","text":"This basic sinc pulse is not designed to be B_1-insensitive. Some adiabatic RF pulses have been proposed to achieve this. Watch out for a future example showing these adiabatic RF pulses 👀.","category":"page"},{"location":"generated/examples/02-SmallTipApproximation/","page":"Small Tip Angle Approximation","title":"Small Tip Angle Approximation","text":"","category":"page"},{"location":"generated/examples/02-SmallTipApproximation/","page":"Small Tip Angle Approximation","title":"Small Tip Angle Approximation","text":"This page was generated using Literate.jl.","category":"page"},{"location":"create-your-own-sequence/#Create-Your-Own-Sequence","page":"Create Your Own Sequence","title":"Create Your Own Sequence","text":"","category":"section"},{"location":"create-your-own-sequence/","page":"Create Your Own Sequence","title":"Create Your Own Sequence","text":"warning: Warning\nThis section is currently under construction, and some details on how to construct a Sequence may be missing.","category":"page"},{"location":"create-your-own-sequence/","page":"Create Your Own Sequence","title":"Create Your Own Sequence","text":"This is an example of how to create a Sequence struct:","category":"page"},{"location":"create-your-own-sequence/","page":"Create Your Own Sequence","title":"Create Your Own Sequence","text":"# Export necessary modules\nusing KomaMRI\n\n# Create the function that creates a phantom\nfunction sequence_example(FOV::Real, N::Integer)\n\n # Define initial paramters (TODO: consider when N is even)\n sys = Scanner()\n\tΔt = sys.ADC_Δt\n\tGmax = sys.Gmax\n\tNx = Ny = N #Square acquisition\n\tΔx = FOV/(Nx-1)\n\tTa = Δt*(Nx-1) #4-8 us\n Δτ = Ta/(Ny-1)\n\tGa = 1/(γ*Δt*FOV)\n\tζ = Ga / sys.Smax\n\tGa ≥ sys.Gmax ? error(\"Ga=$(Ga*1e3) mT/m exceeds Gmax=$(Gmax*1e3) mT/m, increase Δt to at least Δt_min=\"\n\t*string(round(1/(γ*Gmax*FOV),digits=2))*\" us.\") : 0\n\tϵ1 = Δτ/(Δτ+ζ)\n\n\t# EPI base\n\tEPI = Sequence(vcat(\n\t [mod(i,2)==0 ? Grad(Ga*(-1)^(i/2),Ta,ζ) : Grad(0.,Δτ,ζ) for i=0:2*Ny-2], #Gx\n\t \t[mod(i,2)==1 ? ϵ1*Grad(Ga,Δτ,ζ) : Grad(0.,Ta,ζ) for i=0:2*Ny-2])) #Gy\n\tEPI.ADC = [mod(i,2)==1 ? ADC(0,Δτ,ζ) : ADC(N,Ta,ζ) for i=0:2*Ny-2]\n\n\t# Pre-wind and wind gradients\n\tϵ2 = Ta/(Ta+ζ)\n PHASE = Sequence(reshape(1/2*[Grad( -Ga, Ta, ζ); ϵ2*Grad(-Ga, Ta, ζ)],:,1)) # This needs to be calculated differently\n\tDEPHASE = Sequence(reshape(1/2*[Grad((-1)^N*Ga, Ta, ζ); ϵ2*Grad(-Ga, Ta, ζ)],:,1)) # for even N\n\tseq = PHASE + EPI + DEPHASE\n\n\t# Saving parameters\n\tseq.DEF = Dict(\"Nx\"=>Nx,\"Ny\"=>Ny,\"Nz\"=>1,\"Name\"=>\"epi\")\n\n # Return the sequence\n\treturn seq\nend\n\n# Call the function to create a sequence\nFOV, N = 23e-2, 101\nseq = sequence_example(FOV, N)\n\n# Plot the sequence in time and its kspace\nplot_seq(seq; range=[0 30])\nplot_kspace(seq)","category":"page"},{"location":"create-your-own-sequence/","page":"Create Your Own Sequence","title":"Create Your Own Sequence","text":"","category":"page"},{"location":"sequence/#Sequence-Definition","page":"Sequence Definition","title":"Sequence Definition","text":"","category":"section"},{"location":"sequence/","page":"Sequence Definition","title":"Sequence Definition","text":"This section delves into some details about how a sequence is constructed. The sequence definition in KomaMRI is strongly related to the Pulseq definition. After reading this section, you should be able to create your own Sequence structs for conducting custom simulations using the KomaMRI package.","category":"page"},{"location":"sequence/#Sequence-Overview","page":"Sequence Definition","title":"Sequence Overview","text":"","category":"section"},{"location":"sequence/","page":"Sequence Definition","title":"Sequence Definition","text":"Let's introduce the following simple sequence figure to expand from a visual example to a more general sequence definition:","category":"page"},{"location":"sequence/","page":"Sequence Definition","title":"Sequence Definition","text":"

    ","category":"page"},{"location":"sequence/","page":"Sequence Definition","title":"Sequence Definition","text":"A sequence can be thought of as an ordered concatenation of blocks over time. Each block is essentially a sequence with a length of 1. Every block consists of an RF pulse, the (xyz) gradients, and the acquisition of samples. Each block also has an associated time duration. To simplify, we will refer to these components as follows:","category":"page"},{"location":"sequence/","page":"Sequence Definition","title":"Sequence Definition","text":"beginmatrix*l\ntextseqi textblock i of the sequence \ntextseqRFi textRF pulse at the i block \ntextseqGRxi textgradient x at the i block \ntextseqGRyi textgradient y at the i block \ntextseqGRzi textgradient z at the i block \ntextseqADCi textacquisition at the i block \ntextseqDURi textduration at the i block\nendmatrix*","category":"page"},{"location":"sequence/","page":"Sequence Definition","title":"Sequence Definition","text":"The best way to understand the Sequence struct in KomaMRI is by examining the source code where this struct is defined:","category":"page"},{"location":"sequence/","page":"Sequence Definition","title":"Sequence Definition","text":"mutable struct Sequence\n GR::Array{Grad,2}\n RF::Array{RF,2}\n ADC::Array{ADC,1}\n DUR::Array{Any,1}\n DEF::Dict{String,Any}\nend","category":"page"},{"location":"sequence/","page":"Sequence Definition","title":"Sequence Definition","text":"As you can see, a Sequence struct contains 5 field names: ''DEF'' contains information for reconstruction steps (so it is not mandatory to fill it), ''DUR'' is a vector that contains the time durations of each block, ''ADC'' is also a vector with the acquisition samples for every block (an vector of ADC structs), ''GR'' is a 2D matrix which 3 rows representing the x-y-z gradients and columns having the samples of each block (a matrix of Grad structs) and ''RF'' is also a 2D matrix where each row represents a different coil and the columns are for different block samples too (a matrix of RF structs). The RF, Grad and ADC are MRI events that will be explained in the section Events Definitions.","category":"page"},{"location":"sequence/","page":"Sequence Definition","title":"Sequence Definition","text":"warning: Warning\nSo far, KomaMRI can only manage one coil for RF excitations. However, in future versions, parallel transmit pTX will be managed by adding more ``rows'' to the RF matrix of the Sequence field name.","category":"page"},{"location":"sequence/","page":"Sequence Definition","title":"Sequence Definition","text":"In order to understand how a Sequence struct can be manipulated in Julia, let's use the EPI sequence example. You can display basic information of the Sequence variable in the Julia REPL:","category":"page"},{"location":"sequence/","page":"Sequence Definition","title":"Sequence Definition","text":"julia> seq = PulseDesigner.EPI_example()\nSequence[ τ = 62.846 ms | blocks: 204 | ADC: 101 | GR: 205 | RF: 1 | DEF: 5 ]","category":"page"},{"location":"sequence/","page":"Sequence Definition","title":"Sequence Definition","text":"As you can see, this Sequence has 204 blocks, 1 of these blocks has an RF struct with values different from zero, there are 205 number of Grad structs considering the x-y-z components, 101 ADC structs acquire samples of some blocks and 62.846 ms is the total time duration of the complete Sequence.","category":"page"},{"location":"sequence/","page":"Sequence Definition","title":"Sequence Definition","text":"To display the sequence in an graph, we can use the plot_seq function:","category":"page"},{"location":"sequence/","page":"Sequence Definition","title":"Sequence Definition","text":"julia> plot_seq(seq)","category":"page"},{"location":"sequence/","page":"Sequence Definition","title":"Sequence Definition","text":"","category":"page"},{"location":"sequence/","page":"Sequence Definition","title":"Sequence Definition","text":"This way, you can see exactly where the RF, Grad and ADC structs are located in time.","category":"page"},{"location":"sequence/","page":"Sequence Definition","title":"Sequence Definition","text":"You can access and filter information for the RF, Grad, ADC, and DUR field names of a Sequence using the dot notation. This allows you to display helpful information about the organization of the Sequence struct:","category":"page"},{"location":"sequence/","page":"Sequence Definition","title":"Sequence Definition","text":"julia> seq.RF\n1×204 Matrix{RF}:\n ⊓(0.5872 ms) ⇿(0.0 ms) ⇿(0.0 ms) … ⇿(0.0 ms) ⇿(0.0 ms) \n\njulia> seq.GR\n3×204 Matrix{Grad}:\n ⇿(0.5872 ms) ⊓(0.4042 ms) ⊓(0.4042 ms) … ⇿(0.2062 ms) ⊓(0.4042 ms) ⊓(0.4042 ms)\n ⇿(0.5872 ms) ⊓(0.4042 ms) ⇿(0.4042 ms) ⊓(0.2062 ms) ⇿(0.4042 ms) ⊓(0.4042 ms)\n ⇿(0.5872 ms) ⇿(0.0 ms) ⇿(0.0 ms) ⇿(0.0 ms) ⇿(0.0 ms) ⇿(0.0 ms)\n\njulia> seq.ADC\n204-element Vector{ADC}:\n ADC(0, 0.0, 0.0, 0.0, 0.0)\n ADC(0, 0.0, 0.0, 0.0, 0.0)\n ADC(101, 0.00019999999999999998, 0.00010211565434713023, 0.0, 0.0)\n ⋮\n ADC(101, 0.00019999999999999998, 0.00010211565434713023, 0.0, 0.0)\n ADC(0, 0.0, 0.0, 0.0, 0.0)\n\njulia> seq.DUR\n204-element Vector{Float64}:\n 0.0005871650124959989\n 0.0004042313086942605\n 0.0004042313086942605\n ⋮\n 0.0004042313086942605\n 0.0004042313086942605","category":"page"},{"location":"sequence/","page":"Sequence Definition","title":"Sequence Definition","text":"Additionally, you can access a subset of blocks in a Sequence by slicing or indexing. The result will also be a Sequence struct, allowing you to perform the same operations as you would with a full Sequence. For example, if you want to analyze the first 11 blocks, you can do the following:","category":"page"},{"location":"sequence/","page":"Sequence Definition","title":"Sequence Definition","text":"julia> seq[1:11]\nSequence[ τ = 3.837 ms | blocks: 11 | ADC: 5 | GR: 11 | RF: 1 | DEF: 5 ]\n\njulia> seq[1:11].GR\n3×11 Matrix{Grad}:\n ⇿(0.5872 ms) ⊓(0.4042 ms) ⊓(0.4042 ms) … ⊓(0.4042 ms) ⇿(0.2062 ms) ⊓(0.4042 ms)\n ⇿(0.5872 ms) ⊓(0.4042 ms) ⇿(0.4042 ms) ⇿(0.4042 ms) ⊓(0.2062 ms) ⇿(0.4042 ms)\n ⇿(0.5872 ms) ⇿(0.0 ms) ⇿(0.0 ms) ⇿(0.0 ms) ⇿(0.0 ms) ⇿(0.0 ms)\n\njulia> plot_seq(seq[1:11])","category":"page"},{"location":"sequence/","page":"Sequence Definition","title":"Sequence Definition","text":"","category":"page"},{"location":"sequence/#Concatenation-of-Sequences","page":"Sequence Definition","title":"Concatenation of Sequences","text":"","category":"section"},{"location":"sequence/","page":"Sequence Definition","title":"Sequence Definition","text":"Sequences can be concatenated side by side. The example below demonstrates how to concatenate sequences:","category":"page"},{"location":"sequence/","page":"Sequence Definition","title":"Sequence Definition","text":"julia> s = PulseDesigner.EPI_example()[1:11]\nSequence[ τ = 3.837 ms | blocks: 11 | ADC: 5 | GR: 11 | RF: 1 | DEF: 5 ]\n\njulia> seq = s + s + s\nSequence[ τ = 11.512 ms | blocks: 33 | ADC: 15 | GR: 33 | RF: 3 | DEF: 5 ]\n\njulia> plot_seq(seq)","category":"page"},{"location":"sequence/","page":"Sequence Definition","title":"Sequence Definition","text":"","category":"page"},{"location":"create-your-own-phantom/#Create-Your-Own-Phantom","page":"Create Your Own Phantom","title":"Create Your Own Phantom","text":"","category":"section"},{"location":"create-your-own-phantom/","page":"Create Your Own Phantom","title":"Create Your Own Phantom","text":"In this section, we will create a custom Phantom struct. While the example is presented in 2D, the concepts discussed here can be readily extended to 3D phantoms.","category":"page"},{"location":"create-your-own-phantom/","page":"Create Your Own Phantom","title":"Create Your Own Phantom","text":"In KomaMRI, the creation of a Phantom struct involves defining spin position arrays (x, y, z) and spin property arrays. The indices of these arrays are then associated with independent spins.","category":"page"},{"location":"create-your-own-phantom/","page":"Create Your Own Phantom","title":"Create Your Own Phantom","text":"For instance, you can create a Phantom with one spin like so:","category":"page"},{"location":"create-your-own-phantom/","page":"Create Your Own Phantom","title":"Create Your Own Phantom","text":"# Define arrays of positions (spin at zero position)\nx = [0.0]\ny = [0.0]\nz = [0.0]\n\n# Define arrays of properties (for CSF tissue)\nρ = [1.0]\nT1 = [2.569]\nT2 = [0.329]\nT2s = [0.058]\n\n# Define the phantom\nspin = Phantom(name=\"spin\", x=x, y=y, z=z, ρ=ρ, T1=T1, T2=T2, T2s=T2s)","category":"page"},{"location":"create-your-own-phantom/","page":"Create Your Own Phantom","title":"Create Your Own Phantom","text":"Phantom{Float64}\n name: String \"spin\"\n x: Array{Float64}((1,)) [0.0]\n y: Array{Float64}((1,)) [0.0]\n z: Array{Float64}((1,)) [0.0]\n ρ: Array{Float64}((1,)) [1.0]\n T1: Array{Float64}((1,)) [2.569]\n T2: Array{Float64}((1,)) [0.329]\n T2s: Array{Float64}((1,)) [0.058]\n Δw: Array{Float64}((1,)) [0.0]\n Dλ1: Array{Float64}((1,)) [0.0]\n Dλ2: Array{Float64}((1,)) [0.0]\n Dθ: Array{Float64}((1,)) [0.0]\n ux: #122 (function of type KomaMRICore.var\"#122#136\")\n uy: #123 (function of type KomaMRICore.var\"#123#137\")\n uz: #124 (function of type KomaMRICore.var\"#124#138\")","category":"page"},{"location":"create-your-own-phantom/","page":"Create Your Own Phantom","title":"Create Your Own Phantom","text":"You can add more properties to the Phantom, such as off-resonance, diffusion parameters, and even functions of motion. However, we won't be utilizing them (except for the off-resonance parameter) to maintain simplicity.","category":"page"},{"location":"create-your-own-phantom/","page":"Create Your Own Phantom","title":"Create Your Own Phantom","text":"If you are familiar with the MRI world, you likely have a 2D or 3D array, where each element contains an ID number identifying a different class of tissue. In this setup, the array axes represent spatial positions, while the elements are used for tissue identification.","category":"page"},{"location":"create-your-own-phantom/","page":"Create Your Own Phantom","title":"Create Your Own Phantom","text":"In this example, we will utilize a .mat file containing arrays with such arrangements. The file is readily available upon installing KomaMRI. Let's read the file and store the 2D data in an array called class:\"","category":"page"},{"location":"create-your-own-phantom/","page":"Create Your Own Phantom","title":"Create Your Own Phantom","text":"# Import necessary modules\nusing KomaMRI, MAT\n\n# Get data from a .mat file\npath_koma = dirname(dirname(pathof(KomaMRI)))\npath_phantom_mat = joinpath(path_koma, \"KomaMRICore\", \"src\", \"datatypes\",\"phantom\", \"brain2D.mat\")\ndata = MAT.matread(path_phantom_mat)\nclass = data[\"axial\"]","category":"page"},{"location":"create-your-own-phantom/","page":"Create Your Own Phantom","title":"Create Your Own Phantom","text":"You can visualize the tissue map using the function plot_image`:","category":"page"},{"location":"create-your-own-phantom/","page":"Create Your Own Phantom","title":"Create Your Own Phantom","text":"plot_image(class)","category":"page"},{"location":"create-your-own-phantom/","page":"Create Your Own Phantom","title":"Create Your Own Phantom","text":"
    ","category":"page"},{"location":"create-your-own-phantom/","page":"Create Your Own Phantom","title":"Create Your Own Phantom","text":"Let's define the position arrays. You need to know the distance between the spins in the original array (in this case, it is 0.5mm), and then you can determine all the positions like this (the z-component is not calculated since this is a 2D example):","category":"page"},{"location":"create-your-own-phantom/","page":"Create Your Own Phantom","title":"Create Your Own Phantom","text":"# Define spin position arrays\nΔx = .5e-3 # 0.5mm\nM, N = size(class) # Number of spins in x and y\nFOVx = (M-1)*Δx # Field of view in x\nFOVy = (N-1)*Δx # Field of view in y\nx = -FOVx/2:Δx:FOVx/2 # x spin coordinates vector\ny = -FOVy/2:Δx:FOVy/2 # y spin coordinates vector\nx, y = x .+ y'*0, x*0 .+ y' # x and y grid points","category":"page"},{"location":"create-your-own-phantom/","page":"Create Your Own Phantom","title":"Create Your Own Phantom","text":"Now, let's define the arrays for the properties. It's essential to have prior knowledge of the property values for different tissue classes. For example, for muscle tissue, we use ρ = 1, T1 = 900 * 1e-3, T2 = 47 * 1e-3, and T2s = 30 * 1e-3. Additionally, create an array mask to identify the location of a tissue's ID. For muscle with ID = 116, the mask is (class == 116). Finally, to obtain a property, sum all the masks with values for all tissue classes. This process is illustrated below: ","category":"page"},{"location":"create-your-own-phantom/","page":"Create Your Own Phantom","title":"Create Your Own Phantom","text":"# Define the proton density array\nρ = (class.==23)*1 .+ # CSF\n (class.==46)*.86 .+ # GM\n (class.==70)*.77 .+ # WM\n (class.==93)*1 .+ # FAT1\n (class.==116)*1 .+ # MUSCLE\n (class.==139)*.7 .+ # SKIN/MUSCLE\n (class.==162)*0 .+ # SKULL\n (class.==185)*0 .+ # VESSELS\n (class.==209)*.77 .+ # FAT2\n (class.==232)*1 .+ # DURA\n (class.==255)*.77 # MARROW\n\n# Define the T1 decay array\nT1 = (class.==23)*2569 .+ # CSF\n (class.==46)*833 .+ # GM\n (class.==70)*500 .+ # WM\n (class.==93)*350 .+ # FAT1\n (class.==116)*900 .+ # MUSCLE\n (class.==139)*569 .+ # SKIN/MUSCLE\n (class.==162)*0 .+ # SKULL\n (class.==185)*0 .+ # VESSELS\n (class.==209)*500 .+ # FAT2\n (class.==232)*2569 .+ # DURA\n (class.==255)*500 # MARROW\n\n# Define the T2 decay array\nT2 = (class.==23)*329 .+ # CSF\n (class.==46)*83 .+ # GM\n (class.==70)*70 .+ # WM\n (class.==93)*70 .+ # FAT1\n (class.==116)*47 .+ # MUSCLE\n (class.==139)*329 .+ # SKIN/MUSCLE\n (class.==162)*0 .+ # SKULL\n (class.==185)*0 .+ # VESSELS\n (class.==209)*70 .+ # FAT2\n (class.==232)*329 .+ # DURA\n (class.==255)*70 # MARROW\n\n# Define the T2s decay array\nT2s = (class.==23)*58 .+ # CSF\n (class.==46)*69 .+ # GM\n (class.==70)*61 .+ # WM\n (class.==93)*58 .+ # FAT1\n (class.==116)*30 .+ # MUSCLE\n (class.==139)*58 .+ # SKIN/MUSCLE\n (class.==162)*0 .+ # SKULL\n (class.==185)*0 .+ # VESSELS\n (class.==209)*61 .+ # FAT2\n (class.==232)*58 .+ # DURA\n (class.==255)*61 # MARROW\n\n# Define off-resonance array\nΔw_fat = -220*2π\nΔw = (class.==93)*Δw_fat .+ # FAT1\n\t(class.==209)*Δw_fat # FAT2\n\n# Adjust with scaling factor\nT1 = T1*1e-3\nT2 = T2*1e-3\nT2s = T2s*1e-3","category":"page"},{"location":"create-your-own-phantom/","page":"Create Your Own Phantom","title":"Create Your Own Phantom","text":"Finally, we can invoke the Phantom constructor. However, before doing so, we choose not to store spins where the proton density is zero to avoid unnecessary data storage. This is achieved by applying the mask ρ.!=0 to the arrays. Additionally, please note that we set the z-position array filled with zeros, and we interchange the x and y coordinates.\"","category":"page"},{"location":"create-your-own-phantom/","page":"Create Your Own Phantom","title":"Create Your Own Phantom","text":"# Define the phantom\nobj = Phantom{Float64}(\n name = \"custom-brain\",\n\tx = y[ρ.!=0],\n\ty = x[ρ.!=0],\n\tz = 0*x[ρ.!=0],\n\tρ = ρ[ρ.!=0],\n\tT1 = T1[ρ.!=0],\n\tT2 = T2[ρ.!=0],\n\tT2s = T2s[ρ.!=0],\n\tΔw = Δw[ρ.!=0],\n)","category":"page"},{"location":"create-your-own-phantom/","page":"Create Your Own Phantom","title":"Create Your Own Phantom","text":"We can display the Phantom struct with the plot_phantom_map function. In this case we select the proton density to be displayed, but you can choose other property to be displayed:","category":"page"},{"location":"create-your-own-phantom/","page":"Create Your Own Phantom","title":"Create Your Own Phantom","text":"plot_phantom_map(obj, :ρ)","category":"page"},{"location":"create-your-own-phantom/","page":"Create Your Own Phantom","title":"Create Your Own Phantom","text":"","category":"page"},{"location":"api/#API-Documentation","page":"API Documentation","title":"API Documentation","text":"","category":"section"},{"location":"api/","page":"API Documentation","title":"API Documentation","text":"This page provides documentation for the modules, structs, functions, methods, and additional components available when importing the KomaMRI package. It serves as a valuable reference when using the Julia REPL directly and when creating custom Julia scripts. Be sure not to overlook the section How to read the API docs, which contains important information for understanding the general structure of docstrings. The following is the table of contents for the API Documentation:","category":"page"},{"location":"api/","page":"API Documentation","title":"API Documentation","text":"Pages = [\"api.md\"]\nDepth = 3","category":"page"},{"location":"api/#How-to-read-the-API-docs","page":"API Documentation","title":"How to read the API docs","text":"","category":"section"},{"location":"api/","page":"API Documentation","title":"API Documentation","text":"The API documentation includes predefined \"template patterns\" to assist users in understanding how to use modules, structs, functions, methods, and all the necessary aspects to make the most of what KomaMRI has to offer.","category":"page"},{"location":"api/","page":"API Documentation","title":"API Documentation","text":"These documentation \"template patterns\" are based on the JJulia Blue Style documentation and other GitHub repositories that deal with MRI topics. However, some custom considerations were added to enhance understanding and provide a broader perspective.","category":"page"},{"location":"api/","page":"API Documentation","title":"API Documentation","text":"When you encounter a docstring documentation, it will have the following structure:","category":"page"},{"location":"api/","page":"API Documentation","title":"API Documentation","text":"docstring: KomaMRI.component_name — Component\nout1, out2, ... = component_name(arg1, arg2, ...; kw1, kw2, ...)This is a brief description of what component_name does.note: Note\nHere can be placed a note if it is regarded necessary.Argumentsarg1: (::type, =value, [unit], opts: [opt1, opt2, ...]) the description for the arg1\n...Keywordskw1: (::type, =value, [unit], opts: [opt1, opt2, ...]) the description for the kw1\n...Returnsout1: (::type, =value, [unit], opts: [opt1, opt2, ...]) the description for the out1\n...ReferencesSometimes it is a good idea to put some references or links\n...Examplesjulia> arg1, arg2, valkw1, valkw2 = 3.5, \"hello\", 1, true\n\njulia> out1, out2 = component_name(arg1, arg2; kw1=valkw1, kw2=valkw2)","category":"page"},{"location":"api/","page":"API Documentation","title":"API Documentation","text":"The preceding docstring block will always start with the way the component is called (outputs = component_name(inputs), followed by a brief description of what the component does. If necessary, a note block will be displayed. In general, the following subsections are optional: Arguments, Keywords, Returns, References, and Examples, but they will be provided as needed. These subsections are self-explanatory, making it intuitive to understand their purpose.","category":"page"},{"location":"api/","page":"API Documentation","title":"API Documentation","text":"Please note that every subitem in the sections Arguments, Keywords, and Returns represents variables. They include practical information along with a description. The information enclosed in parentheses is optional but highly useful when provided.","category":"page"},{"location":"api/","page":"API Documentation","title":"API Documentation","text":"::type: is the suggested type for the variable. If the input variable is of type ::type, there won't be any issues, but it's always possible to test other subtypes. If the variable is an output, it will be forced to the type ::type whenever possible.\n=value: sometimes, for the inputs, a default value is defined if it is not assigned by the user.\n[unit]: this is the suggested physical unit of measure for the variable. Everything will be fine if you stick with these units of measure.\nopts: [opt1, opt2, ...]: sometimes, the input value can only be interpreted if it is one of the predefined values.","category":"page"},{"location":"api/#Structs","page":"API Documentation","title":"Structs","text":"","category":"section"},{"location":"api/","page":"API Documentation","title":"API Documentation","text":"CurrentModule = KomaMRICore","category":"page"},{"location":"api/#Scanner","page":"API Documentation","title":"Scanner","text":"","category":"section"},{"location":"api/","page":"API Documentation","title":"API Documentation","text":"Scanner","category":"page"},{"location":"api/#KomaMRICore.Scanner","page":"API Documentation","title":"KomaMRICore.Scanner","text":"sys = Scanner(B0, B1, Gmax, Smax, ADC_Δt, seq_Δt, GR_Δt, RF_Δt,\n RF_ring_down_T, RF_dead_time_T, ADC_dead_time_T)\n\nThe Scanner struct.\n\nArguments\n\nB0: (::Real, =1.5, [T]) main magnetic field strength\nB1: (::Real, =10e-6, [T]) maximum RF amplitude\nGmax: (::Real, =60e-3, [T/m]) maximum gradient amplitude\nSmax: (::Real, =500, [mT/m/ms]) gradient maximum slew-rate\nADC_Δt: (::Real, =2e-6, [s]) ADC raster time\nseq_Δt: (::Real, =1e-5, [s]) sequence-block raster time\nGR_Δt: (::Real, =1e-5, [s]) gradient raster time\nRF_Δt: (::Real, =1e-6, [s]) RF raster time\nRF_ring_down_T: (::Real, =20e-6, [s]) RF ring down time\nRF_dead_time_T: (::Real, =100e-6, [s]) RF dead time\nADC_dead_time_T: (::Real, =10e-6, [s]) ADC dead time\n\nReturns\n\nsys: (::Scanner) Scanner struct\n\nExamples\n\njulia> sys = Scanner()\n\njulia> sys.B0\n\n\n\n\n\n","category":"type"},{"location":"api/#Phantom","page":"API Documentation","title":"Phantom","text":"","category":"section"},{"location":"api/","page":"API Documentation","title":"API Documentation","text":"Phantom\nbrain_phantom2D\nbrain_phantom3D","category":"page"},{"location":"api/#KomaMRICore.Phantom","page":"API Documentation","title":"KomaMRICore.Phantom","text":"obj = Phantom(name, x, y, z, ρ, T1, T2, T2s, Δw, Dλ1, Dλ2, Dθ, ux, uy, uz)\n\nThe Phantom struct.\n\nArguments\n\nname: (::String) name of the phantom\nx: (::AbstractVector{T}, [m]) vector of x-positions of the spins\ny: (::AbstractVector{T}, [m]) vector of y-positions of the spins\nz: (::AbstractVector{T}, [m]) vector of z-positions of the spins\nρ: (::AbstractVector{T}) vector of proton density of the spins\nT1: (::AbstractVector{T}, [s]) vector of T1 parameters of the spins\nT2: (::AbstractVector{T}, [s]) vector of T2 parameters of the spins\nT2s: (::AbstractVector{T}, [s]) vector of T2s parameters of the spins\nΔw: (::AbstractVector{T}, [rad/s]) vector of off-resonance parameters of the spins\nDλ1: (::AbstractVector{T}) vector of Dλ1 (diffusion) parameters of the spins\nDλ2: (::AbstractVector{T}) vector of Dλ2 (diffusion) parameters of the spins\nDθ: (::AbstractVector{T}) vector of Dθ (diffusion) parameters of the spins\nux: (::Function) displacement field in the x-axis\nuy: (::Function) displacement field in the y-axis\nuz: (::Function) displacement field in the z-axis\n\nReturns\n\nobj: (::Phantom) Phantom struct\n\nExamples\n\njulia> obj = Phantom()\n\njulia> obj.ρ\n\n\n\n\n\n","category":"type"},{"location":"api/#KomaMRICore.brain_phantom2D","page":"API Documentation","title":"KomaMRICore.brain_phantom2D","text":"phantom = brain_phantom2D(;axis=\"axial\", ss=4)\n\nCreates a two-dimentional brain phantom struct.\n\nReferences\n\nB. Aubert-Broche, D.L. Collins, A.C. Evans: \"A new improved version of the realistic digital brain phantom\" NeuroImage, in review - 2006\nB. Aubert-Broche, M. Griffin, G.B. Pike, A.C. Evans and D.L. Collins: \"20 new digital brain phantoms for creation of validation image data bases\" IEEE TMI, in review - 2006\nhttps://brainweb.bic.mni.mcgill.ca/brainweb\n\nKeywords\n\naxis: (::String, =\"axial\", opts=[\"axial\"]) orientation of the phantom\nss: (::Real, =4) subsampling parameter in all axis\n\nReturns\n\nphantom: (::Phantom) 2D Phantom struct\n\nExamples\n\njulia> obj = brain_phantom2D()\n\njulia> plot_phantom_map(obj, :ρ)\n\n\n\n\n\n","category":"function"},{"location":"api/#KomaMRICore.brain_phantom3D","page":"API Documentation","title":"KomaMRICore.brain_phantom3D","text":"phantom = brain_phantom3D(;ss=4)\n\nCreates a three-dimentional brain phantom struct.\n\nReferences\n\nB. Aubert-Broche, D.L. Collins, A.C. Evans: \"A new improved version of the realistic digital brain phantom\" NeuroImage, in review - 2006\nB. Aubert-Broche, M. Griffin, G.B. Pike, A.C. Evans and D.L. Collins: \"20 new digital brain phantoms for creation of validation image data bases\" IEEE TMI, in review - 2006\nhttps://brainweb.bic.mni.mcgill.ca/brainweb\n\nKeywords\n\nss: (::Real, =4) subsampling parameter in all axis\n\nReturns\n\nphantom: (::Phantom) 3D Phantom struct\n\nExamples\n\njulia> obj = brain_phantom3D()\n\njulia> plot_phantom_map(obj, :ρ)\n\n\n\n\n\n","category":"function"},{"location":"api/#Sequence","page":"API Documentation","title":"Sequence","text":"","category":"section"},{"location":"api/","page":"API Documentation","title":"API Documentation","text":"Sequence","category":"page"},{"location":"api/#KomaMRICore.Sequence","page":"API Documentation","title":"KomaMRICore.Sequence","text":"seq = Sequence()\nseq = Sequence(GR)\nseq = Sequence(GR, RF)\nseq = Sequence(GR, RF, ADC)\nseq = Sequence(GR, RF, ADC, DUR)\nseq = Sequence(GR::Array{Grad,1})\nseq = Sequence(GR::Array{Grad,1}, RF::Array{RF,1})\nseq = Sequence(GR::Array{Grad,1}, RF::Array{RF,1}, A::ADC, DUR, DEF)\n\nThe Sequence struct.\n\nArguments\n\nGR: (::Matrix{Grad}) gradient matrix, rows are for (x,y,z) and columns are for time\nRF: (::Matrix{RF}) RF matrix, the 1 row is for the coil and columns are for time\nADC: (::Vector{ADC}) ADC vector in time\nDUR: (::Vector{Float64}, [s]) duration of each sequence-block, this enables delays after RF pulses to satisfy ring-down times\nDEF: (::Dict{String, Any}) dictionary with relevant information of the sequence. The possible keys are [\"AdcRasterTime\", \"GradientRasterTime\", \"Name\", \"Nz\", \"Num_Blocks\", \"Nx\", \"Ny\", \"PulseqVersion\", \"BlockDurationRaster\", \"FileName\", \"RadiofrequencyRasterTime\"]\n\nReturns\n\nseq: (::Sequence) Sequence struct\n\n\n\n\n\n","category":"type"},{"location":"api/#Grad","page":"API Documentation","title":"Grad","text":"","category":"section"},{"location":"api/","page":"API Documentation","title":"API Documentation","text":"Grad\nGrad(::Function, ::Real, ::Int64)","category":"page"},{"location":"api/#KomaMRICore.Grad","page":"API Documentation","title":"KomaMRICore.Grad","text":"grad = Grad(A, T)\ngrad = Grad(A, T, rise)\ngrad = Grad(A, T, rise, delay)\ngrad = Grad(A, T, rise, fall, delay)\n\nThe Gradient struct.\n\nArguments\n\nA: (::Float64, [T]) amplitude of the gradient\nT: (::Float64, [s]) duration of the flat-top\nrise: (::Real, [s]) duration of the rise\nfall: (::Real, [s]) duration of the fall\ndelay: (::Real, [s]) duration of the delay\n\nReturns\n\ngrad: (::Grad) gradient struct\n\n\n\n\n\n","category":"type"},{"location":"api/#KomaMRICore.Grad-Tuple{Function, Real, Int64}","page":"API Documentation","title":"KomaMRICore.Grad","text":"grad = Grad(f::Function, T::Real, N::Int64; delay::Real)\n\nGenerates an arbitrary gradient waveform defined by function f in the interval t ∈ [0,T]. It uses N square gradients uniformly spaced in the interval.\n\nArguments\n\nf: (::Function) function that describes the gradient waveform\nT: (::Real, [s]) duration of the gradient waveform\nN: (::Int64) number of samples of the gradient waveform\n\nKeywords\n\ndelay: (::Real, =0, [s]) starting delay for the waveform\n\nReturns\n\ngrad: (::Grad) gradient struct\n\nExamples\n\njulia> f1 = t -> sin(π*t / 0.8)\n\njulia> seq = Sequence([Grad(f1, 0.8)])\n\njulia> plot_seq(seq)\n\n\n\n\n\n","category":"method"},{"location":"api/#RF","page":"API Documentation","title":"RF","text":"","category":"section"},{"location":"api/","page":"API Documentation","title":"API Documentation","text":"RF","category":"page"},{"location":"api/#KomaMRICore.RF","page":"API Documentation","title":"KomaMRICore.RF","text":"rf = RF(A, T)\nrf = RF(A, T, Δf)\nrf = RF(A, T, Δf, delay)\n\nThe RF struct.\n\nArguments\n\nA: (::Complex{Int64}, [T]) the amplitud-phase B1x + i B1y\nT: (::Int64, [s]) the duration of the RF\nΔf: (::Float64, [Hz]) the frequency offset of the RF\ndelay: (::Float64, [s]) the delay time of the RF\n\nReturns\n\nrf: (::RF) the RF struct\n\n\n\n\n\n","category":"type"},{"location":"api/#ADC","page":"API Documentation","title":"ADC","text":"","category":"section"},{"location":"api/","page":"API Documentation","title":"API Documentation","text":"ADC","category":"page"},{"location":"api/#KomaMRICore.ADC","page":"API Documentation","title":"KomaMRICore.ADC","text":"adc = ADC(N, T)\nadc = ADC(N, T, delay)\nadc = ADC(N, T, delay, Δf, ϕ)\n\nThe ADC struct.\n\nArguments\n\nN: (::Int64) number of acquired samples\nT: (::Float64, [s]) duration to acquire the samples\ndelay: (::Float64, [s]) delay time to start the acquisition\nΔf: (::Float64, [Hz]) delta frequency. It's meant to compensate RF pulse phases. It is used internally by the read_ADC function\nϕ: (::Float64, [rad]) phase. It's meant to compensate RF pulse phases. It is used internally by the read_ADC function\n\nReturns\n\nadc: (::ADC) ADC struct\n\n\n\n\n\n","category":"type"},{"location":"api/#Delay","page":"API Documentation","title":"Delay","text":"","category":"section"},{"location":"api/","page":"API Documentation","title":"API Documentation","text":"Delay","category":"page"},{"location":"api/#KomaMRICore.Delay","page":"API Documentation","title":"KomaMRICore.Delay","text":"delay = Delay(T)\n\nThe Delay struct. It is a special \"object\" meant to add a delay to a sequence by using a sum operator.\n\nArguments\n\nT: (::Real, [s]) time delay value\n\nReturns\n\ndelay: (::Delay) delay struct\n\n\n\n\n\n","category":"type"},{"location":"api/#Read-Data","page":"API Documentation","title":"Read Data","text":"","category":"section"},{"location":"api/#read_seq","page":"API Documentation","title":"read_seq","text":"","category":"section"},{"location":"api/","page":"API Documentation","title":"API Documentation","text":"read_seq","category":"page"},{"location":"api/#KomaMRICore.read_seq","page":"API Documentation","title":"KomaMRICore.read_seq","text":"seq = read_seq(filename)\n\nReturns the Sequence struct from a sequence file .seq.\n\nArguments\n\nfilename: (::String) the absolute or relative path of the sequence file .seq\n\nReturns\n\nseq: (::Sequence) Sequence struct\n\nExamples\n\njulia> seq_file = joinpath(dirname(pathof(KomaMRI)), \"../examples/1.sequences/spiral.seq\")\n\njulia> seq = read_seq(seq_file)\n\njulia> plot_seq(seq)\n\n\n\n\n\n","category":"function"},{"location":"api/#read_phantom_jemris","page":"API Documentation","title":"read_phantom_jemris","text":"","category":"section"},{"location":"api/","page":"API Documentation","title":"API Documentation","text":"read_phantom_jemris","category":"page"},{"location":"api/#KomaMRICore.read_phantom_jemris","page":"API Documentation","title":"KomaMRICore.read_phantom_jemris","text":"phantom = read_phantom_jemris(filename)\n\nReturns the Phantom struct from a JEMRIS phantom file .h5.\n\nArguments\n\nfilename: (::String) the absolute or relative path of the phantom file .h5\n\nReturns\n\nphantom: (::Phantom) Phantom struct\n\nExamples\n\njulia> obj_file = joinpath(dirname(pathof(KomaMRI)), \"../examples/2.phantoms/brain.h5\")\n\njulia> obj = read_phantom_jemris(obj_file)\n\njulia> plot_phantom_map(obj, :ρ)\n\n\n\n\n\n","category":"function"},{"location":"api/#read_phantom_MRiLab","page":"API Documentation","title":"read_phantom_MRiLab","text":"","category":"section"},{"location":"api/","page":"API Documentation","title":"API Documentation","text":"read_phantom_MRiLab","category":"page"},{"location":"api/#KomaMRICore.read_phantom_MRiLab","page":"API Documentation","title":"KomaMRICore.read_phantom_MRiLab","text":"phantom = read_phantom_MRiLab(filename)\n\nReturns the Phantom struct from a MRiLab phantom file .mat.\n\nArguments\n\nfilename: (::String) the absolute or relative path of the phantom file .mat\n\nReturns\n\nphantom: (::Phantom) Phantom struct\n\nExamples\n\njulia> obj_file = joinpath(dirname(pathof(KomaMRI)), \"../examples/2.phantoms/brain.mat\")\n\njulia> obj = read_phantom_MRiLab(obj_file)\n\njulia> plot_phantom_map(obj, :ρ)\n\n\n\n\n\n","category":"function"},{"location":"api/#signal_to_raw_data","page":"API Documentation","title":"signal_to_raw_data","text":"","category":"section"},{"location":"api/","page":"API Documentation","title":"API Documentation","text":"signal_to_raw_data","category":"page"},{"location":"api/#KomaMRICore.signal_to_raw_data","page":"API Documentation","title":"KomaMRICore.signal_to_raw_data","text":"raw_ismrmrd = signal_to_raw_data(signal, seq; phantom_name, sys, simParams)\n\nTransforms the raw signal into ISMRMRD format.\n\nArguments\n\nsignal: (::Vector{ComplexF64}) raw signal\nseq: (::Sequence) Sequence struct\n\nKeywords\n\nphantom_name: (::String, =\"Phantom\") Phantom struct\nsys: (::Scanner, =Scanner()) Scanner struct\nsimParams: (::Dict{String,Any}(), =Dict{String,Any}()) dictionary with simulation parameters\n\nReturns\n\nraw_ismrmrd: (::RawAcquisitionData) raw signal in ISMRMRD format\n\nExamples\n\njulia> seq_file = joinpath(dirname(pathof(KomaMRI)), \"../examples/3.koma_paper/comparison_accuracy/sequences/EPI/epi_100x100_TE100_FOV230.seq\");\n\njulia> sys, obj, seq = Scanner(), brain_phantom2D(), read_seq(seq_file)\n\njulia> raw = simulate(obj, seq, sys)\n\njulia> plot_signal(raw)\n\n\n\n\n\n","category":"function"},{"location":"api/#Pulse-Design","page":"API Documentation","title":"Pulse Design","text":"","category":"section"},{"location":"api/#PulseDesigner","page":"API Documentation","title":"PulseDesigner","text":"","category":"section"},{"location":"api/","page":"API Documentation","title":"API Documentation","text":"PulseDesigner","category":"page"},{"location":"api/#KomaMRICore.PulseDesigner","page":"API Documentation","title":"KomaMRICore.PulseDesigner","text":"PulseDesigner\n\nA module to define different pulse sequences.\n\n\n\n\n\n","category":"module"},{"location":"api/#PulseDesigner.RF_hard","page":"API Documentation","title":"PulseDesigner.RF_hard","text":"","category":"section"},{"location":"api/","page":"API Documentation","title":"API Documentation","text":"PulseDesigner.RF_hard","category":"page"},{"location":"api/#KomaMRICore.PulseDesigner.RF_hard","page":"API Documentation","title":"KomaMRICore.PulseDesigner.RF_hard","text":"ex = RF_hard(B1, T, sys::Scanner; G=[0,0,0], Δf=0)\n\nDefinition of the RF hard sequence.\n\nArguments\n\nB1: (Float64, [T]) amplitude of the RF pulse\nT: (Float64, [s]) duration of the RF pulse\nsys: (::Scanner) Scanner struct\n\nKeywords\n\nG: (Vector{Float64}, =[0, 0, 0], [T]) gradient amplitudes for x, y, z\nΔf: (Float64, =0, [Hz]) frequency offset of the RF pulse\n\nReturns\n\nex: (::Sequence) excitation Sequence struct\n\nExamples\n\njulia> sys = Scanner();\n\njulia> durRF = π/2/(2π*γ*sys.B1); #90-degree hard excitation pulse\n\njulia> ex = PulseDesigner.RF_hard(sys.B1, durRF, sys)\nSequence[ τ = 0.587 ms | blocks: 1 | ADC: 0 | GR: 0 | RF: 1 | DEF: 0 ]\n\njulia> plot_seq(ex)\n\n\n\n\n\n","category":"function"},{"location":"api/#PulseDesigner.RF_sinc","page":"API Documentation","title":"PulseDesigner.RF_sinc","text":"","category":"section"},{"location":"api/","page":"API Documentation","title":"API Documentation","text":"PulseDesigner.RF_sinc","category":"page"},{"location":"api/#KomaMRICore.PulseDesigner.RF_sinc","page":"API Documentation","title":"KomaMRICore.PulseDesigner.RF_sinc","text":"seq = spiral_base(FOV::Float64, Nr::Int, sys::Scanner)\n\nDefinition of the radial base sequence.\n\nArguments\n\nFOV: (::Float64, [m]) field of view\nN: (::Int) number of pixels along the radious\nsys: (::Scanner) Scanner struct\n\nReturns\n\nex: (::Sequence) RF struct\n\nReferences\n\nMATT A. BERNSTEIN, KEVIN F. KING, XIAOHONG JOE ZHOU, CHAPTER 2 - RADIOFREQUENCY PULSE SHAPES, Handbook of MRI Pulse Sequences, 2004, Pages 35-66, https://doi.org/10.1016/B978-012092861-3/50006-6.\n\n\n\n\n\n","category":"function"},{"location":"api/#PulseDesigner.EPI","page":"API Documentation","title":"PulseDesigner.EPI","text":"","category":"section"},{"location":"api/","page":"API Documentation","title":"API Documentation","text":"PulseDesigner.EPI","category":"page"},{"location":"api/#KomaMRICore.PulseDesigner.EPI","page":"API Documentation","title":"KomaMRICore.PulseDesigner.EPI","text":"epi = EPI(FOV::Float64, N::Int, sys::Scanner)\n\nDefinition of the EPI sequence.\n\nArguments\n\nFOV: (::Float64, [m]) field of view\nN: (::Int) number of pixels in the x and y axis\nsys: (::Scanner) Scanner struct\n\nReturns\n\nepi: (::Sequence) epi Sequence struct\n\nExamples\n\njulia> sys, FOV, N = Scanner(), 23e-2, 101\n\njulia> epi = PulseDesigner.EPI(FOV, N, sys)\nSequence[ τ = 62.259 ms | blocks: 203 | ADC: 101 | GR: 205 | RF: 0 | DEF: 4 ]\n\njulia> plot_seq(epi)\n\n\n\n\n\n","category":"function"},{"location":"api/#PulseDesigner.radial_base","page":"API Documentation","title":"PulseDesigner.radial_base","text":"","category":"section"},{"location":"api/","page":"API Documentation","title":"API Documentation","text":"PulseDesigner.radial_base","category":"page"},{"location":"api/#KomaMRICore.PulseDesigner.radial_base","page":"API Documentation","title":"KomaMRICore.PulseDesigner.radial_base","text":"seq = radial_base(FOV::Float64, Nr::Int, sys::Scanner)\n\nDefinition of the radial base sequence.\n\nArguments\n\nFOV: (::Float64, [m]) field of view\nN: (::Int) number of pixels along the radious\nsys: (::Scanner) Scanner struct\n\nReturns\n\nseq: (::Sequence) radial base Sequence struct\n\n\n\n\n\n","category":"function"},{"location":"api/#PulseDesigner.spiral_base","page":"API Documentation","title":"PulseDesigner.spiral_base","text":"","category":"section"},{"location":"api/","page":"API Documentation","title":"API Documentation","text":"PulseDesigner.spiral_base","category":"page"},{"location":"api/#KomaMRICore.PulseDesigner.spiral_base","page":"API Documentation","title":"KomaMRICore.PulseDesigner.spiral_base","text":"seq = spiral_base(FOV::Float64, Nr::Int, sys::Scanner)\n\nDefinition of the radial base sequence.\n\nArguments\n\nFOV: (::Float64, [m]) field of view\nN: (::Int) number of pixels along the radious\nsys: (::Scanner) Scanner struct\n\nReturns\n\nseq: (::Function) function that returns a Sequence when evaluated\n\nReferences\n\nGlover, G.H. (1999), Simple analytic spiral K-space algorithm. Magn. Reson. Med., 42: 412-415. https://doi.org/10.1002/(SICI)1522-2594(199908)42:2<412::AID-MRM25>3.0.CO;2-U\n\n\n\n\n\n","category":"function"},{"location":"api/#PulseDesigner.EPI_example","page":"API Documentation","title":"PulseDesigner.EPI_example","text":"","category":"section"},{"location":"api/","page":"API Documentation","title":"API Documentation","text":"PulseDesigner.EPI_example","category":"page"},{"location":"api/#Simulation","page":"API Documentation","title":"Simulation","text":"","category":"section"},{"location":"api/#simulate","page":"API Documentation","title":"simulate","text":"","category":"section"},{"location":"api/","page":"API Documentation","title":"API Documentation","text":"simulate","category":"page"},{"location":"api/#KomaMRICore.simulate","page":"API Documentation","title":"KomaMRICore.simulate","text":"out = simulate(obj::Phantom, seq::Sequence, sys::Scanner; simParams, w)\n\nReturns the raw signal or the last state of the magnetization according to the value of the \"return_type\" key of the simParams dictionary.\n\nArguments\n\nobj: (::Phantom) Phantom struct\nseq: (::Sequence) Sequence struct\nsys: (::Scanner) Scanner struct\n\nKeywords\n\nsimParams: (::Dict{String,Any}, =Dict{String,Any}()) the dictionary with simulation parameters\nw: (::Any, =nothing) the flag to regard a progress bar in the blink window UI. If this variable is differnet from nothing, then the progress bar is considered\n\nReturns\n\nout: (::Vector{ComplexF64} or ::S <: SpinStateRepresentation or RawAcquisitionData) depending if \"return_type\" is \"mat\" or \"state\" or \"raw\" (default) respectively.\n\nExamples\n\njulia> seq_file = joinpath(dirname(pathof(KomaMRI)), \"../examples/3.koma_paper/comparison_accuracy/sequences/EPI/epi_100x100_TE100_FOV230.seq\");\n\njulia> sys, obj, seq = Scanner(), brain_phantom2D(), read_seq(seq_file)\n\njulia> raw = simulate(obj, seq, sys)\n\njulia> plot_signal(raw)\n\n\n\n\n\n","category":"function"},{"location":"api/#simulate_slice_profile","page":"API Documentation","title":"simulate_slice_profile","text":"","category":"section"},{"location":"api/","page":"API Documentation","title":"API Documentation","text":"simulate_slice_profile","category":"page"},{"location":"api/#KomaMRICore.simulate_slice_profile","page":"API Documentation","title":"KomaMRICore.simulate_slice_profile","text":"M = simulate_slice_profile(seq; z, simParams)\n\nReturns magnetization of spins distributed along z after running the Sequence seq.\n\nArguments\n\nseq: (::Sequence) Sequence struct\n\nKeywords\n\nz: (=range(-2e-2,2e-2,200)) range for the z axis\nsimParams: (::Dict{String, Any}, =Dict{String,Any}(\"Δt_rf\"=>1e-6)) dictionary with simulation parameters\n\nReturns\n\nM: (::Vector{Mag}) final state of the Mag vector\n\n\n\n\n\n","category":"function"},{"location":"api/#Plots","page":"API Documentation","title":"Plots","text":"","category":"section"},{"location":"api/","page":"API Documentation","title":"API Documentation","text":"CurrentModule = KomaMRIPlots","category":"page"},{"location":"api/#plot_phantom_map","page":"API Documentation","title":"plot_phantom_map","text":"","category":"section"},{"location":"api/","page":"API Documentation","title":"API Documentation","text":"plot_phantom_map","category":"page"},{"location":"api/#KomaMRIPlots.plot_phantom_map","page":"API Documentation","title":"KomaMRIPlots.plot_phantom_map","text":"p = plot_phantom_map(ph, key; t0=0, height=600, width=nothing, darkmode=false)\n\nPlots a phantom map for a specific spin parameter given by key.\n\nArguments\n\nph: (::Phantom) Phantom struct\nkey: (::Symbol, opts: [:ρ, :T1, :T2, :T2s, :x, :y, :z]) symbol for displaying different parameters of the phantom spins\n\nKeywords\n\nt0: (::Float64, =0, [ms]) time to see displacement of the phantom\nheight: (::Int64, =600) height of the plot\nwidth: (::Int64, =nothing) width of the plot\ndarkmode: (::Bool, =false) boolean to define colors for darkmode\nview_2d: (::Bool, =false) boolean to use a 2D scatter plot\ncolorbar: (::Bool, =true) boolean to show the colorbar\n\nReturns\n\np: (::PlotlyJS.SyncPlot) plot of the phantom map for a specific spin parameter\n\nReferences\n\nColormaps from https://github.com/markgriswold/MRFColormaps Towards Unified Colormaps for Quantitative MRF Data, Mark Griswold, et al. (2018).\n\nExamples\n\njulia> obj2D, obj3D = brain_phantom2D(), brain_phantom3D();\n\njulia> plot_phantom_map(obj2D, :ρ)\n\njulia> plot_phantom_map(obj3D, :ρ)\n\n\n\n\n\n","category":"function"},{"location":"api/#plot_seq","page":"API Documentation","title":"plot_seq","text":"","category":"section"},{"location":"api/","page":"API Documentation","title":"API Documentation","text":"plot_seq","category":"page"},{"location":"api/#KomaMRIPlots.plot_seq","page":"API Documentation","title":"KomaMRIPlots.plot_seq","text":"p = plot_seq(seq; width, height, slider, show_seq_blocks, show_sim_blocks, Nblocks,\n darkmode, max_rf_samples, range)\n\nPlots a sequence struct.\n\nArguments\n\nseq: (::Sequence) Sequence struct\n\nKeywords\n\nwidth: (::Int64, =nothing) width of the plot\nheight: (::Int64, =nothing) height of the plot\nslider: (::Bool, =true) boolean to display a slider\nshow_seq_blocks: (::Bool, =false) boolean to show sequence blocks\nshow_sim_blocks: (::Bool, =false) boolean to show simulation blocks\nNblocks: (::Int64, =0) number of simulation blocks to display\ndarkmode: (::Bool, =false) boolean to define colors for darkmode\nmax_rf_samples: (::Int64, =100) maximum number of RF samples\nrange: (::Vector{Float64}, =[]) time range to be displayed initially\n\nReturns\n\np: (::PlotlyJS.SyncPlot) plot of the Sequence struct\n\nExamples\n\njulia> seq_file = joinpath(dirname(pathof(KomaMRI)), \"../examples/1.sequences/spiral.seq\")\n\njulia> seq = read_seq(seq_file)\n\njulia> plot_seq(seq)\n\n\n\n\n\n","category":"function"},{"location":"api/#plot_kspace","page":"API Documentation","title":"plot_kspace","text":"","category":"section"},{"location":"api/","page":"API Documentation","title":"API Documentation","text":"plot_kspace","category":"page"},{"location":"api/#KomaMRIPlots.plot_kspace","page":"API Documentation","title":"KomaMRIPlots.plot_kspace","text":"p = plot_kspace(seq; width=nothing, height=nothing, darkmode=false)\n\nPlots the k-space of a sequence struct.\n\nArguments\n\nseq: (::Sequence) Sequence struct\n\nKeywords\n\nwidth: (::Int64, =nothing) width of the plot\nheight: (::Int64, =nothing) height of the plot\ndarkmode: (::Bool, =false) boolean to define colors for darkmode\n\nReturns\n\np: (::PlotlyJS.SyncPlot) plot of the k-space of the sequence struct seq\n\nExamples\n\njulia> seq_file = joinpath(dirname(pathof(KomaMRI)), \"../examples/1.sequences/spiral.seq\")\n\njulia> seq = read_seq(seq_file)\n\njulia> plot_kspace(seq)\n\n\n\n\n\n","category":"function"},{"location":"api/#plot_M0","page":"API Documentation","title":"plot_M0","text":"","category":"section"},{"location":"api/","page":"API Documentation","title":"API Documentation","text":"plot_M0","category":"page"},{"location":"api/#KomaMRIPlots.plot_M0","page":"API Documentation","title":"KomaMRIPlots.plot_M0","text":"p = plot_M0(seq; height=nothing, width=nothing, slider=true, darkmode=false, range=[])\n\nPlots the zero order moment (M0) of a Sequence seq.\n\nArguments\n\nseq: (::Sequence) Sequence struct\n\nKeywords\n\nheight: (::Int64, =nothing) height of the plot\nwidth: (::Int64, =nothing) width of the plot\nslider: (::Bool, =true) boolean to display a slider\ndarkmode: (::Bool, =false) boolean to define colors for darkmode\nrange: (::Vector{Float64}, =[]) time range to be displayed initially\n\nReturns\n\np: (::PlotlyJS.SyncPlot) plot of the moment M0 of the sequence struct seq\n\nExamples\n\njulia> seq_file = joinpath(dirname(pathof(KomaMRI)), \"../examples/1.sequences/spiral.seq\")\n\njulia> seq = read_seq(seq_file)\n\njulia> plot_M0(seq)\n\n\n\n\n\n","category":"function"},{"location":"api/#plot_M1","page":"API Documentation","title":"plot_M1","text":"","category":"section"},{"location":"api/","page":"API Documentation","title":"API Documentation","text":"plot_M1","category":"page"},{"location":"api/#KomaMRIPlots.plot_M1","page":"API Documentation","title":"KomaMRIPlots.plot_M1","text":"p = plot_M1(seq; height=nothing, width=nothing, slider=true, darkmode=false, range=[])\n\nPlots the first order moment (M1) of a Sequence seq.\n\nArguments\n\nseq: (::Sequence) Sequence\n\nKeywords\n\nheight: (::Int64, =nothing) height of the plot\nwidth: (::Int64, =nothing) width of the plot\nslider: (::Bool, =true) boolean to display a slider\ndarkmode: (::Bool, =false) boolean to define colors for darkmode\nrange: (::Vector{Float64}, =[]) time range to be displayed initially\n\nReturns\n\np: (::PlotlyJS.SyncPlot) plot of the moment M1 of the sequence struct seq\n\nExamples\n\njulia> seq_file = joinpath(dirname(pathof(KomaMRI)), \"../examples/1.sequences/spiral.seq\")\n\njulia> seq = read_seq(seq_file)\n\njulia> plot_M1(seq)\n\n\n\n\n\n","category":"function"},{"location":"api/#plot_M2","page":"API Documentation","title":"plot_M2","text":"","category":"section"},{"location":"api/","page":"API Documentation","title":"API Documentation","text":"plot_M2","category":"page"},{"location":"api/#KomaMRIPlots.plot_M2","page":"API Documentation","title":"KomaMRIPlots.plot_M2","text":"p = plot_M2(seq; height=nothing, width=nothing, slider=true, darkmode=false, range=[])\n\nPlots the second order moment (M2) of a Sequence seq.\n\nArguments\n\nseq: (::Sequence) Sequence\n\nKeywords\n\nheight: (::Int64, =nothing) height of the plot\nwidth: (::Int64, =nothing) width of the plot\nslider: (::Bool, =true) boolean to display a slider\ndarkmode: (::Bool, =false) boolean to define colors for darkmode\nrange: (::Vector{Float64}, =[]) time range to be displayed initially\n\nReturns\n\np: (::PlotlyJS.SyncPlot) plot of the moment M2 of the sequence struct seq\n\nExamples\n\njulia> seq_file = joinpath(dirname(pathof(KomaMRI)), \"../examples/1.sequences/spiral.seq\")\n\njulia> seq = read_seq(seq_file)\n\njulia> plot_M2(seq)\n\n\n\n\n\n","category":"function"},{"location":"api/#plot_eddy_currents","page":"API Documentation","title":"plot_eddy_currents","text":"","category":"section"},{"location":"api/","page":"API Documentation","title":"API Documentation","text":"plot_eddy_currents","category":"page"},{"location":"api/#KomaMRIPlots.plot_eddy_currents","page":"API Documentation","title":"KomaMRIPlots.plot_eddy_currents","text":"p = plot_eddy_currents(seq, λ; α=ones(size(λ)), height=nothing, width=nothing, slider=true, darkmode=false, range=[])\n\nPlots the eddy currents of a Sequence seq.\n\nArguments\n\nseq: (::Sequence) Sequence\nλ: (::Float64, [s]) eddy currents decay constant time\n\nKeywords\n\nα: (::Vector{Float64}, =ones(size(λ))) eddy currents factors\nheight: (::Int64, =nothing) height of the plot\nwidth: (::Int64, =nothing) width of the plot\nslider: (::Bool, =true) boolean to display a slider\ndarkmode: (::Bool, =false) boolean to define colors for darkmode\nrange: (::Vector{Float64}, =[]) time range to be displayed initially\n\nReturns\n\np: (::PlotlyJS.SyncPlot) plot of the eddy currents of the sequence struct seq\n\nExamples\n\njulia> seq_file = joinpath(dirname(pathof(KomaMRI)), \"../examples/1.sequences/spiral.seq\")\n\njulia> seq = read_seq(seq_file)\n\njulia> plot_eddy_currents(seq, 80e-3)\n\n\n\n\n\n","category":"function"},{"location":"api/#plot_slew_rate","page":"API Documentation","title":"plot_slew_rate","text":"","category":"section"},{"location":"api/","page":"API Documentation","title":"API Documentation","text":"plot_slew_rate","category":"page"},{"location":"api/#KomaMRIPlots.plot_slew_rate","page":"API Documentation","title":"KomaMRIPlots.plot_slew_rate","text":"p = plot_slew_rate(seq; height=nothing, width=nothing, slider=true, darkmode=false, range=[])\n\nPlots the slew rate currents of a Sequence seq.\n\nArguments\n\nseq: (::Sequence) Sequence\n\nKeywords\n\nheight: (::Int64, =nothing) height of the plot\nwidth: (::Int64, =nothing) width of the plot\nslider: (::Bool, =true) boolean to display a slider\ndarkmode: (::Bool, =false) boolean to define colors for darkmode\nrange: (::Vector{Float64}, =[]) time range to be displayed initially\n\nReturns\n\np: (::PlotlyJS.SyncPlot) plot of the slew rate currents of the sequence struct seq\n\nExamples\n\njulia> seq_file = joinpath(dirname(pathof(KomaMRI)), \"../examples/1.sequences/spiral.seq\")\n\njulia> seq = read_seq(seq_file)\n\njulia> plot_slew_rate(seq)\n\n\n\n\n\n","category":"function"},{"location":"api/#plot_signal","page":"API Documentation","title":"plot_signal","text":"","category":"section"},{"location":"api/","page":"API Documentation","title":"API Documentation","text":"plot_signal","category":"page"},{"location":"api/#KomaMRIPlots.plot_signal","page":"API Documentation","title":"KomaMRIPlots.plot_signal","text":"p = plot_signal(raw::RawAcquisitionData; height, width, slider, show_sim_blocks,\n darkmode, range)\n\nPlots a raw signal in ISMRMRD format.\n\nArguments\n\nraw: (::RawAcquisitionData) RawAcquisitionData struct which is the raw signal in ISMRMRD format\n\nKeywords\n\nwidth: (::Int64, =nothing) width of the plot\nheight: (::Int64, =nothing) height of the plot\nslider: (::Bool, =true) boolean to display a slider\nshow_sim_blocks: (::Bool, =false) boolean to show simulation blocks\ndarkmode: (::Bool, =false) boolean to define colors for darkmode\nrange: (::Vector{Float64}, =[]) time range to be displayed initially\n\nReturns\n\np: (::PlotlyJS.SyncPlot) plot of the raw signal\n\nExamples\n\njulia> seq_file = joinpath(dirname(pathof(KomaMRI)), \"../examples/3.koma_paper/comparison_accuracy/sequences/EPI/epi_100x100_TE100_FOV230.seq\");\n\njulia> sys, obj, seq = Scanner(), brain_phantom2D(), read_seq(seq_file)\n\njulia> raw = simulate(obj, seq, sys)\n\njulia> plot_signal(raw)\n\n\n\n\n\n","category":"function"},{"location":"api/#plot_image","page":"API Documentation","title":"plot_image","text":"","category":"section"},{"location":"api/","page":"API Documentation","title":"API Documentation","text":"plot_image","category":"page"},{"location":"api/#KomaMRIPlots.plot_image","page":"API Documentation","title":"KomaMRIPlots.plot_image","text":"p = plot_image(image; height, width, zmin, zmax, darkmode, title)\n\nPlots an image matrix.\n\nArguments\n\nimage: (::Matrix{Float64}) image matrix\n\nKeywords\n\nheight: (::Int64, =750) height of the plot\nwidth: (::Int64, =nothing) width of the plot\nzmin: (::Float64, =minimum(abs.(image[:]))) reference value for minimum color\nzmax: (::Float64, =maximum(abs.(image[:]))) reference value for maximum color\ndarkmode: (::Bool, =false) boolean to define colors for darkmode\ntitle: (::String, =\"\") title of the plot\n\nReturns\n\np: (::PlotlyJS.SyncPlot) plot of the image matrix\n\n\n\n\n\n","category":"function"},{"location":"api/#UI","page":"API Documentation","title":"UI","text":"","category":"section"},{"location":"api/","page":"API Documentation","title":"API Documentation","text":"CurrentModule = KomaMRI","category":"page"},{"location":"api/#KomaUI","page":"API Documentation","title":"KomaUI","text":"","category":"section"},{"location":"api/","page":"API Documentation","title":"API Documentation","text":"KomaUI","category":"page"},{"location":"api/#KomaMRI.KomaUI","page":"API Documentation","title":"KomaMRI.KomaUI","text":"out = KomaUI(; kwargs...)\n\nLaunch the Koma's UI.\n\nKeywords\n\ndarkmode: (::Bool, =true) define dark mode style for the UI\nframe: (::Bool, =true) display the upper frame of the Blink window\nphantom_mode: (::String, =\"2D\", opts=[\"2D\", \"3D\"]) load the default phantom as a 2D or 3D brain example\nsim: (::Dict{String,Any}, =Dict{String,Any}()) simulation parameters dictionary\nrec: (::Dict{Symbol,Any}, =Dict{Symbol,Any}()) reconstruction parameters dictionary\nreturn_window: (::Bool, =false) make the out be either 'nothing' or the Blink window, depending on whether the return_window keyword argument is set to true\nshow_window: (::Bool, =true) display the Blink window\n\nReturns\n\nout: (::Nothing or ::Blink.AtomShell.Window) returns either 'nothing' or the Blink window, depending on whether the return_window keyword argument is set to true.\n\nExamples\n\njulia> KomaUI()\n\n\n\n\n\n","category":"function"},{"location":"events/#Event-Definitions","page":"Events Definition","title":"Event Definitions","text":"","category":"section"},{"location":"events/","page":"Events Definition","title":"Events Definition","text":"We refer to RF, Grad, and ADC as \"events\". This section covers the details of how events are defined and manipulated within a Sequence struct.","category":"page"},{"location":"events/#Sequence-Events","page":"Events Definition","title":"Sequence Events","text":"","category":"section"},{"location":"events/","page":"Events Definition","title":"Events Definition","text":"As we already know, a Sequence struct contains field names that store arrays of RF, Grad and ADC structs. To create a Sequence, it's essential to understand how to create these fundamental events.","category":"page"},{"location":"events/","page":"Events Definition","title":"Events Definition","text":"In the following subsections, we will provide detailed explanations of event parameters and how to create a Sequence using RF, Grad and ADC events.","category":"page"},{"location":"events/#RF","page":"Events Definition","title":"RF","text":"","category":"section"},{"location":"events/","page":"Events Definition","title":"Events Definition","text":"The RF struct is defined in the source code of KomaMRI as follows:","category":"page"},{"location":"events/","page":"Events Definition","title":"Events Definition","text":"mutable struct RF\n A\n T\n Δf\n delay::Real\nend","category":"page"},{"location":"events/","page":"Events Definition","title":"Events Definition","text":"As you can see, it has 4 field names: ''A'' defines amplitude, ''T'' defines duration time, ''delay'' is the distance between the 0 time and the first waveform sample and ''Δf'' is the displacement respect to the main field carrier frequency (this is for advanced users).","category":"page"},{"location":"events/","page":"Events Definition","title":"Events Definition","text":"''A'' and ''T'' can be numbers or vectors of numbers. Depending on the length of the ''A'' and ''T'', KomaMRI interprets different waveforms: ","category":"page"},{"location":"events/","page":"Events Definition","title":"Events Definition","text":"Pulse Waveform: A and T are numbers\nUniformly-Sampled Waveform: A is a vector and T is a number\nTime-Shaped Waveform: A and T are both vectors with the same length (zero-order-hold)","category":"page"},{"location":"events/","page":"Events Definition","title":"Events Definition","text":"In the image below, we provide a summary of how you can define RF events:","category":"page"},{"location":"events/","page":"Events Definition","title":"Events Definition","text":"

    ","category":"page"},{"location":"events/","page":"Events Definition","title":"Events Definition","text":"warning: Warning\nIn future versions of KomaMRI, the RF interpolation will change to use linear interpolation between two consecutive samples, similar to what is currently done with the Grad struct.","category":"page"},{"location":"events/","page":"Events Definition","title":"Events Definition","text":"Let's look at some basic examples of creating these RF structs and including them in a Sequence struct. The examples should be self-explanatory.","category":"page"},{"location":"events/#RF-Pulse-Waveform","page":"Events Definition","title":"RF Pulse Waveform","text":"","category":"section"},{"location":"events/","page":"Events Definition","title":"Events Definition","text":"julia> A, T, delay = 10e-3, 0.5e-3, 0.1e-3;\n\njulia> rf = RF(A, T, 0, delay)\n←0.1 ms→ RF(10000.0 uT, 0.5 ms, 0.0 Hz)\n\njulia> seq = Sequence(); seq += rf; seq = seq[2:end]\nSequence[ τ = 0.6 ms | blocks: 1 | ADC: 0 | GR: 0 | RF: 1 | DEF: 0 ]\n\njulia> plot_seq(seq)","category":"page"},{"location":"events/","page":"Events Definition","title":"Events Definition","text":"","category":"page"},{"location":"events/#RF-Uniformly-Sampled-Waveform","page":"Events Definition","title":"RF Uniformly-Sampled Waveform","text":"","category":"section"},{"location":"events/","page":"Events Definition","title":"Events Definition","text":"julia> tl = -3:0.2:-0.2; tr = 0.2:0.2:3;\n\njulia> A = (10e-3)*[sin.(π*tl)./(π*tl); 1; sin.(π*tr)./(π*tr)];\n\njulia> T, delay = 0.5e-3, 0.1e-3;\n\njulia> rf = RF(A, T, 0, delay)\n←0.1 ms→ RF(∿ uT, 0.5 ms, 0.0 Hz)\n\njulia> seq = Sequence(); seq += rf; seq = seq[2:end]\nSequence[ τ = 0.6 ms | blocks: 1 | ADC: 0 | GR: 0 | RF: 1 | DEF: 0 ]\n\njulia> plot_seq(seq)","category":"page"},{"location":"events/","page":"Events Definition","title":"Events Definition","text":"","category":"page"},{"location":"events/#RF-Time-Shaped-Waveform","page":"Events Definition","title":"RF Time-Shaped Waveform","text":"","category":"section"},{"location":"events/","page":"Events Definition","title":"Events Definition","text":"julia> tl = -4:0.2:-0.2; tr = 0.2:0.2:4\n\njulia> A = (10e-3)*[sin.(π*tl)./(π*tl); 1; sin.(π*tr)./(π*tr)]\n\njulia> T = [0.05e-3*ones(length(tl)); 2e-3; 0.05e-3*ones(length(tl))]\n\njulia> delay = 0.1e-3;\n\njulia> rf = RF(A, T, 0, delay)\n←0.1 ms→ RF(∿ uT, 4.0 ms, 0.0 Hz)\n\njulia> seq = Sequence(); seq += rf; seq = seq[2:end]\nSequence[ τ = 4.1 ms | blocks: 1 | ADC: 0 | GR: 0 | RF: 1 | DEF: 0 ]\n\njulia> plot_seq(seq)","category":"page"},{"location":"events/","page":"Events Definition","title":"Events Definition","text":"","category":"page"},{"location":"events/#Gradient","page":"Events Definition","title":"Gradient","text":"","category":"section"},{"location":"events/","page":"Events Definition","title":"Events Definition","text":"The Grad struct is defined as follows in the source code of KomaMRI:","category":"page"},{"location":"events/","page":"Events Definition","title":"Events Definition","text":"mutable struct Grad\n A\n T\n rise::Real\n fall::Real\n delay::Real\nend","category":"page"},{"location":"events/","page":"Events Definition","title":"Events Definition","text":"As you can see, it has 5 field names: ''A'' defines amplitude, ''T'' defines duration time, ''delay'' is the distance between the 0 time and the first waveform sample, ''rise'' and ''fall'' are the time durations of the first and last gradient ramps.","category":"page"},{"location":"events/","page":"Events Definition","title":"Events Definition","text":"Just like the RF, ''A'' and ''T'' in the Grad struct can be numbers or vectors of numbers. Depending on the length of the ''A'' and ''T'', KomaMRI interprets different waveforms: ","category":"page"},{"location":"events/","page":"Events Definition","title":"Events Definition","text":"Trapezoidal Waveform: A and T are numbers\nUniformly-Sampled Waveform: A is a vector and T is a number\nTime-Shaped Waveform: A and T are both vectors, A has one sample more the T (linear interpolation)","category":"page"},{"location":"events/","page":"Events Definition","title":"Events Definition","text":"In the image below, we provide a summary of how you can define Grad events:","category":"page"},{"location":"events/","page":"Events Definition","title":"Events Definition","text":"

    ","category":"page"},{"location":"events/","page":"Events Definition","title":"Events Definition","text":"Let's look at some basic examples of creating these Grad structs and including them in a Sequence struct, focusing on the ''x'' component of the gradients. The examples should be self-explanatory.","category":"page"},{"location":"events/#Gradient-Trapezoidal-Waveform","page":"Events Definition","title":"Gradient Trapezoidal Waveform","text":"","category":"section"},{"location":"events/","page":"Events Definition","title":"Events Definition","text":"julia> A, T, delay, rise, fall = 50*10e-6, 5e-3, 2e-3, 1e-3, 1e-3;\n\njulia> gr = Grad(A, T, rise, fall, delay)\n←2.0 ms→ Grad(0.5 mT, 0.5 ms, ↑1.0 ms, ↓1.0 ms)\n\njulia> seq = Sequence([gr])\nSequence[ τ = 9.0 ms | blocks: 1 | ADC: 0 | GR: 1 | RF: 0 | DEF: 0 ]\n\njulia> plot_seq(seq)","category":"page"},{"location":"events/","page":"Events Definition","title":"Events Definition","text":"","category":"page"},{"location":"events/#Gradient-Uniformly-Sampled-Waveform","page":"Events Definition","title":"Gradient Uniformly-Sampled Waveform","text":"","category":"section"},{"location":"events/","page":"Events Definition","title":"Events Definition","text":"julia> t = 0:0.25:7.5\n\njulia> A = 10*10e-6 * sqrt.(π*t) .* sin.(π*t)\n\njulia> T = 10e-3;\n\njulia> delay, rise, fall = 1e-3, 0, 1e-3;\n\njulia> gr = Grad(A, T, rise, fall, delay)\n←1.0 ms→ Grad(∿ mT, 10.0 ms, ↑0.0 ms, ↓1.0 ms)\n\njulia> seq = Sequence([gr])\nSequence[ τ = 12.0 ms | blocks: 1 | ADC: 0 | GR: 1 | RF: 0 | DEF: 0 ]\n\njulia> plot_seq(seq)","category":"page"},{"location":"events/","page":"Events Definition","title":"Events Definition","text":"","category":"page"},{"location":"events/#Gradient-Time-Shaped-Waveform","page":"Events Definition","title":"Gradient Time-Shaped Waveform","text":"","category":"section"},{"location":"events/","page":"Events Definition","title":"Events Definition","text":"julia> A = 50*10e-6*[1; 1; 0.8; 0.8; 1; 1];\n\njulia> T = 1e-3*[5; 0.2; 5; 0.2; 5];\n\njulia> delay, rise, fall = 1e-3, 1e-3, 1e-3;\n\njulia> gr = Grad(A, T, rise, fall, delay)\n←1.0 ms→ Grad(∿ mT, 15.4 ms, ↑1.0 ms, ↓1.0 ms)\n\njulia> seq = Sequence([gr])\nSequence[ τ = 10.75 ms | blocks: 1 | ADC: 0 | GR: 1 | RF: 0 | DEF: 0 ]\n\njulia> plot_seq(seq)","category":"page"},{"location":"events/","page":"Events Definition","title":"Events Definition","text":"","category":"page"},{"location":"events/#ADC","page":"Events Definition","title":"ADC","text":"","category":"section"},{"location":"events/","page":"Events Definition","title":"Events Definition","text":"The ADC struct is defined in the KomaMRI source code as follows:","category":"page"},{"location":"events/","page":"Events Definition","title":"Events Definition","text":"mutable struct ADC\n N::Integer\n T::Real\n delay::Real\n Δf::Real\n ϕ::Real\nend","category":"page"},{"location":"events/","page":"Events Definition","title":"Events Definition","text":"As you can see, it has 5 field names: ''N'' defines number of samples, ''T'' defines total acquisition duration, ''delay'' is the distance between the 0 time and the first sampled signal, ''Δf'' and ''ϕ' are factor to correct signal acquisition (for advanced users).","category":"page"},{"location":"events/","page":"Events Definition","title":"Events Definition","text":"In the image below you can see how to define an ADC event:","category":"page"},{"location":"events/","page":"Events Definition","title":"Events Definition","text":"

    ","category":"page"},{"location":"events/","page":"Events Definition","title":"Events Definition","text":"Let's look at a basic example of defining an ADC struct and including it in a Sequence struct:","category":"page"},{"location":"events/","page":"Events Definition","title":"Events Definition","text":"julia> N, T, delay = 16, 5e-3, 1e-3;\n\njulia> adc = ADC(N, T, delay)\nADC(16, 0.005, 0.001, 0.0, 0.0)\n\njulia> seq = Sequence(); seq += adc; seq = seq[2:end]\nSequence[ τ = 6.0 ms | blocks: 1 | ADC: 1 | GR: 0 | RF: 0 | DEF: 0 ]\n\njulia> plot_seq(seq)","category":"page"},{"location":"events/","page":"Events Definition","title":"Events Definition","text":"","category":"page"},{"location":"events/#Combination-of-Events","page":"Events Definition","title":"Combination of Events","text":"","category":"section"},{"location":"events/","page":"Events Definition","title":"Events Definition","text":"We can include multiple events within a single block of a sequence. The example below demonstrates how to combine an RF struct, three Grad structs for the x-y-z components, and an ADC struct in a single block of a sequence:","category":"page"},{"location":"events/","page":"Events Definition","title":"Events Definition","text":"# Define an RF struct\nA, T = 1e-6*[0; -0.1; 0.2; -0.5; 1; -0.5; 0.2; -0.1; 0], 0.5e-3;\nrf = RF(A, T)\n\n# Define a Grad struct for Gx\nA, T, rise = 50*10e-6, 5e-3, 1e-3\ngx = Grad(A, T, rise)\n\n# Define a Grad struct for Gy\nA = 50*10e-6*[0; 0.5; 0.9; 1; 0.9; 0.5; 0; -0.5; -0.9; -1]\nT, rise = 5e-3, 2e-3;\ngy = Grad(A, T, rise)\n\n# Define a Grad struct for Gz\nA = 50*10e-6*[0; 0.5; 0.9; 1; 0.9; 0.5; 0; -0.5; -0.9; -1]\nT = 5e-3*[0.0; 0.1; 0.3; 0.2; 0.1; 0.2; 0.3; 0.2; 0.1]\ngz = Grad(A, T)\n\n# Define an ADC struct\nN, T, delay = 16, 5e-3, 1e-3\nadc = ADC(N, T, delay)","category":"page"},{"location":"events/","page":"Events Definition","title":"Events Definition","text":"julia> seq = Sequence([gx; gy; gz;;], [rf;;], [adc])\nSequence[ τ = 9.0 ms | blocks: 1 | ADC: 1 | GR: 3 | RF: 1 | DEF: 0 ]\n\njulia> plot_seq(seq)","category":"page"},{"location":"events/","page":"Events Definition","title":"Events Definition","text":"","category":"page"},{"location":"events/","page":"Events Definition","title":"Events Definition","text":"Once the struct events are defined, it's important to note that to create a single block sequence, you need to provide 2D matrices of Grad and RF structs, as well as a vector of ADC structs as arguments in the Sequence constructor.","category":"page"},{"location":"ui-details/#User-Interface","page":"Simulation with User Interface","title":"User Interface","text":"","category":"section"},{"location":"ui-details/","page":"Simulation with User Interface","title":"Simulation with User Interface","text":"This section explains how to use the user interface of the KomaMRI package and the internal processes during interaction.","category":"page"},{"location":"ui-details/#Basic-Workflow","page":"Simulation with User Interface","title":"Basic Workflow","text":"","category":"section"},{"location":"ui-details/","page":"Simulation with User Interface","title":"Simulation with User Interface","text":"(You can also go to analog steps using Scripts)","category":"page"},{"location":"ui-details/","page":"Simulation with User Interface","title":"Simulation with User Interface","text":"As a general overview, remember the following workflow steps when using KomaMRI:","category":"page"},{"location":"ui-details/","page":"Simulation with User Interface","title":"Simulation with User Interface","text":"Loading Simulation Inputs: Scanner, Phantom, Sequence\nRunning Simulation\nReconstructing Image using MRIReco","category":"page"},{"location":"ui-details/","page":"Simulation with User Interface","title":"Simulation with User Interface","text":"In the following subsections, we will cover all the mentioned steps. First, open the Julia REPL and enter the following commands to include the KomaMRI package and launch the user interface:","category":"page"},{"location":"ui-details/","page":"Simulation with User Interface","title":"Simulation with User Interface","text":"julia> using KomaMRI\n\njulia> KomaUI()","category":"page"},{"location":"ui-details/","page":"Simulation with User Interface","title":"Simulation with User Interface","text":"

    ","category":"page"},{"location":"ui-details/#Loading-Simulation-Inputs","page":"Simulation with User Interface","title":"Loading Simulation Inputs","text":"","category":"section"},{"location":"ui-details/","page":"Simulation with User Interface","title":"Simulation with User Interface","text":"(You can also go to analog steps using Scripts)","category":"page"},{"location":"ui-details/","page":"Simulation with User Interface","title":"Simulation with User Interface","text":"The user interface has preloaded certain inputs into RAM, including the Scanner, Phantom, and Sequence structs. In the following subsections, we will demonstrate how to visualize these inputs.","category":"page"},{"location":"ui-details/#Scanner","page":"Simulation with User Interface","title":"Scanner","text":"","category":"section"},{"location":"ui-details/","page":"Simulation with User Interface","title":"Simulation with User Interface","text":"You can visualize the preloaded Scanner struct by clicking on the Scanner dropdown and then pressing the View Scanner button. The Scanner struct contains hardware-related information, such as the main magnetic field's magnitude:","category":"page"},{"location":"ui-details/","page":"Simulation with User Interface","title":"Simulation with User Interface","text":"

    ","category":"page"},{"location":"ui-details/#Phantom","page":"Simulation with User Interface","title":"Phantom","text":"","category":"section"},{"location":"ui-details/","page":"Simulation with User Interface","title":"Simulation with User Interface","text":"To see the phantom already stored in RAM, simply click on the Phantom dropdown an then press the View Phantom button. The preloaded phantom is a slice of a brain:","category":"page"},{"location":"ui-details/","page":"Simulation with User Interface","title":"Simulation with User Interface","text":"

    ","category":"page"},{"location":"ui-details/","page":"Simulation with User Interface","title":"Simulation with User Interface","text":"It is also possible to load .h5 phantom files. The KomaMRI.jl has some examples stored at ~/.julia/packages/KomaMRI//examples/2.phantoms/. For instance, let's load the sphere_chemical_shift.h5 file:","category":"page"},{"location":"ui-details/","page":"Simulation with User Interface","title":"Simulation with User Interface","text":"

    ","category":"page"},{"location":"ui-details/","page":"Simulation with User Interface","title":"Simulation with User Interface","text":"Note that you can select different spin parameters to visualize like ρ, T1, T2, among others. ","category":"page"},{"location":"ui-details/#Sequence","page":"Simulation with User Interface","title":"Sequence","text":"","category":"section"},{"location":"ui-details/","page":"Simulation with User Interface","title":"Simulation with User Interface","text":"There are two options to visualize the sequence already preloaded in RAM: in the time domain or in the k-space. The preloaded sequence is a single-shot EPI.","category":"page"},{"location":"ui-details/","page":"Simulation with User Interface","title":"Simulation with User Interface","text":"For visualization of the sequence in the time domain, click on the Sequence dropdown and then press the Sequence (MPS) button:","category":"page"},{"location":"ui-details/","page":"Simulation with User Interface","title":"Simulation with User Interface","text":"

    ","category":"page"},{"location":"ui-details/","page":"Simulation with User Interface","title":"Simulation with User Interface","text":"For visualization of the sequence in the k-space, click on the Sequence dropdown and then press the k-space button:","category":"page"},{"location":"ui-details/","page":"Simulation with User Interface","title":"Simulation with User Interface","text":"

    ","category":"page"},{"location":"ui-details/","page":"Simulation with User Interface","title":"Simulation with User Interface","text":"You can also display the Moments related to the Sequence by pressing the View Moments and then pressing the buttons for zero, first and second moments.","category":"page"},{"location":"ui-details/","page":"Simulation with User Interface","title":"Simulation with User Interface","text":"It is also possible to load Pulseq compatible .seq sequence files. The KomaMRI has some examples stored at ~/.julia/packages/KomaMRI//examples/1.sequences/. For instance, let's load the spiral.seq file and view it the time domain and k-space:","category":"page"},{"location":"ui-details/","page":"Simulation with User Interface","title":"Simulation with User Interface","text":"

    ","category":"page"},{"location":"ui-details/","page":"Simulation with User Interface","title":"Simulation with User Interface","text":"

    ","category":"page"},{"location":"ui-details/#Running-Simulation","page":"Simulation with User Interface","title":"Running Simulation","text":"","category":"section"},{"location":"ui-details/","page":"Simulation with User Interface","title":"Simulation with User Interface","text":"(You can also go to analog steps using Scripts)","category":"page"},{"location":"ui-details/","page":"Simulation with User Interface","title":"Simulation with User Interface","text":"Once the inputs are loaded in RAM, it is possible to perform the simulation to get the Raw Signal.","category":"page"},{"location":"ui-details/#Simulation-Parameters","page":"Simulation with User Interface","title":"Simulation Parameters","text":"","category":"section"},{"location":"ui-details/","page":"Simulation with User Interface","title":"Simulation with User Interface","text":"To visualize the default simulation parameters, click on the Simulate! dropdown and then press the View Options button:","category":"page"},{"location":"ui-details/","page":"Simulation with User Interface","title":"Simulation with User Interface","text":"

    ","category":"page"},{"location":"ui-details/#Visualization-of-the-Raw-Signal","page":"Simulation with User Interface","title":"Visualization of the Raw Signal","text":"","category":"section"},{"location":"ui-details/","page":"Simulation with User Interface","title":"Simulation with User Interface","text":"Press the Simulate! button to perform the simulation (this may take a while). Automatically the generated Raw Signal should be displayed or you can click on the Raw Data dropdown and then press the View Raw Data button:","category":"page"},{"location":"ui-details/","page":"Simulation with User Interface","title":"Simulation with User Interface","text":"

    ","category":"page"},{"location":"ui-details/#Reconstructing-Image-using-MRIReco","page":"Simulation with User Interface","title":"Reconstructing Image using MRIReco","text":"","category":"section"},{"location":"ui-details/","page":"Simulation with User Interface","title":"Simulation with User Interface","text":"(You can also go to analog steps using Scripts)","category":"page"},{"location":"ui-details/","page":"Simulation with User Interface","title":"Simulation with User Interface","text":"Once the Raw Signal is loaded in RAM, it is possible to reconstruct the image.","category":"page"},{"location":"ui-details/#Reconstruction-Parameters","page":"Simulation with User Interface","title":"Reconstruction Parameters","text":"","category":"section"},{"location":"ui-details/","page":"Simulation with User Interface","title":"Simulation with User Interface","text":"To visualize the default reconstruction parameters, click on the Reconstruct! dropdown and then press the View Options button:","category":"page"},{"location":"ui-details/","page":"Simulation with User Interface","title":"Simulation with User Interface","text":"

    ","category":"page"},{"location":"ui-details/#Visualization-of-the-Image","page":"Simulation with User Interface","title":"Visualization of the Image","text":"","category":"section"},{"location":"ui-details/","page":"Simulation with User Interface","title":"Simulation with User Interface","text":"Press the Reconstruct! button to perform the reconstruction (this may take a while). Automatically the generated Image should be displayed or you can click on the he Reconstruct! dropdown and then press the |Image| button:","category":"page"},{"location":"ui-details/","page":"Simulation with User Interface","title":"Simulation with User Interface","text":"

    ","category":"page"},{"location":"ui-details/#Exporting-Results-to-.mat-File","page":"Simulation with User Interface","title":"Exporting Results to .mat File","text":"","category":"section"},{"location":"ui-details/","page":"Simulation with User Interface","title":"Simulation with User Interface","text":"(You can also go to analog steps using Scripts)","category":"page"},{"location":"ui-details/","page":"Simulation with User Interface","title":"Simulation with User Interface","text":"The user interface has the option to save the results in .mat format. Simply click on the Export to .mat and you have the alternatives to get data independently or you can press the All button to have all the results given by the simulator:","category":"page"},{"location":"ui-details/","page":"Simulation with User Interface","title":"Simulation with User Interface","text":"

    ","category":"page"},{"location":"ui-details/","page":"Simulation with User Interface","title":"Simulation with User Interface","text":"So far, and due to limitations of the user interface dependencies, the .mat files are saved in the temporal directory of your computer OS, which can be found by typing the tempdir() command in the Julia REPL.","category":"page"},{"location":"programming-workflow/#Julia-Scripts","page":"Simulation with Scripts","title":"Julia Scripts","text":"","category":"section"},{"location":"programming-workflow/","page":"Simulation with Scripts","title":"Simulation with Scripts","text":"You should already be familiar with the Graphical User Interface of KomaMRI. However, you can also use this package directly from the Julia REPL or write your own Julia scripts. This allows you to unlock the full potential of KomaMRI, enabling you to utilize more of its functionalities and even test your own MRI ideas.","category":"page"},{"location":"programming-workflow/","page":"Simulation with Scripts","title":"Simulation with Scripts","text":"This section demonstrates a basic workflow with KomaMRI through writing your own scripts or entering commands directly into the Julia REPL. Let's begin.","category":"page"},{"location":"programming-workflow/#Basic-Workflow","page":"Simulation with Scripts","title":"Basic Workflow","text":"","category":"section"},{"location":"programming-workflow/","page":"Simulation with Scripts","title":"Simulation with Scripts","text":"(You can also go to analog steps using UI)","category":"page"},{"location":"programming-workflow/","page":"Simulation with Scripts","title":"Simulation with Scripts","text":"As a general overview, remember the following workflow steps when using KomaMRI:","category":"page"},{"location":"programming-workflow/","page":"Simulation with Scripts","title":"Simulation with Scripts","text":"Loading Simulation Inputs: Scanner, Phantom, Sequence\nRunning Simulation\nReconstructing Image using MRIReco","category":"page"},{"location":"programming-workflow/","page":"Simulation with Scripts","title":"Simulation with Scripts","text":"Let's replicate these previous steps in a Julia script. You will obtain the following code, which you can copy and paste into the Julia REPL:","category":"page"},{"location":"programming-workflow/","page":"Simulation with Scripts","title":"Simulation with Scripts","text":"# Import the package\nusing KomaMRI\n\n# Define scanner, object and sequence\nsys = Scanner()\nobj = brain_phantom2D()\nseq = PulseDesigner.EPI_example()\n\n# Define simulation parameters and perform simulation\nsim_params = KomaMRICore.default_sim_params() \nraw = simulate(obj, seq, sys; sim_params)\n\n# Auxiliary function for reconstruction\nfunction reconstruct_2d_image(raw::RawAcquisitionData)\n acqData = AcquisitionData(raw)\n acqData.traj[1].circular = false #Removing circular window\n C = maximum(2*abs.(acqData.traj[1].nodes[:])) #Normalize k-space to -.5 to .5 for NUFFT\n acqData.traj[1].nodes = acqData.traj[1].nodes[1:2,:] ./ C\n Nx, Ny = raw.params[\"reconSize\"][1:2]\n recParams = Dict{Symbol,Any}()\n recParams[:reconSize] = (Nx, Ny)\n recParams[:densityWeighting] = true\n rec = reconstruction(acqData, recParams)\n image3d = reshape(rec.data, Nx, Ny, :)\n image2d = (abs.(image3d) * prod(size(image3d)[1:2]))[:,:,1]\n return image2d\nend\n\n# Perform reconstruction to get the image\nimage = reconstruct_2d_image(raw)","category":"page"},{"location":"programming-workflow/","page":"Simulation with Scripts","title":"Simulation with Scripts","text":"Let's go through this script step by step.","category":"page"},{"location":"programming-workflow/#Loading-Simulation-Inputs","page":"Simulation with Scripts","title":"Loading Simulation Inputs","text":"","category":"section"},{"location":"programming-workflow/","page":"Simulation with Scripts","title":"Simulation with Scripts","text":"(You can also go to analog steps using UI)","category":"page"},{"location":"programming-workflow/","page":"Simulation with Scripts","title":"Simulation with Scripts","text":"The inputs of the simulation are created in the following part of the script: ","category":"page"},{"location":"programming-workflow/","page":"Simulation with Scripts","title":"Simulation with Scripts","text":"# Define scanner, object and sequence\nsys = Scanner()\nobj = brain_phantom2D()\nseq = PulseDesigner.EPI_example()","category":"page"},{"location":"programming-workflow/#Scanner","page":"Simulation with Scripts","title":"Scanner","text":"","category":"section"},{"location":"programming-workflow/","page":"Simulation with Scripts","title":"Simulation with Scripts","text":"The previously created Scanner struct contains default parameters. In your initial simulations, you will likely use this default struct without making any modifications. You can view all the parameters by displaying the struct variable in the Julia REPL. The Scanner's parameters include hardware limitations such as the main magnetic field, maximum gradient values, minimum raster times, and more. You may want to adjust these values for your future custom simulations.","category":"page"},{"location":"programming-workflow/","page":"Simulation with Scripts","title":"Simulation with Scripts","text":"julia> sys\nScanner\n B0: Float64 1.5\n B1: Float64 1.0e-5\n Gmax: Float64 0.06\n Smax: Int64 500\n ADC_Δt: Float64 2.0e-6\n seq_Δt: Float64 1.0e-5\n GR_Δt: Float64 1.0e-5\n RF_Δt: Float64 1.0e-6\n RF_ring_down_T: Float64 2.0e-5\n RF_dead_time_T: Float64 0.0001\n ADC_dead_time_T: Float64 1.0e-5","category":"page"},{"location":"programming-workflow/#Phantom","page":"Simulation with Scripts","title":"Phantom","text":"","category":"section"},{"location":"programming-workflow/","page":"Simulation with Scripts","title":"Simulation with Scripts","text":"The Phantom struct created in this example represents a slice of a brain. To create it, we use the function brain_phantom2D, which is part of the subdependency KomaMRICore. While KomaMRI provides some phantom examples for experimentation, you may also want to create your custom Phantom struct tailored to your specific requirements.","category":"page"},{"location":"programming-workflow/","page":"Simulation with Scripts","title":"Simulation with Scripts","text":"The Phantom struct contains MRI parameters related to the magnetization properties of an object. These parameters include magnetization positions, proton density, relaxation times, off-resonance, among others. To view all the keys and values of the object, you can do so in the Julia REPL as follows:","category":"page"},{"location":"programming-workflow/","page":"Simulation with Scripts","title":"Simulation with Scripts","text":"julia> obj\nPhantom{Float64}\n name: String \"brain2D_axial\"\n x: Array{Float64}((6506,)) [-0.084, -0.084, … 0.086, 0.086]\n y: Array{Float64}((6506,)) [-0.03, -0.028, … 0.0, 0.002]\n z: Array{Float64}((6506,)) [-0.0, -0.0, … 0.0, 0.0]\n ρ: Array{Float64}((6506,)) [0.7, 0.7, … 0.7, 0.7]\n T1: Array{Float64}((6506,)) [0.569, 0.569, … 0.569, 0.569]\n T2: Array{Float64}((6506,)) [0.329, 0.329, … 0.329, 0.329]\n T2s: Array{Float64}((6506,)) [0.058, 0.058, … 0.058, 0.058]\n Δw: Array{Float64}((6506,)) [-0.0, -0.0, … -0.0, -0.0]\n Dλ1: Array{Float64}((6506,)) [0.0, 0.0, … 0.0, 0.0]\n Dλ2: Array{Float64}((6506,)) [0.0, 0.0, … 0.0, 0.0]\n Dθ: Array{Float64}((6506,)) [0.0, 0.0, … 0.0, 0.0]\n...","category":"page"},{"location":"programming-workflow/","page":"Simulation with Scripts","title":"Simulation with Scripts","text":"As you can see, attributes of the Phantom struct are vectors representing object properties, with each element holding a value associated with a single magnetization.","category":"page"},{"location":"programming-workflow/","page":"Simulation with Scripts","title":"Simulation with Scripts","text":"You can also visualize the Phantom struct using the plot_phantom_map function, which is part of the KomaMRIPlots subdependency. This function plots the magnitude of a property for each magnetization at a specific spatial position. You can observe properties such as proton density and relaxation times, so feel free to replace the :ρ symbol with another property of the phantom in the example below:","category":"page"},{"location":"programming-workflow/","page":"Simulation with Scripts","title":"Simulation with Scripts","text":"julia> plot_phantom_map(obj, :ρ)","category":"page"},{"location":"programming-workflow/","page":"Simulation with Scripts","title":"Simulation with Scripts","text":"","category":"page"},{"location":"programming-workflow/","page":"Simulation with Scripts","title":"Simulation with Scripts","text":"To utilize test phantoms included with KomaMRI, navigate to the \"examples\" folder and use the read_phantom_jemris function to read a phantom in .h5 format. The following steps outline how to do this in Julia:","category":"page"},{"location":"programming-workflow/","page":"Simulation with Scripts","title":"Simulation with Scripts","text":"julia> path_koma = dirname(dirname(pathof(KomaMRI)))\njulia> path_sphere = joinpath(path_koma, \"examples\", \"2.phantoms\", \"sphere_chemical_shift.h5\")\njulia> sphere = read_phantom_jemris(path_sphere)\njulia> plot_phantom_map(sphere, :T2)","category":"page"},{"location":"programming-workflow/","page":"Simulation with Scripts","title":"Simulation with Scripts","text":"","category":"page"},{"location":"programming-workflow/#Sequence","page":"Simulation with Scripts","title":"Sequence","text":"","category":"section"},{"location":"programming-workflow/","page":"Simulation with Scripts","title":"Simulation with Scripts","text":"The Sequence struct in the example represents one of the most basic MRI sequences. It excites the object with a 90° RF pulse and then uses EPI gradients to fill the k-space in a \"square\" manner. While you may want to create your sequences for experiments, you can always use some of the examples already available in KomaMRI.","category":"page"},{"location":"programming-workflow/","page":"Simulation with Scripts","title":"Simulation with Scripts","text":"In MRI, the sequence must be carefully designed with precise timing to obtain an image. It includes subcomponents such as gradients, radio-frequency excitation signals, and sample acquisition. For more information on constructing a Sequence struct, refer to the Sequence section.","category":"page"},{"location":"programming-workflow/","page":"Simulation with Scripts","title":"Simulation with Scripts","text":"You can view general information about a Sequence struct by displaying it in the Julia REPL:","category":"page"},{"location":"programming-workflow/","page":"Simulation with Scripts","title":"Simulation with Scripts","text":"julia> seq\nSequence[ τ = 62.846 ms | blocks: 204 | ADC: 101 | GR: 205 | RF: 1 | DEF: 5 ]","category":"page"},{"location":"programming-workflow/","page":"Simulation with Scripts","title":"Simulation with Scripts","text":"For more precise timing checks, you can use the plot_seq function:","category":"page"},{"location":"programming-workflow/","page":"Simulation with Scripts","title":"Simulation with Scripts","text":"julia> plot_seq(seq; range=[0 30])","category":"page"},{"location":"programming-workflow/","page":"Simulation with Scripts","title":"Simulation with Scripts","text":"","category":"page"},{"location":"programming-workflow/","page":"Simulation with Scripts","title":"Simulation with Scripts","text":"It is important to consider how the sequence traverses through k-space. The get_kspace function does precisely that:","category":"page"},{"location":"programming-workflow/","page":"Simulation with Scripts","title":"Simulation with Scripts","text":"julia> plot_kspace(seq)","category":"page"},{"location":"programming-workflow/","page":"Simulation with Scripts","title":"Simulation with Scripts","text":"","category":"page"},{"location":"programming-workflow/","page":"Simulation with Scripts","title":"Simulation with Scripts","text":"Additionally, there are helpful sequence construction functions within a submodule of KomaMRI called PulseDesigner. These functions include RF_hard, RF_sinc, EPI, radial_base and spiral_base. For more details on how to use them, refer to the API documentation.","category":"page"},{"location":"programming-workflow/","page":"Simulation with Scripts","title":"Simulation with Scripts","text":"KomaMRI is also compatible with Pulseq. The package installation includes some .seq files in Pulseq format, which can be read and used as a Sequence struct. Here's how to read a spiral Pulseq file stored in the \"examples\" folder of KomaMRI:","category":"page"},{"location":"programming-workflow/","page":"Simulation with Scripts","title":"Simulation with Scripts","text":"julia> path_koma = dirname(dirname(pathof(KomaMRI)))\njulia> path_spiral = joinpath(path_koma, \"examples\", \"1.sequences\", \"spiral.seq\")\njulia> spiral = read_seq(path_spiral)\njulia> plot_seq(spiral)\njulia> plot_kspace(spiral)","category":"page"},{"location":"programming-workflow/","page":"Simulation with Scripts","title":"Simulation with Scripts","text":"","category":"page"},{"location":"programming-workflow/#Running-Simulation","page":"Simulation with Scripts","title":"Running Simulation","text":"","category":"section"},{"location":"programming-workflow/","page":"Simulation with Scripts","title":"Simulation with Scripts","text":"(You can also go to analog steps using UI)","category":"page"},{"location":"programming-workflow/","page":"Simulation with Scripts","title":"Simulation with Scripts","text":"The following lines in the example script configure and perform the simulation:","category":"page"},{"location":"programming-workflow/","page":"Simulation with Scripts","title":"Simulation with Scripts","text":"# Define simulation parameters and perform simulation\nsim_params = KomaMRICore.default_sim_params() \nraw = simulate(obj, seq, sys; sim_params)","category":"page"},{"location":"programming-workflow/#Simulation-Parameters","page":"Simulation with Scripts","title":"Simulation Parameters","text":"","category":"section"},{"location":"programming-workflow/","page":"Simulation with Scripts","title":"Simulation with Scripts","text":"To perform simulations, KomaMRI requires certain parameters. You can use the default parameters for testing, but you also have the option to customize specific simulation aspects. In the example, we use the default_sim_params function to create a dictionary with default simulation parameters. You can view the keys that can be modified by displaying the sim_params variable:","category":"page"},{"location":"programming-workflow/","page":"Simulation with Scripts","title":"Simulation with Scripts","text":"julia> sim_params\nDict{String, Any} with 9 entries:\n \"return_type\" => \"raw\"\n \"Nblocks\" => 20\n \"gpu\" => true\n \"Nthreads\" => 1\n \"gpu_device\" => 0\n \"sim_method\" => Bloch()\n \"precision\" => \"f32\"\n \"Δt\" => 0.001\n \"Δt_rf\" => 5.0e-5","category":"page"},{"location":"programming-workflow/","page":"Simulation with Scripts","title":"Simulation with Scripts","text":"All of these parameters deserve special attention. We will explain some of the most important ones here. For instance, \"Δt\" and \"Δt_rf\" represent the raster times for the gradients and RFs. \"return_type\" specifies the type of variable returned by the simulator (by default, it returns an object ready for use with MRIReco for reconstruction, but you can use the value \"mat\" to return a simple vector). \"gpu\" indicates whether you want to use your GPU device for simulations, and \"precision\" sets the floating-point precision. For more details on how to set these parameters, please refer to the Simulation Parameters Section.","category":"page"},{"location":"programming-workflow/#Raw-Signal","page":"Simulation with Scripts","title":"Raw Signal","text":"","category":"section"},{"location":"programming-workflow/","page":"Simulation with Scripts","title":"Simulation with Scripts","text":"The simulation is performed using the simulate function, which requires three arguments: a Scanner struct, a Phantom struct, and a Sequence struct. Optionally, you can include the keyword argument sim_params if you wish to use custom simulation parameters.","category":"page"},{"location":"programming-workflow/","page":"Simulation with Scripts","title":"Simulation with Scripts","text":"In the example, we can see that the output of the simulation is a special struct:","category":"page"},{"location":"programming-workflow/","page":"Simulation with Scripts","title":"Simulation with Scripts","text":"julia> typeof(raw)\nRawAcquisitionData\n\njulia> raw\nRawAcquisitionData[SeqName: epi | 101 Profile(s) of 101×1]","category":"page"},{"location":"programming-workflow/","page":"Simulation with Scripts","title":"Simulation with Scripts","text":"You can plot the simulation result with the plot_signal function like so:","category":"page"},{"location":"programming-workflow/","page":"Simulation with Scripts","title":"Simulation with Scripts","text":"julia> plot_signal(raw)","category":"page"},{"location":"programming-workflow/","page":"Simulation with Scripts","title":"Simulation with Scripts","text":"","category":"page"},{"location":"programming-workflow/#Reconstructing-Image-using-MRIReco","page":"Simulation with Scripts","title":"Reconstructing Image using MRIReco","text":"","category":"section"},{"location":"programming-workflow/","page":"Simulation with Scripts","title":"Simulation with Scripts","text":"(You can also go to analog steps using UI)","category":"page"},{"location":"programming-workflow/","page":"Simulation with Scripts","title":"Simulation with Scripts","text":"KomaMRI does not handle reconstruction; instead, you should utilize the MRIReco package to generate an image. For convenience, when you install KomaMRI, you also install MRIReco, allowing you to access functions from that package. You should pay special attention to the RawAcquisitionData and AcquisitionData structs, as well as the reconstruction function.","category":"page"},{"location":"programming-workflow/","page":"Simulation with Scripts","title":"Simulation with Scripts","text":"In the example below, we define an auxiliary function, reconstruct_2d_image, which takes a raw signal struct, RawAcquisitionData, as input and returns a 2D Array representing an image. Within this function, we create an AcquisitionData struct and set some reconstruction parameters, which serve as inputs for the reconstruction function. The latter function is responsible for the image generation process.","category":"page"},{"location":"programming-workflow/","page":"Simulation with Scripts","title":"Simulation with Scripts","text":"# Auxiliary function for reconstruction\nfunction reconstruct_2d_image(raw::RawAcquisitionData)\n acqData = AcquisitionData(raw)\n acqData.traj[1].circular = false #Removing circular window\n C = maximum(2*abs.(acqData.traj[1].nodes[:])) #Normalize k-space to -.5 to .5 for NUFFT\n acqData.traj[1].nodes = acqData.traj[1].nodes[1:2,:] ./ C\n Nx, Ny = raw.params[\"reconSize\"][1:2]\n recParams = Dict{Symbol,Any}()\n recParams[:reconSize] = (Nx, Ny)\n recParams[:densityWeighting] = true\n rec = reconstruction(acqData, recParams)\n image3d = reshape(rec.data, Nx, Ny, :)\n image2d = (abs.(image3d) * prod(size(image3d)[1:2]))[:,:,1]\n return image2d\nend\n\n# Perform reconstruction to get the image\nimage = reconstruct_2d_image(raw)","category":"page"},{"location":"programming-workflow/","page":"Simulation with Scripts","title":"Simulation with Scripts","text":"If you need more information about how to use the AcquisitionData and the how to fill the reconstruction parameters, you need to visit the MRIReco webpage).","category":"page"},{"location":"programming-workflow/","page":"Simulation with Scripts","title":"Simulation with Scripts","text":"To display the image, you can use the plot_image function which is part of the KomaMRIPlots subpackage:","category":"page"},{"location":"programming-workflow/","page":"Simulation with Scripts","title":"Simulation with Scripts","text":"julia> plot_image(image)","category":"page"},{"location":"programming-workflow/","page":"Simulation with Scripts","title":"Simulation with Scripts","text":"
    ","category":"page"},{"location":"programming-workflow/#Exporting-Results-to-.mat-File","page":"Simulation with Scripts","title":"Exporting Results to .mat File","text":"","category":"section"},{"location":"programming-workflow/","page":"Simulation with Scripts","title":"Simulation with Scripts","text":"(You can also go to analog steps using UI)","category":"page"},{"location":"programming-workflow/","page":"Simulation with Scripts","title":"Simulation with Scripts","text":"Many people in the MRI community uses MATLAB, probably you are one of them and you want to process the raw signal in the MATLAB environment after simulation is done with KomaMRI. Here we show you an example of how to save a .mat file with the information of the raw signal thank to the help of the MAT package:","category":"page"},{"location":"programming-workflow/","page":"Simulation with Scripts","title":"Simulation with Scripts","text":"Many people in the MRI community use MATLAB; you might be one of them and may want to process the Raw Signal in the MATLAB environment after simulation is completed with KomaMRI. Here, we provide an example of how to save a .mat file containing the Raw Signal information using the MAT package.","category":"page"},{"location":"programming-workflow/","page":"Simulation with Scripts","title":"Simulation with Scripts","text":"# Use the MAT package\nusing MAT\n\n# Perform simulation to return an Array type\nsim_params[\"return_type\"] = \"mat\"\nraw = simulate(obj, seq, sys; sim_params)\n\n# Save the .mat file in the temp directory\nmatwrite(joinpath(tempdir(), \"koma-raw.mat\"), Dict(\"raw\" => raw))","category":"page"},{"location":"programming-workflow/","page":"Simulation with Scripts","title":"Simulation with Scripts","text":"Note that we need to simulate to return an array type (not the default RawAcquisitionData), and then we utilize the matwrite function to save a file named \"koma-raw.mat\" in your computer's temporary directory. Now, you can navigate to your temporary directory (which you can find by displaying the result of tempdir() in the Julia REPL) and locate the \"koma-raw.mat\" file.","category":"page"},{"location":"generated/examples/03-ChemicalShiftEPI/","page":"Chemical Shift in an EPI sequence","title":"Chemical Shift in an EPI sequence","text":"EditURL = \"../../../../examples/literate/examples/03-ChemicalShiftEPI.jl\"","category":"page"},{"location":"generated/examples/03-ChemicalShiftEPI/#Chemical-Shift-in-an-EPI-sequence","page":"Chemical Shift in an EPI sequence","title":"Chemical Shift in an EPI sequence","text":"","category":"section"},{"location":"generated/examples/03-ChemicalShiftEPI/","page":"Chemical Shift in an EPI sequence","title":"Chemical Shift in an EPI sequence","text":"(Image: ) (Image: )","category":"page"},{"location":"generated/examples/03-ChemicalShiftEPI/","page":"Chemical Shift in an EPI sequence","title":"Chemical Shift in an EPI sequence","text":"using KomaMRI # hide\nsys = Scanner() # hide","category":"page"},{"location":"generated/examples/03-ChemicalShiftEPI/","page":"Chemical Shift in an EPI sequence","title":"Chemical Shift in an EPI sequence","text":"For a more realistic example, we will use a brain phantom.","category":"page"},{"location":"generated/examples/03-ChemicalShiftEPI/","page":"Chemical Shift in an EPI sequence","title":"Chemical Shift in an EPI sequence","text":"obj = brain_phantom2D() # a slice of a brain\np1 = plot_phantom_map(obj, :T2 ; height=400, width=400, view_2d=true)\np2 = plot_phantom_map(obj, :Δw ; height=400, width=400, view_2d=true)\nsavefig(p1, \"../../assets/examples/2-phantom1.html\") # hide\nsavefig(p2, \"../../assets/examples/2-phantom2.html\") # hide","category":"page"},{"location":"generated/examples/03-ChemicalShiftEPI/","page":"Chemical Shift in an EPI sequence","title":"Chemical Shift in an EPI sequence","text":"At the left, you can see the T_2 map of the phantom, and at the right, the off-resonance Deltaomega. In this example, the fat is the only source of off-resonance (with Delta f = -220mathrmHz) and you can see it in black in the off-resonance map.","category":"page"},{"location":"generated/examples/03-ChemicalShiftEPI/","page":"Chemical Shift in an EPI sequence","title":"Chemical Shift in an EPI sequence","text":"","category":"page"},{"location":"generated/examples/03-ChemicalShiftEPI/","page":"Chemical Shift in an EPI sequence","title":"Chemical Shift in an EPI sequence","text":"Then, we will load an EPI sequence, that is well known for being affected by off-resonance. With this sequence, we will be able visualize the effect of the chemical shift.","category":"page"},{"location":"generated/examples/03-ChemicalShiftEPI/","page":"Chemical Shift in an EPI sequence","title":"Chemical Shift in an EPI sequence","text":"seq_file = joinpath(dirname(pathof(KomaMRI)), \"../examples/3.koma_paper/comparison_accuracy/sequences/EPI/epi_100x100_TE100_FOV230.seq\")\nseq = read_seq(seq_file)\np3 = plot_seq(seq; range=[0 40], slider=true, height=300)\nsavefig(p3, \"../../assets/examples/2-seq.html\") # hide","category":"page"},{"location":"generated/examples/03-ChemicalShiftEPI/","page":"Chemical Shift in an EPI sequence","title":"Chemical Shift in an EPI sequence","text":"Feel free to explore the sequence's plot 🔍 below!","category":"page"},{"location":"generated/examples/03-ChemicalShiftEPI/","page":"Chemical Shift in an EPI sequence","title":"Chemical Shift in an EPI sequence","text":"","category":"page"},{"location":"generated/examples/03-ChemicalShiftEPI/","page":"Chemical Shift in an EPI sequence","title":"Chemical Shift in an EPI sequence","text":"If we simulate this sequence we will end up with the following signal.","category":"page"},{"location":"generated/examples/03-ChemicalShiftEPI/","page":"Chemical Shift in an EPI sequence","title":"Chemical Shift in an EPI sequence","text":"raw = simulate(obj, seq, sys)\np4 = plot_signal(raw; range=[98.4 103.4] , height=300)\nsavefig(p4, \"../../assets/examples/2-signal.html\") # hide","category":"page"},{"location":"generated/examples/03-ChemicalShiftEPI/","page":"Chemical Shift in an EPI sequence","title":"Chemical Shift in an EPI sequence","text":"","category":"page"},{"location":"generated/examples/03-ChemicalShiftEPI/","page":"Chemical Shift in an EPI sequence","title":"Chemical Shift in an EPI sequence","text":"Now, we need to inspect what effect the off-resonance had in the reconstructed image. As you can see, the fat layer is now shifted to a different position 🤯, this is why the effect is called chemical shift!","category":"page"},{"location":"generated/examples/03-ChemicalShiftEPI/","page":"Chemical Shift in an EPI sequence","title":"Chemical Shift in an EPI sequence","text":"# Get the acquisition data\nacq = AcquisitionData(raw)\nacq.traj[1].circular = false #This is to remove the circular mask\n\n# Setting up the reconstruction parameters\nNx, Ny = raw.params[\"reconSize\"][1:2]\nreconParams = Dict{Symbol,Any}(:reco=>\"direct\", :reconSize=>(Nx, Ny))\nimage = reconstruction(acq, reconParams)\n\n# Plotting the recon\nslice_abs = abs.(image[:, :, 1])\np5 = plot_image(slice_abs; height=400)\nsavefig(p5, \"../../assets/examples/2-recon.html\") # hide","category":"page"},{"location":"generated/examples/03-ChemicalShiftEPI/","page":"Chemical Shift in an EPI sequence","title":"Chemical Shift in an EPI sequence","text":"
    ","category":"page"},{"location":"generated/examples/03-ChemicalShiftEPI/","page":"Chemical Shift in an EPI sequence","title":"Chemical Shift in an EPI sequence","text":"","category":"page"},{"location":"generated/examples/03-ChemicalShiftEPI/","page":"Chemical Shift in an EPI sequence","title":"Chemical Shift in an EPI sequence","text":"This page was generated using Literate.jl.","category":"page"},{"location":"mri-theory/#Simulation","page":"Simulation","title":"Simulation","text":"","category":"section"},{"location":"mri-theory/#General-Overview","page":"Simulation","title":"General Overview","text":"","category":"section"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"KomaMRI simulates the magnetization of each spin of a Phantom for variable magnetic fields given by a Sequence. It is assumed that a single spin is independent of the state of the other spins in the system (a key feature that enables parallelization). Furthermore, there are defined two regimes in the Sequence: excitation and precession. During the latter, the excitation fields are nulled and are useful for simplifying some physical equations.","category":"page"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"The are more internal considerations in the KomaMRI implementation. The Figure 1 summarizes the functions called to perform the simulation.","category":"page"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"

    \n

    \n \n
    Figure 1: The sequence ${\\tt seq }$ is discretized after calculating the required time points in the wrapper function ${\\tt simulate}$. The time points are then divided into ${\\tt Nblocks}$ to reduce the amount of memory used. The phantom ${\\tt obj}$ is divided into ${\\tt Nthreads}$, and ${\\bf KomaMRI}$ will use either ${\\tt run\\_spin\\_excitation!}$ or ${\\tt run\\_spin\\_precession!}$ depending on the regime. If an ${\\tt ADC}$ object is present, the simulator will add the signal contributions of each thread to construct the acquired signal ${\\tt sig[t]}$. All the parameters: ${\\tt Nthreads}$, ${\\tt Nblocks}$, ${\\tt Δt_{rf}}$, and ${\\tt Δt}$, are passed through a dictionary called ${\\tt sim\\_params}$ as an optional parameter of the simulate function.\n
    \n

    ","category":"page"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"From the programming perspective, it is needed to call the function simulate with the sim_params dictionary keyword argument. A user can change the values of the following keys:","category":"page"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"\"return_type\": defines the output of the simulate function. Possible values are \"raw\", \"mat\", and \"state\", corresponding to outputting a MRIReco RawAcquisitionData, the signal values, and the last magnetization state of the simulation, respectively.\n\"sim_method\": defines the type of simulation. The default value is Bloch(), but you can alternatively use the BlochDict() simulation method. Moreover, you have the flexibility to create your own methods without altering the KomaMRI source code; for further details, refer to the Simulation Method Extensibility section.\n\"Δt\": raster time for gradients.\n\"Δt_rf\": raster time for RFs.\n\"precision\": defines the floating-point simulation precision. You can choose between \"f32\" and \"f64\" to use Float32 and Float64 primitive types, respectively. It's important to note that, especially for GPU operations, using \"f32\" is generally much faster.\n\"Nblocks\" divides the simulation into a specified number of time blocks. This parameter is designed to conserve RAM resources, as KomaMRI computes a series of simulations consecutively, each with the specified number of blocks determined by the value of \"Nblocks\".\n\"Nthreads\": divides the Phantom into a specified number of threads. Because spins are modeled independently of each other, KomaMRI can solve simulations in parallel threads, speeding up the execution time.\n\"gpu\": is a boolean that determines whether to use GPU or CPU hardware resources, as long as they are available on the host computer.\n\"gpu_device\": sets the index ID of the available GPU in the host computer.","category":"page"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"For instance, if you want to perform a simulation on the CPU with float64 precision using the BlochDict() method (assuming you have already defined obj and seq), you can do so like this:","category":"page"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"# Set non-default simulation parameters and run simulation\nsim_params = KomaMRICore.default_sim_params() \nsim_params[\"gpu\"] = false\nsim_params[\"precision\"] = \"f64\"\nsim_params[\"sim_method\"] = BlochDict()\nraw = simulate(obj, seq, sys; sim_params)","category":"page"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"Additionally, the user must be aware of the functions run_spin_excitation! and run_spin_precession! which defines the algorithm for excitation and precession regimes respectively and can be changed by the user without modifying the source code (more details at Simulation Method Extensibility).","category":"page"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"Previous simulation, the Sequence is discretized to consider specific time points which are critical for simulation. The user can control the time between intermediate gradient samples with the parameter Δt. Similarly, the parameter Δt_rf manages the time between RF samples, and can be relatively large for 2D imaging where the slice profile is less relevant.","category":"page"},{"location":"mri-theory/#Computation-Efficiency","page":"Simulation","title":"Computation Efficiency","text":"","category":"section"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"To reduce the memory usage of our simulator, we subdivided time into Nblocks. KomaMRI classifies each block in either the excitation regime or the precession regime before the simulation.","category":"page"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"We increased the simulation speed by separating the calculations into Nthreads and then performing the GPU parallel operations with CUDA.jl . This separation is possible as all magnetization vectors are independent of one another.","category":"page"},{"location":"mri-theory/#Simulation-Method-Extensibility","page":"Simulation","title":"Simulation Method Extensibility","text":"","category":"section"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"In Julia, functions use different methods based on the input types via multiple dispatch. We used this to specialize the simulation functions for a given sim_method <:SimulationMethod specified in sim_params. For a given simulation method, the function initialize_spin_state outputs a variable Xt <: SpinStateRepresentation that is passed through the simulation (Figure 1). For the default simulation method Bloch, the spin state is of type Mag, but can be extended to a custom representation, like for example EPGs44 or others. Then, the functions run_spin_excitation! and run_spin_precession! can be described externally for custom types sim_method and Xt, extending Koma’s functionalities without the need of modifying the source code and taking advantage of all of Koma’s features.","category":"page"},{"location":"mri-theory/#Bloch-Simulation-Method","page":"Simulation","title":"Bloch Simulation Method","text":"","category":"section"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"This is the default simulation method used by KomaMRI, however it can always be specified by setting the sim_method = Bloch() entry of the sim_params dictionary. In the following subsection, we will explain the physical and mathematical background and some considerations and assumptions that enables to speed up the simulation.","category":"page"},{"location":"mri-theory/#Physical-and-Mathematical-Background","page":"Simulation","title":"Physical and Mathematical Background","text":"","category":"section"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"The Bloch method of KomaMRI simulates the magnetization of each spin by solving the Bloch equations in the rotating frame:","category":"page"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"beginalign tag1\n\nfracmathrmd boldsymbolMmathrmd t =\n gamma boldsymbolM times boldsymbolB\n- fracM_x hatx + M_y hatyT_2\n- fracM_z hatx + M_0 hatyT_1 \n\nendalign","category":"page"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"with gamma the gyromagnetic ratio, boldsymbolM = M_x M_y M_z^T the magnetization vector, and","category":"page"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"boldsymbolB = B_1x(t) B_1y(t) boldsymbolG(t) cdot boldsymbolx + Delta omega(t)^T","category":"page"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"the effective magnetic field. M_0 is the proton density, T_1 and T_2 are the relaxation times, and Delta omega is the off-resonance, for each position.","category":"page"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"The Bloch Simulation Method also uses the technique of operator splitting to simplify the solution of Equation (1). This reflects mathematically the intuition of separating the Bloch equations in a rotation operator described by","category":"page"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"beginalign tag2\n\nfracmathrmdmathrmdt boldsymbolM =\nbeginbmatrix\n 0 gamma B_z -gamma B_y \n-gamma B_z 0 gamma B_x \n gamma B_y -gamma B_x 0\nendbmatrix\nboldsymbolM \n\nendalign","category":"page"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"and a relaxation operator described by","category":"page"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"beginalign tag3\n\nfracmathrmdmathrmdt boldsymbolM =\nbeginbmatrix\n-tfrac1T_2 0 0 \n0 -tfrac1T_2 0 \n0 0 -tfrac1T_1\nendbmatrix\nboldsymbolM\n+\nbeginbmatrix\n0 \n0 \ntfracM_0T_1\nendbmatrix \n\nendalign","category":"page"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"The evolution of the magnetization can then be described as a two-step process for each time step Delta t (Figure 2).","category":"page"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"

    \n

    \n \n
    Figure 2: Solution of the Bloch equations for one time step can be described by (2) a rotation and (3) a relaxation step.
    \n
    \n

    ","category":"page"},{"location":"mri-theory/#BlochDict-Simulation-Method","page":"Simulation","title":"BlochDict Simulation Method","text":"","category":"section"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"This is another simulation method defined in the source code of KomaMRI. It can be specified by setting the sim_method = BlochDict() entry of the sim_params dictionary.","category":"page"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"note: Note\nThis section is under construction. More explanation of this simulation method is required.","category":"page"},{"location":"#Introduction","page":"Home","title":"Introduction","text":"","category":"section"},{"location":"","page":"Home","title":"Home","text":"KomaMRI is a Julia package meant to simulate general Magnetic Resonance Imaging (MRI) scenarios. Its name comes from the Japanese word for spinning-top こま (ko-ma) as they precess due to gravity like spins in a magnetic field.","category":"page"},{"location":"","page":"Home","title":"Home","text":"KomaMRI generates raw data by solving the Bloch equations using the specified scanner, phantom and sequence. It also provides a Graphical User Interface (GUI) that encapsulates the whole imaging pipeline (simulation and reconstruction).","category":"page"},{"location":"","page":"Home","title":"Home","text":"

    \n

    ","category":"page"},{"location":"","page":"Home","title":"Home","text":"KomaMRI can be used by either:","category":"page"},{"location":"","page":"Home","title":"Home","text":"User Interface: User-friendly interaction. No Julia programming skills are required. Refer to Simulation with User Interface to dive into the details of how to use the GUI.\nScripts : Basic knowledge of Julia is required. Refer to Simulation with Scripts to follow a basic workflow on how to work with KomaMRI.","category":"page"},{"location":"","page":"Home","title":"Home","text":"If you are new to KomaMRI, we recommend starting with the \"Getting Started\" section to install Julia, KomaMRI, and perform your first simulation.","category":"page"},{"location":"#Features","page":"Home","title":"Features","text":"","category":"section"},{"location":"","page":"Home","title":"Home","text":"Some of the features of KomaMRI are:","category":"page"},{"location":"","page":"Home","title":"Home","text":"Fast simulations by using CPU and GPU parallelization 🏃💨.\nOpen Source, so anyone can include additional features 🆙.\nCompatibility with community-standards 🤝 like Pulseq .seq and ISMRMRD .mrd.\nCompatibility with Pluto and Jupyter notebooks 🎈\nCross-platform 🌐 thanks to the use of the Julia programming language.\nFriendly user interface for people with no programming skills 😌.\nFlexible API for advanced users 👨‍💻.","category":"page"},{"location":"#Potential-Use-Cases","page":"Home","title":"Potential Use Cases","text":"","category":"section"},{"location":"","page":"Home","title":"Home","text":"We see Koma being used in:","category":"page"},{"location":"","page":"Home","title":"Home","text":"The generation of synthetic data to train Machine Learning models.\nTo test novel pulse sequences before implementing them directly in a real scanner (with a Pulseq sequence).\nTeaching exercises for MRI acquisition or reconstruction.","category":"page"}] +[{"location":"ways-of-using-koma/#Ways-of-using-Koma","page":"Ways of using Koma","title":"Ways of using Koma","text":"","category":"section"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"KomaMRI can be used in different environments, depending on the degree of flexibility you desire. If you lack prior programming knowledge, we recommend starting with the User Interface. If you seek the full range of flexibility that KomaMRI offers, programming with Scripts is likely your preference. Alternatively, you can utilize the programming environment provided by Notebooks. Detailed explanations for each method of using KomaMRI will be provided in the following sections.","category":"page"},{"location":"ways-of-using-koma/#User-Interface","page":"Ways of using Koma","title":"User Interface","text":"","category":"section"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"This section explains how to use the user interface of the KomaMRI package and the internal processes during interaction.","category":"page"},{"location":"ways-of-using-koma/#Basic-Workflow","page":"Ways of using Koma","title":"Basic Workflow","text":"","category":"section"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"(You can also go to analog steps using Scripts)","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"As a general overview, remember the following workflow steps when using KomaMRI:","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"Loading Simulation Inputs: Scanner, Phantom, Sequence\nRunning Simulation\nReconstructing Image using MRIReco","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"In the following subsections, we will cover all the mentioned steps. First, open the Julia REPL and enter the following commands to include the KomaMRI package and launch the user interface:","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"julia> using KomaMRI\n\njulia> KomaUI()","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"

    ","category":"page"},{"location":"ways-of-using-koma/#Loading-Simulation-Inputs","page":"Ways of using Koma","title":"Loading Simulation Inputs","text":"","category":"section"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"(You can also go to analog steps using Scripts)","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"The user interface has preloaded certain inputs into RAM, including the Scanner, Phantom, and Sequence structs. In the following subsections, we will demonstrate how to visualize these inputs.","category":"page"},{"location":"ways-of-using-koma/#Scanner","page":"Ways of using Koma","title":"Scanner","text":"","category":"section"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"You can visualize the preloaded Scanner struct by clicking on the Scanner dropdown and then pressing the View Scanner button. The Scanner struct contains hardware-related information, such as the main magnetic field's magnitude:","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"

    ","category":"page"},{"location":"ways-of-using-koma/#Phantom","page":"Ways of using Koma","title":"Phantom","text":"","category":"section"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"To see the phantom already stored in RAM, simply click on the Phantom dropdown an then press the View Phantom button. The preloaded phantom is a slice of a brain:","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"

    ","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"It is also possible to load .h5 phantom files. The KomaMRI.jl has some examples stored at ~/.julia/packages/KomaMRI//examples/2.phantoms/. For instance, let's load the sphere_chemical_shift.h5 file:","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"

    ","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"Note that you can select different spin parameters to visualize like ρ, T1, T2, among others. ","category":"page"},{"location":"ways-of-using-koma/#Sequence","page":"Ways of using Koma","title":"Sequence","text":"","category":"section"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"There are two options to visualize the sequence already preloaded in RAM: in the time domain or in the k-space. The preloaded sequence is a single-shot EPI.","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"For visualization of the sequence in the time domain, click on the Sequence dropdown and then press the Sequence (MPS) button:","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"

    ","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"For visualization of the sequence in the k-space, click on the Sequence dropdown and then press the k-space button:","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"

    ","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"You can also display the Moments related to the Sequence by pressing the View Moments and then pressing the buttons for zero, first and second moments.","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"It is also possible to load Pulseq compatible .seq sequence files. The KomaMRI has some examples stored at ~/.julia/packages/KomaMRI//examples/1.sequences/. For instance, let's load the spiral.seq file and view it the time domain and k-space:","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"

    ","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"

    ","category":"page"},{"location":"ways-of-using-koma/#Running-Simulation","page":"Ways of using Koma","title":"Running Simulation","text":"","category":"section"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"(You can also go to analog steps using Scripts)","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"Once the inputs are loaded in RAM, it is possible to perform the simulation to get the Raw Signal.","category":"page"},{"location":"ways-of-using-koma/#Simulation-Parameters","page":"Ways of using Koma","title":"Simulation Parameters","text":"","category":"section"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"To visualize the default simulation parameters, click on the Simulate! dropdown and then press the View Options button:","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"

    ","category":"page"},{"location":"ways-of-using-koma/#Visualization-of-the-Raw-Signal","page":"Ways of using Koma","title":"Visualization of the Raw Signal","text":"","category":"section"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"Press the Simulate! button to perform the simulation (this may take a while). Automatically the generated Raw Signal should be displayed or you can click on the Raw Data dropdown and then press the View Raw Data button:","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"

    ","category":"page"},{"location":"ways-of-using-koma/#Reconstructing-Image-using-MRIReco","page":"Ways of using Koma","title":"Reconstructing Image using MRIReco","text":"","category":"section"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"(You can also go to analog steps using Scripts)","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"Once the Raw Signal is loaded in RAM, it is possible to reconstruct the image.","category":"page"},{"location":"ways-of-using-koma/#Reconstruction-Parameters","page":"Ways of using Koma","title":"Reconstruction Parameters","text":"","category":"section"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"To visualize the default reconstruction parameters, click on the Reconstruct! dropdown and then press the View Options button:","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"

    ","category":"page"},{"location":"ways-of-using-koma/#Visualization-of-the-Image","page":"Ways of using Koma","title":"Visualization of the Image","text":"","category":"section"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"Press the Reconstruct! button to perform the reconstruction (this may take a while). Automatically the generated Image should be displayed or you can click on the he Reconstruct! dropdown and then press the |Image| button:","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"

    ","category":"page"},{"location":"ways-of-using-koma/#Exporting-Results-to-.mat-File","page":"Ways of using Koma","title":"Exporting Results to .mat File","text":"","category":"section"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"(You can also go to analog steps using Scripts)","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"The user interface has the option to save the results in .mat format. Simply click on the Export to .mat and you have the alternatives to get data independently or you can press the All button to have all the results given by the simulator:","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"

    ","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"So far, and due to limitations of the user interface dependencies, the .mat files are saved in the temporal directory of your computer OS, which can be found by typing the tempdir() command in the Julia REPL.","category":"page"},{"location":"ways-of-using-koma/#Julia-Scripts","page":"Ways of using Koma","title":"Julia Scripts","text":"","category":"section"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"You should already be familiar with the Graphical User Interface of KomaMRI. However, you can also use this package directly from the Julia REPL or write your own Julia scripts. This allows you to unlock the full potential of KomaMRI, enabling you to utilize more of its functionalities and even test your own MRI ideas.","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"This section demonstrates a basic workflow with KomaMRI through writing your own scripts or entering commands directly into the Julia REPL. Let's begin.","category":"page"},{"location":"ways-of-using-koma/#Basic-Workflow-2","page":"Ways of using Koma","title":"Basic Workflow","text":"","category":"section"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"(You can also go to analog steps using UI)","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"As a general overview, remember the following workflow steps when using KomaMRI:","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"Loading Simulation Inputs: Scanner, Phantom, Sequence\nRunning Simulation\nReconstructing Image using MRIReco","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"Let's replicate these previous steps in a Julia script. You will obtain the following code, which you can copy and paste into the Julia REPL:","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"# Import the package\nusing KomaMRI\n\n# Define scanner, object and sequence\nsys = Scanner()\nobj = brain_phantom2D()\nseq = PulseDesigner.EPI_example()\n\n# Define simulation parameters and perform simulation\nsim_params = KomaMRICore.default_sim_params() \nraw = simulate(obj, seq, sys; sim_params)\n\n# Auxiliary function for reconstruction\nfunction reconstruct_2d_image(raw::RawAcquisitionData)\n acqData = AcquisitionData(raw)\n acqData.traj[1].circular = false #Removing circular window\n C = maximum(2*abs.(acqData.traj[1].nodes[:])) #Normalize k-space to -.5 to .5 for NUFFT\n acqData.traj[1].nodes = acqData.traj[1].nodes[1:2,:] ./ C\n Nx, Ny = raw.params[\"reconSize\"][1:2]\n recParams = Dict{Symbol,Any}()\n recParams[:reconSize] = (Nx, Ny)\n recParams[:densityWeighting] = true\n rec = reconstruction(acqData, recParams)\n image3d = reshape(rec.data, Nx, Ny, :)\n image2d = (abs.(image3d) * prod(size(image3d)[1:2]))[:,:,1]\n return image2d\nend\n\n# Perform reconstruction to get the image\nimage = reconstruct_2d_image(raw)","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"Let's go through this script step by step.","category":"page"},{"location":"ways-of-using-koma/#Loading-Simulation-Inputs-2","page":"Ways of using Koma","title":"Loading Simulation Inputs","text":"","category":"section"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"(You can also go to analog steps using UI)","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"The inputs of the simulation are created in the following part of the script: ","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"# Define scanner, object and sequence\nsys = Scanner()\nobj = brain_phantom2D()\nseq = PulseDesigner.EPI_example()","category":"page"},{"location":"ways-of-using-koma/#Scanner-2","page":"Ways of using Koma","title":"Scanner","text":"","category":"section"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"The previously created Scanner struct contains default parameters. In your initial simulations, you will likely use this default struct without making any modifications. You can view all the parameters by displaying the struct variable in the Julia REPL. The Scanner's parameters include hardware limitations such as the main magnetic field, maximum gradient values, minimum raster times, and more. You may want to adjust these values for your future custom simulations.","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"julia> sys\nScanner\n B0: Float64 1.5\n B1: Float64 1.0e-5\n Gmax: Float64 0.06\n Smax: Int64 500\n ADC_Δt: Float64 2.0e-6\n seq_Δt: Float64 1.0e-5\n GR_Δt: Float64 1.0e-5\n RF_Δt: Float64 1.0e-6\n RF_ring_down_T: Float64 2.0e-5\n RF_dead_time_T: Float64 0.0001\n ADC_dead_time_T: Float64 1.0e-5","category":"page"},{"location":"ways-of-using-koma/#Phantom-2","page":"Ways of using Koma","title":"Phantom","text":"","category":"section"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"The Phantom struct created in this example represents a slice of a brain. To create it, we use the function brain_phantom2D, which is part of the subdependency KomaMRICore. While KomaMRI provides some phantom examples for experimentation, you may also want to create your custom Phantom struct tailored to your specific requirements.","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"The Phantom struct contains MRI parameters related to the magnetization properties of an object. These parameters include magnetization positions, proton density, relaxation times, off-resonance, among others. To view all the keys and values of the object, you can do so in the Julia REPL as follows:","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"julia> obj\nPhantom{Float64}\n name: String \"brain2D_axial\"\n x: Array{Float64}((6506,)) [-0.084, -0.084, … 0.086, 0.086]\n y: Array{Float64}((6506,)) [-0.03, -0.028, … 0.0, 0.002]\n z: Array{Float64}((6506,)) [-0.0, -0.0, … 0.0, 0.0]\n ρ: Array{Float64}((6506,)) [0.7, 0.7, … 0.7, 0.7]\n T1: Array{Float64}((6506,)) [0.569, 0.569, … 0.569, 0.569]\n T2: Array{Float64}((6506,)) [0.329, 0.329, … 0.329, 0.329]\n T2s: Array{Float64}((6506,)) [0.058, 0.058, … 0.058, 0.058]\n Δw: Array{Float64}((6506,)) [-0.0, -0.0, … -0.0, -0.0]\n Dλ1: Array{Float64}((6506,)) [0.0, 0.0, … 0.0, 0.0]\n Dλ2: Array{Float64}((6506,)) [0.0, 0.0, … 0.0, 0.0]\n Dθ: Array{Float64}((6506,)) [0.0, 0.0, … 0.0, 0.0]\n...","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"As you can see, attributes of the Phantom struct are vectors representing object properties, with each element holding a value associated with a single magnetization.","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"You can also visualize the Phantom struct using the plot_phantom_map function, which is part of the KomaMRIPlots subdependency. This function plots the magnitude of a property for each magnetization at a specific spatial position. You can observe properties such as proton density and relaxation times, so feel free to replace the :ρ symbol with another property of the phantom in the example below:","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"julia> plot_phantom_map(obj, :ρ)","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"To utilize test phantoms included with KomaMRI, navigate to the \"examples\" folder and use the read_phantom_jemris function to read a phantom in .h5 format. The following steps outline how to do this in Julia:","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"julia> path_koma = dirname(dirname(pathof(KomaMRI)))\njulia> path_sphere = joinpath(path_koma, \"examples\", \"2.phantoms\", \"sphere_chemical_shift.h5\")\njulia> sphere = read_phantom_jemris(path_sphere)\njulia> plot_phantom_map(sphere, :T2)","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"","category":"page"},{"location":"ways-of-using-koma/#Sequence-2","page":"Ways of using Koma","title":"Sequence","text":"","category":"section"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"The Sequence struct in the example represents one of the most basic MRI sequences. It excites the object with a 90° RF pulse and then uses EPI gradients to fill the k-space in a \"square\" manner. While you may want to create your sequences for experiments, you can always use some of the examples already available in KomaMRI.","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"In MRI, the sequence must be carefully designed with precise timing to obtain an image. It includes subcomponents such as gradients, radio-frequency excitation signals, and sample acquisition. For more information on constructing a Sequence struct, refer to the Sequence section.","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"You can view general information about a Sequence struct by displaying it in the Julia REPL:","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"julia> seq\nSequence[ τ = 62.846 ms | blocks: 204 | ADC: 101 | GR: 205 | RF: 1 | DEF: 5 ]","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"For more precise timing checks, you can use the plot_seq function:","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"julia> plot_seq(seq; range=[0 30])","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"It is important to consider how the sequence traverses through k-space. The get_kspace function does precisely that:","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"julia> plot_kspace(seq)","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"Additionally, there are helpful sequence construction functions within a submodule of KomaMRI called PulseDesigner. These functions include RF_hard, RF_sinc, EPI, radial_base and spiral_base. For more details on how to use them, refer to the API documentation.","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"KomaMRI is also compatible with Pulseq. The package installation includes some .seq files in Pulseq format, which can be read and used as a Sequence struct. Here's how to read a spiral Pulseq file stored in the \"examples\" folder of KomaMRI:","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"julia> path_koma = dirname(dirname(pathof(KomaMRI)))\njulia> path_spiral = joinpath(path_koma, \"examples\", \"1.sequences\", \"spiral.seq\")\njulia> spiral = read_seq(path_spiral)\njulia> plot_seq(spiral)\njulia> plot_kspace(spiral)","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"","category":"page"},{"location":"ways-of-using-koma/#Running-Simulation-2","page":"Ways of using Koma","title":"Running Simulation","text":"","category":"section"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"(You can also go to analog steps using UI)","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"The following lines in the example script configure and perform the simulation:","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"# Define simulation parameters and perform simulation\nsim_params = KomaMRICore.default_sim_params() \nraw = simulate(obj, seq, sys; sim_params)","category":"page"},{"location":"ways-of-using-koma/#Simulation-Parameters-2","page":"Ways of using Koma","title":"Simulation Parameters","text":"","category":"section"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"To perform simulations, KomaMRI requires certain parameters. You can use the default parameters for testing, but you also have the option to customize specific simulation aspects. In the example, we use the default_sim_params function to create a dictionary with default simulation parameters. You can view the keys that can be modified by displaying the sim_params variable:","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"julia> sim_params\nDict{String, Any} with 9 entries:\n \"return_type\" => \"raw\"\n \"Nblocks\" => 20\n \"gpu\" => true\n \"Nthreads\" => 1\n \"gpu_device\" => 0\n \"sim_method\" => Bloch()\n \"precision\" => \"f32\"\n \"Δt\" => 0.001\n \"Δt_rf\" => 5.0e-5","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"All of these parameters deserve special attention. We will explain some of the most important ones here. For instance, \"Δt\" and \"Δt_rf\" represent the raster times for the gradients and RFs. \"return_type\" specifies the type of variable returned by the simulator (by default, it returns an object ready for use with MRIReco for reconstruction, but you can use the value \"mat\" to return a simple vector). \"gpu\" indicates whether you want to use your GPU device for simulations, and \"precision\" sets the floating-point precision. For more details on how to set these parameters, please refer to the Simulation Parameters Section.","category":"page"},{"location":"ways-of-using-koma/#Raw-Signal","page":"Ways of using Koma","title":"Raw Signal","text":"","category":"section"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"The simulation is performed using the simulate function, which requires three arguments: a Scanner struct, a Phantom struct, and a Sequence struct. Optionally, you can include the keyword argument sim_params if you wish to use custom simulation parameters.","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"In the example, we can see that the output of the simulation is a special struct:","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"julia> typeof(raw)\nRawAcquisitionData\n\njulia> raw\nRawAcquisitionData[SeqName: epi | 101 Profile(s) of 101×1]","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"You can plot the simulation result with the plot_signal function like so:","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"julia> plot_signal(raw)","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"","category":"page"},{"location":"ways-of-using-koma/#Reconstructing-Image-using-MRIReco-2","page":"Ways of using Koma","title":"Reconstructing Image using MRIReco","text":"","category":"section"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"(You can also go to analog steps using UI)","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"KomaMRI does not handle reconstruction; instead, you should utilize the MRIReco package to generate an image. For convenience, when you install KomaMRI, you also install MRIReco, allowing you to access functions from that package. You should pay special attention to the RawAcquisitionData and AcquisitionData structs, as well as the reconstruction function.","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"In the example below, we define an auxiliary function, reconstruct_2d_image, which takes a raw signal struct, RawAcquisitionData, as input and returns a 2D Array representing an image. Within this function, we create an AcquisitionData struct and set some reconstruction parameters, which serve as inputs for the reconstruction function. The latter function is responsible for the image generation process.","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"# Auxiliary function for reconstruction\nfunction reconstruct_2d_image(raw::RawAcquisitionData)\n acqData = AcquisitionData(raw)\n acqData.traj[1].circular = false #Removing circular window\n C = maximum(2*abs.(acqData.traj[1].nodes[:])) #Normalize k-space to -.5 to .5 for NUFFT\n acqData.traj[1].nodes = acqData.traj[1].nodes[1:2,:] ./ C\n Nx, Ny = raw.params[\"reconSize\"][1:2]\n recParams = Dict{Symbol,Any}()\n recParams[:reconSize] = (Nx, Ny)\n recParams[:densityWeighting] = true\n rec = reconstruction(acqData, recParams)\n image3d = reshape(rec.data, Nx, Ny, :)\n image2d = (abs.(image3d) * prod(size(image3d)[1:2]))[:,:,1]\n return image2d\nend\n\n# Perform reconstruction to get the image\nimage = reconstruct_2d_image(raw)","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"If you need more information about how to use the AcquisitionData and the how to fill the reconstruction parameters, you need to visit the MRIReco webpage).","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"To display the image, you can use the plot_image function which is part of the KomaMRIPlots subpackage:","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"julia> plot_image(image)","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"
    ","category":"page"},{"location":"ways-of-using-koma/#Exporting-Results-to-.mat-File-2","page":"Ways of using Koma","title":"Exporting Results to .mat File","text":"","category":"section"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"(You can also go to analog steps using UI)","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"Many people in the MRI community uses MATLAB, probably you are one of them and you want to process the raw signal in the MATLAB environment after simulation is done with KomaMRI. Here we show you an example of how to save a .mat file with the information of the raw signal thank to the help of the MAT package:","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"Many people in the MRI community use MATLAB; you might be one of them and may want to process the Raw Signal in the MATLAB environment after simulation is completed with KomaMRI. Here, we provide an example of how to save a .mat file containing the Raw Signal information using the MAT package.","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"# Use the MAT package\nusing MAT\n\n# Perform simulation to return an Array type\nsim_params[\"return_type\"] = \"mat\"\nraw = simulate(obj, seq, sys; sim_params)\n\n# Save the .mat file in the temp directory\nmatwrite(joinpath(tempdir(), \"koma-raw.mat\"), Dict(\"raw\" => raw))","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"Note that we need to simulate to return an array type (not the default RawAcquisitionData), and then we utilize the matwrite function to save a file named \"koma-raw.mat\" in your computer's temporary directory. Now, you can navigate to your temporary directory (which you can find by displaying the result of tempdir() in the Julia REPL) and locate the \"koma-raw.mat\" file.","category":"page"},{"location":"ways-of-using-koma/#Notebooks","page":"Ways of using Koma","title":"Notebooks","text":"","category":"section"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"You can use KomaMRI with popular programming environments such as Pluto and Jupyter notebooks. The following sections show how to set up these notebooks and test KomaMRI with them.","category":"page"},{"location":"ways-of-using-koma/#Using-KomaMRI-with-Pluto","page":"Ways of using Koma","title":"Using KomaMRI with Pluto","text":"","category":"section"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"First, install the Pluto module in your Julia environment. Remember to press the ] button to open the Package Manager Session:\"","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"julia>\n\n@(1.9) pkg> add Pluto","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"Afterward, return to the Julia Session by pressing the backspace button, and then execute the Pluto.run() function:","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"julia> using Pluto\n\njulia> Pluto.run()","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"This should automatically open the Pluto dashboard in your default web browser:","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"
    \"\"
    ","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"Next, create a new notebook by clicking on + Create a new notebook:","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"
    \"\"
    ","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"Write and run the following code, which is identical to the Free Induction Decay example. Pluto automatically installs the required modules if they are not present on your system. Additionally, note that we do not use KomaMRI directly since we won't be utilizing the KomaUI() function. Instead, we rely on the KomaMRICore and KomaMRIPlots dependencies. To display plots in Pluto, ensure that you import the PlutoPlots package:\"","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"","category":"page"},{"location":"ways-of-using-koma/#Using-KomaMRI-with-Jupyter","page":"Ways of using Koma","title":"Using KomaMRI with Jupyter","text":"","category":"section"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"Ensure you have Jupyter installed on your computer. Follow this tutorial for installation using Anaconda.","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"Next, install the IJulia module in your Julia environment. Remember to press the ] key to open the Package Manager Session:","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"julia>\n\n(@v1.9) pkg> add IJulia","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"For this example, make sure to install KomaMRICore and KomaMRIPlots (we do not use KomaMRI directly since we won't be utilizing the KomaUI() function):","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"(@v1.9) pkg> add KomaMRICore\n\n(@v1.9) pkg> add KomaMRIPlots","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"Next, open Jupyter, navigate to a working folder, and create a new notebook by clicking on New, then Julia 1.9.3.\"","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"
    \"\"
    ","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"A new, empty notebook will appear:","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"
    \"\"
    ","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"Proceed to write and execute the provided example:","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"
    View code","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"# Import modules\nusing KomaMRICore, KomaMRIPlots\n\n# Define sequence\nampRF = 2e-6 # 2 uT RF amplitude\ndurRF = π / 2 / (2π * γ * ampRF) # required duration for a 90 deg RF pulse\nexc = RF(ampRF, durRF)\n\nnADC = 8192 # number of acquisition samples\ndurADC = 250e-3 # duration of the acquisition\ndelay = 1e-3 # small delay\nacq = ADC(nADC, durADC, delay)\n\nseq = Sequence() # empty sequence\nseq += exc # adding RF-only block\nseq += acq # adding ADC-only block\n\n# Plot the sequence\nplot_seq(seq; slider=false, height=300)","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"
    ","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"
    \"\"
    ","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"This should be sufficient, and now you can start working with KomaMRI using Jupyter notebooks.","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"If you encounter the issue of WebIO not being detected:","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"
    \"\"
    ","category":"page"},{"location":"ways-of-using-koma/","page":"Ways of using Koma","title":"Ways of using Koma","text":"Refer to this troubleshooting guide for details. Essentially, you need to install a WebIO extension based on your Jupyter installation.","category":"page"},{"location":"notebooks/#Notebooks","page":"Notebooks","title":"Notebooks","text":"","category":"section"},{"location":"notebooks/","page":"Notebooks","title":"Notebooks","text":"You can use KomaMRI with popular programming environments such as Pluto and Jupyter notebooks. The following sections show how to set up these notebooks and test KomaMRI with them.","category":"page"},{"location":"notebooks/#Using-KomaMRI-with-Pluto","page":"Notebooks","title":"Using KomaMRI with Pluto","text":"","category":"section"},{"location":"notebooks/","page":"Notebooks","title":"Notebooks","text":"First, install the Pluto module in your Julia environment. Remember to press the ] button to open the Package Manager Session:","category":"page"},{"location":"notebooks/","page":"Notebooks","title":"Notebooks","text":"julia>\n\n@(1.9) pkg> add Pluto","category":"page"},{"location":"notebooks/","page":"Notebooks","title":"Notebooks","text":"Afterward, return to the Julia Session by pressing the backspace button, and then execute the Pluto.run() function:","category":"page"},{"location":"notebooks/","page":"Notebooks","title":"Notebooks","text":"julia> using Pluto\n\njulia> Pluto.run()","category":"page"},{"location":"notebooks/","page":"Notebooks","title":"Notebooks","text":"This should automatically open the Pluto dashboard in your default web browser:","category":"page"},{"location":"notebooks/","page":"Notebooks","title":"Notebooks","text":"
    \"\"
    ","category":"page"},{"location":"notebooks/","page":"Notebooks","title":"Notebooks","text":"Next, create a new notebook by clicking on + Create a new notebook:","category":"page"},{"location":"notebooks/","page":"Notebooks","title":"Notebooks","text":"
    \"\"
    ","category":"page"},{"location":"notebooks/","page":"Notebooks","title":"Notebooks","text":"Write and run the following code, which is identical to the Free Induction Decay example. Pluto automatically installs the required modules if they are not present on your system. Additionally, note that we do not directly use KomaMRI since we won't be utilizing the KomaUI() function. Instead, we rely on the KomaMRICore and KomaMRIPlots dependencies. To display plots in Pluto, ensure that you import the PlutoPlotly package, as KomaMRIPlots requires its backend to display figures in Pluto:","category":"page"},{"location":"notebooks/","page":"Notebooks","title":"Notebooks","text":"","category":"page"},{"location":"notebooks/","page":"Notebooks","title":"Notebooks","text":"One of the most outstanding features of Pluto is its ability to ensure reproducibility by storing the information necessary to recreate the package environment in the notebook file. When others open your notebook with Pluto, it automatically ensures they use the exact same package environment, guaranteeing seamless functionality on their computers.","category":"page"},{"location":"notebooks/#Using-KomaMRI-with-Jupyter","page":"Notebooks","title":"Using KomaMRI with Jupyter","text":"","category":"section"},{"location":"notebooks/","page":"Notebooks","title":"Notebooks","text":"Ensure you have Jupyter installed on your computer. Follow this tutorial for installation using Anaconda.","category":"page"},{"location":"notebooks/","page":"Notebooks","title":"Notebooks","text":"Next, install the IJulia module in your Julia environment. Remember to press the ] key to open the Package Manager Session:","category":"page"},{"location":"notebooks/","page":"Notebooks","title":"Notebooks","text":"julia>\n\n(@v1.9) pkg> add IJulia","category":"page"},{"location":"notebooks/","page":"Notebooks","title":"Notebooks","text":"For this example, make sure to install KomaMRICore and KomaMRIPlots (we do not use KomaMRI directly since we won't be utilizing the KomaUI() function):","category":"page"},{"location":"notebooks/","page":"Notebooks","title":"Notebooks","text":"(@v1.9) pkg> add KomaMRICore\n\n(@v1.9) pkg> add KomaMRIPlots","category":"page"},{"location":"notebooks/","page":"Notebooks","title":"Notebooks","text":"Next, open Jupyter, navigate to a working folder, and create a new notebook by clicking on New, then Julia 1.9.3.\"","category":"page"},{"location":"notebooks/","page":"Notebooks","title":"Notebooks","text":"
    \"\"
    ","category":"page"},{"location":"notebooks/","page":"Notebooks","title":"Notebooks","text":"A new, empty notebook will appear:","category":"page"},{"location":"notebooks/","page":"Notebooks","title":"Notebooks","text":"
    \"\"
    ","category":"page"},{"location":"notebooks/","page":"Notebooks","title":"Notebooks","text":"Proceed to write and execute the provided example:","category":"page"},{"location":"notebooks/","page":"Notebooks","title":"Notebooks","text":"
    View code","category":"page"},{"location":"notebooks/","page":"Notebooks","title":"Notebooks","text":"# Import modules\nusing KomaMRICore, KomaMRIPlots\n\n# Define sequence\nampRF = 2e-6 # 2 uT RF amplitude\ndurRF = π / 2 / (2π * γ * ampRF) # required duration for a 90 deg RF pulse\nexc = RF(ampRF, durRF)\n\nnADC = 8192 # number of acquisition samples\ndurADC = 250e-3 # duration of the acquisition\ndelay = 1e-3 # small delay\nacq = ADC(nADC, durADC, delay)\n\nseq = Sequence() # empty sequence\nseq += exc # adding RF-only block\nseq += acq # adding ADC-only block\n\n# Plot the sequence\nplot_seq(seq; slider=false, height=300)","category":"page"},{"location":"notebooks/","page":"Notebooks","title":"Notebooks","text":"
    ","category":"page"},{"location":"notebooks/","page":"Notebooks","title":"Notebooks","text":"
    \"\"
    ","category":"page"},{"location":"notebooks/","page":"Notebooks","title":"Notebooks","text":"This should be sufficient, and now you can start working with KomaMRI using Jupyter notebooks.","category":"page"},{"location":"notebooks/","page":"Notebooks","title":"Notebooks","text":"If you encounter the issue of WebIO not being detected:","category":"page"},{"location":"notebooks/","page":"Notebooks","title":"Notebooks","text":"
    \"\"
    ","category":"page"},{"location":"notebooks/","page":"Notebooks","title":"Notebooks","text":"Refer to this IJulia documentation and this troubleshooting guide for details. Essentially, you need to install a WebIO extension depending on your Jupyter installation.","category":"page"},{"location":"generated/examples/04-3DSliceSelective/","page":"Slice Selective Acquisition of 3D Phantom","title":"Slice Selective Acquisition of 3D Phantom","text":"EditURL = \"../../../../examples/literate/examples/04-3DSliceSelective.jl\"","category":"page"},{"location":"generated/examples/04-3DSliceSelective/#Slice-Selective-Acquisition-of-3D-Phantom","page":"Slice Selective Acquisition of 3D Phantom","title":"Slice Selective Acquisition of 3D Phantom","text":"","category":"section"},{"location":"generated/examples/04-3DSliceSelective/","page":"Slice Selective Acquisition of 3D Phantom","title":"Slice Selective Acquisition of 3D Phantom","text":"(Image: ) (Image: )","category":"page"},{"location":"generated/examples/04-3DSliceSelective/","page":"Slice Selective Acquisition of 3D Phantom","title":"Slice Selective Acquisition of 3D Phantom","text":"using KomaMRI # hide\nsys = Scanner() # hide","category":"page"},{"location":"generated/examples/04-3DSliceSelective/","page":"Slice Selective Acquisition of 3D Phantom","title":"Slice Selective Acquisition of 3D Phantom","text":"While in the previous examples we simulated using hard RF pulses, in this demonstration we will illustrate the principles of slice selection. First, let's import a 3D phantom, in this case a brain slab (thickness of 2mathrmcm), by calling the function brain_phantom3D.","category":"page"},{"location":"generated/examples/04-3DSliceSelective/","page":"Slice Selective Acquisition of 3D Phantom","title":"Slice Selective Acquisition of 3D Phantom","text":"obj = brain_phantom3D()\nobj.Δw .= 0 # Removes the off-resonance\np1 = plot_phantom_map(obj, :T2 ; height=400)\nsavefig(p1, \"../../assets/examples/3-phantom.html\") # hide","category":"page"},{"location":"generated/examples/04-3DSliceSelective/","page":"Slice Selective Acquisition of 3D Phantom","title":"Slice Selective Acquisition of 3D Phantom","text":"
    ","category":"page"},{"location":"generated/examples/04-3DSliceSelective/","page":"Slice Selective Acquisition of 3D Phantom","title":"Slice Selective Acquisition of 3D Phantom","text":"Now, we are going to import a sequence which acquires 3 slices in the longitudinal axis. Note that the sequence contains three EPIs to acquire 3 slices of the phantom.","category":"page"},{"location":"generated/examples/04-3DSliceSelective/","page":"Slice Selective Acquisition of 3D Phantom","title":"Slice Selective Acquisition of 3D Phantom","text":"seq_file = joinpath(dirname(pathof(KomaMRI)), \"../examples/1.sequences/epi_multislice.seq\")\nseq = read_seq(seq_file)\np2 = plot_seq(seq; range=[0,10], height=400)\nsavefig(p2, \"../../assets/examples/3-seq.html\") # hide","category":"page"},{"location":"generated/examples/04-3DSliceSelective/","page":"Slice Selective Acquisition of 3D Phantom","title":"Slice Selective Acquisition of 3D Phantom","text":"","category":"page"},{"location":"generated/examples/04-3DSliceSelective/","page":"Slice Selective Acquisition of 3D Phantom","title":"Slice Selective Acquisition of 3D Phantom","text":"We can take a look to the slice profiles by using the function simulate_slice_profile:","category":"page"},{"location":"generated/examples/04-3DSliceSelective/","page":"Slice Selective Acquisition of 3D Phantom","title":"Slice Selective Acquisition of 3D Phantom","text":"z = range(-2., 2., 200) * 1e-2; # -2 to 2 cm\nrf1, rf2, rf3 = findall(is_RF_on.(seq))\nM1 = simulate_slice_profile(seq[rf1]; z)\nM2 = simulate_slice_profile(seq[rf2]; z)\nM3 = simulate_slice_profile(seq[rf3]; z)\n\nusing PlotlyJS # hide\npa = scatter(x=z*1e2, y=abs.(M1.xy), name=\"Slice 1\") # hide\npb = scatter(x=z*1e2, y=abs.(M2.xy), name=\"Slice 2\") # hide\npc = scatter(x=z*1e2, y=abs.(M3.xy), name=\"Slice 3\") # hide\npd = plot([pa,pb,pc], Layout(xaxis=attr(title=\"z [cm]\"), height=300,margin=attr(t=40,l=0,r=0), title=\"Slice profiles for the slice-selective sequence\")) # hide\nsavefig(pd, \"../../assets/examples/3-profile.html\") # hide","category":"page"},{"location":"generated/examples/04-3DSliceSelective/","page":"Slice Selective Acquisition of 3D Phantom","title":"Slice Selective Acquisition of 3D Phantom","text":"","category":"page"},{"location":"generated/examples/04-3DSliceSelective/","page":"Slice Selective Acquisition of 3D Phantom","title":"Slice Selective Acquisition of 3D Phantom","text":"Now let's simulate the acquisition. Notice the three echoes, one for every slice excitation.","category":"page"},{"location":"generated/examples/04-3DSliceSelective/","page":"Slice Selective Acquisition of 3D Phantom","title":"Slice Selective Acquisition of 3D Phantom","text":"raw = simulate(obj, seq, sys; sim_params=Dict{String,Any}(\"Nblocks\"=>20))\np3 = plot_signal(raw; slider=false, height=300)\nsavefig(p3, \"../../assets/examples/3-signal.html\") # hide","category":"page"},{"location":"generated/examples/04-3DSliceSelective/","page":"Slice Selective Acquisition of 3D Phantom","title":"Slice Selective Acquisition of 3D Phantom","text":"","category":"page"},{"location":"generated/examples/04-3DSliceSelective/","page":"Slice Selective Acquisition of 3D Phantom","title":"Slice Selective Acquisition of 3D Phantom","text":"Finally, we reconstruct the acquiered images.","category":"page"},{"location":"generated/examples/04-3DSliceSelective/","page":"Slice Selective Acquisition of 3D Phantom","title":"Slice Selective Acquisition of 3D Phantom","text":"# Get the acquisition data\nacq = AcquisitionData(raw)\n\n# Setting up the reconstruction parameters and perform reconstruction\nNx, Ny = raw.params[\"reconSize\"][1:2]\nreconParams = Dict{Symbol,Any}(:reco=>\"direct\", :reconSize=>(Nx, Ny))\nimage = reconstruction(acq, reconParams)\n\n# Plotting the slices\np4 = plot_image(abs.(image[:, :, 1]); height=360, title=\"Slice 1\")\np5 = plot_image(abs.(image[:, :, 2]); height=360, title=\"Slice 2\")\np6 = plot_image(abs.(image[:, :, 3]); height=360, title=\"Slice 3\")\nsavefig(p4, \"../../assets/examples/3-recon1.html\") # hide\nsavefig(p5, \"../../assets/examples/3-recon2.html\") # hide\nsavefig(p6, \"../../assets/examples/3-recon3.html\") # hide","category":"page"},{"location":"generated/examples/04-3DSliceSelective/","page":"Slice Selective Acquisition of 3D Phantom","title":"Slice Selective Acquisition of 3D Phantom","text":"","category":"page"},{"location":"generated/examples/04-3DSliceSelective/","page":"Slice Selective Acquisition of 3D Phantom","title":"Slice Selective Acquisition of 3D Phantom","text":"
    ","category":"page"},{"location":"generated/examples/04-3DSliceSelective/","page":"Slice Selective Acquisition of 3D Phantom","title":"Slice Selective Acquisition of 3D Phantom","text":"","category":"page"},{"location":"generated/examples/04-3DSliceSelective/","page":"Slice Selective Acquisition of 3D Phantom","title":"Slice Selective Acquisition of 3D Phantom","text":"This page was generated using Literate.jl.","category":"page"},{"location":"generated/examples/01-FID/","page":"Free Induction Decay","title":"Free Induction Decay","text":"EditURL = \"../../../../examples/literate/examples/01-FID.jl\"","category":"page"},{"location":"generated/examples/01-FID/#Free-Induction-Decay","page":"Free Induction Decay","title":"Free Induction Decay","text":"","category":"section"},{"location":"generated/examples/01-FID/","page":"Free Induction Decay","title":"Free Induction Decay","text":"(Image: ) (Image: )","category":"page"},{"location":"generated/examples/01-FID/","page":"Free Induction Decay","title":"Free Induction Decay","text":"First of all, let's use the KomaMRI package and define the default scanner.","category":"page"},{"location":"generated/examples/01-FID/","page":"Free Induction Decay","title":"Free Induction Decay","text":"using KomaMRI\nsys = Scanner() # default hardware definition","category":"page"},{"location":"generated/examples/01-FID/","page":"Free Induction Decay","title":"Free Induction Decay","text":"The free induction decay is the simplest observable NMR signal. This signal is the one that follows a single tipping RF pulse. To recreate this experiment, we will need to define a Sequence with 2 blocks.","category":"page"},{"location":"generated/examples/01-FID/","page":"Free Induction Decay","title":"Free Induction Decay","text":"The first block containing an RF pulse with a flip-angle of 90 deg,","category":"page"},{"location":"generated/examples/01-FID/","page":"Free Induction Decay","title":"Free Induction Decay","text":"ampRF = 2e-6 # 2 uT RF amplitude\ndurRF = π / 2 / (2π * γ * ampRF) # required duration for a 90 deg RF pulse\nexc = RF(ampRF,durRF)","category":"page"},{"location":"generated/examples/01-FID/","page":"Free Induction Decay","title":"Free Induction Decay","text":"and the second block containing the ADC.","category":"page"},{"location":"generated/examples/01-FID/","page":"Free Induction Decay","title":"Free Induction Decay","text":"nADC = 8192 # number of acquisition samples\ndurADC = 250e-3 # duration of the acquisition\ndelay = 1e-3 # small delay\nacq = ADC(nADC, durADC, delay)","category":"page"},{"location":"generated/examples/01-FID/","page":"Free Induction Decay","title":"Free Induction Decay","text":"Finally, we concatenate the sequence blocks to create the final sequence.","category":"page"},{"location":"generated/examples/01-FID/","page":"Free Induction Decay","title":"Free Induction Decay","text":"seq = Sequence() # empty sequence\nseq += exc # adding RF-only block\nseq += acq # adding ADC-only block\np1 = plot_seq(seq; slider=false, height=300)\nsavefig(p1, \"../../assets/examples/1-seq.html\") # hide","category":"page"},{"location":"generated/examples/01-FID/","page":"Free Induction Decay","title":"Free Induction Decay","text":"","category":"page"},{"location":"generated/examples/01-FID/","page":"Free Induction Decay","title":"Free Induction Decay","text":"Now, we will define a Phantom with a single spin at x=0 with T_1=1000mathrmms and T_2=100mathrmms.","category":"page"},{"location":"generated/examples/01-FID/","page":"Free Induction Decay","title":"Free Induction Decay","text":"obj = Phantom{Float64}(x=[0.], T1=[1000e-3], T2=[100e-3])","category":"page"},{"location":"generated/examples/01-FID/","page":"Free Induction Decay","title":"Free Induction Decay","text":"Finally, to simulate we will need to use the function simulate.","category":"page"},{"location":"generated/examples/01-FID/","page":"Free Induction Decay","title":"Free Induction Decay","text":"raw = simulate(obj, seq, sys)","category":"page"},{"location":"generated/examples/01-FID/","page":"Free Induction Decay","title":"Free Induction Decay","text":"To plot the results we will need to use the plot_signal function","category":"page"},{"location":"generated/examples/01-FID/","page":"Free Induction Decay","title":"Free Induction Decay","text":"p2 = plot_signal(raw; slider=false, height=300)\nsavefig(p2, \"../../assets/examples/1-signal.html\") # hide","category":"page"},{"location":"generated/examples/01-FID/","page":"Free Induction Decay","title":"Free Induction Decay","text":"","category":"page"},{"location":"generated/examples/01-FID/","page":"Free Induction Decay","title":"Free Induction Decay","text":"Nice!, we can see that S(t) follows an exponential decay exp(-tT_2) as expected.","category":"page"},{"location":"generated/examples/01-FID/","page":"Free Induction Decay","title":"Free Induction Decay","text":"For a little bit of spiciness, let's add off-resonance to our example. We will use Delta f=-100mathrmHz. For this, we will need to add a definition for Δw in our Phantom","category":"page"},{"location":"generated/examples/01-FID/","page":"Free Induction Decay","title":"Free Induction Decay","text":"obj = Phantom{Float64}(x=[0.], T1=[1000e-3], T2=[100e-3], Δw=[-2π*100])# and simulate again.\n\nraw = simulate(obj, seq, sys)\np3 = plot_signal(raw; slider=false, height=300)\nsavefig(p3, \"../../assets/examples/1-signal2.html\") # hide","category":"page"},{"location":"generated/examples/01-FID/","page":"Free Induction Decay","title":"Free Induction Decay","text":"","category":"page"},{"location":"generated/examples/01-FID/","page":"Free Induction Decay","title":"Free Induction Decay","text":"The signal now follows an exponential of the form exp(-tT_2)cdotexp(-iDeltaomega t). The addition of exp(-iDeltaomega t) to the signal will generate a shift in the image space (Fourier shifting property). This effect will be better visualized and explained in later examples.","category":"page"},{"location":"generated/examples/01-FID/","page":"Free Induction Decay","title":"Free Induction Decay","text":"","category":"page"},{"location":"generated/examples/01-FID/","page":"Free Induction Decay","title":"Free Induction Decay","text":"This page was generated using Literate.jl.","category":"page"},{"location":"mri-theory-informal/#MRI-Theory","page":"MRI Theory","title":"MRI Theory","text":"","category":"section"},{"location":"mri-theory-informal/","page":"MRI Theory","title":"MRI Theory","text":"This section is meant to be a general overview or summary of the main MRI concepts and insights. It is a good starting point to show up the most relevant components involved and how they are related for raw signal acquisition and image reconstruction. The idea is to have a fresh and clear understanding of what is happening behind the scenes when using the KomaMRI.jl package. Some light background in Differential Equations, Signal Processing and Fourier Theory is advisable to follow along. ","category":"page"},{"location":"mri-theory-informal/#Raw-Signal-Generation","page":"MRI Theory","title":"Raw Signal Generation","text":"","category":"section"},{"location":"mri-theory-informal/","page":"MRI Theory","title":"MRI Theory","text":"In order to generate an image from a phantom object with a scanner system and sequence signals, its necessary to acquire a raw signal s(t). This signal can be though as the sum of all spin magnetizations M of the object:","category":"page"},{"location":"mri-theory-informal/","page":"MRI Theory","title":"MRI Theory","text":"s(t) =\nint_x int_y int_z\nunderbrace\nM(x y z t)\n_approx alpha image(xyz) \n mathrmdz mathrmdy mathrmdx","category":"page"},{"location":"mri-theory-informal/","page":"MRI Theory","title":"MRI Theory","text":"Note that the magnitude of the magnetization is kind of proportional to the image. In real life it's not possible to get directly all the spin magnetizations, however it's possible to obtain the sum of all of them in the raw signal. To avoid losing image information in the sum operation, every spin magnetization resonates with different Larmor frequencies which values depend on the position (xyz) (i.e. modulated or encoded with the basis of the spatial frequency domain). Thus the raw signal can be thought as:","category":"page"},{"location":"mri-theory-informal/","page":"MRI Theory","title":"MRI Theory","text":"beginalign tag1\n\ns(t) approx\nint_x int_y int_z\nunderbrace\nm(x y z)\n_alpha image(xyz)\nunderbrace\ne^-j 2 pi k_x(t) x + k_y(t) y + k_z(t) z\n_modulation basis \n mathrmdz mathrmdy mathrmdx\n\nendalign","category":"page"},{"location":"mri-theory-informal/","page":"MRI Theory","title":"MRI Theory","text":"where:","category":"page"},{"location":"mri-theory-informal/","page":"MRI Theory","title":"MRI Theory","text":"veck(t) =\nbeginpmatrix\nk_x(t) \nk_y(t) \nk_z(t)\nendpmatrix =\nfrac2pigamma\nbeginpmatrix\nint_0^t G_x(tau) mathrmd tau\nint_0^t G_y(tau) mathrmd tau\nint_0^t G_z(tau) mathrmd tau\nendpmatrix\n \nbeginmatrix*l\ngamma gyromagnetic ratio \nG_i(t) input gradient signals\nendmatrix*","category":"page"},{"location":"mri-theory-informal/","page":"MRI Theory","title":"MRI Theory","text":"In the above expressions, we can see that the frequency of each spin can be manipulated by applying input gradient signals (or a gradient field). In practice, this gradient field is applied in the longitudinal axis hatz (but it is always dependent on the (xyz) position), which makes the spins able to resonate (or precess) at different Larmor frequencies after another input RF pulse excite them in the transverse direction. Both inputs, the gradient signal and the RF pulse, are part of the effective magnetic field vecB(t):","category":"page"},{"location":"mri-theory-informal/","page":"MRI Theory","title":"MRI Theory","text":"vecB(t) = \nbeginpmatrix\nB_1x(t) \nB_1y(t) \nG_x(t) x + G_y(t) y + G_z(t) z\nendpmatrix\n \nbeginmatrix*l\nB_1i(t) input RF pulse (transverse) \nG_i(t) input gradients (longitudinal)\nendmatrix*","category":"page"},{"location":"mri-theory-informal/","page":"MRI Theory","title":"MRI Theory","text":"It's important to highlight that the coil that senses the raw signal can only detects magnetization components oriented in the transverse direction. For this reason is necessary to apply the short RF signal orthogonally to the longitudinal hatz axe.","category":"page"},{"location":"mri-theory-informal/","page":"MRI Theory","title":"MRI Theory","text":"One of the primary concerns, to generate an image is to design proper input signals for the effective magnetic field vecB(t). In particular, by inspecting equation (1), it's possible to manipulate the spacial frequencies k_x(t), k_y(t) and k_z(t) by applying the gradients G_x(t), G_y(t) and G_z(t). Thus, we have information of the raw signal s(t) an the basis e^-j 2 pi k_x(t) x + k_y(t) y + k_z(t) z. Mathematically speaking, every sample of the raw signal is the Fourier transform of the magnetization m(xyz) for a specific point of the spacial frequency domain:","category":"page"},{"location":"mri-theory-informal/","page":"MRI Theory","title":"MRI Theory","text":"s(t) = Fourierm (k_x(t) k_y(t) k_z(t))","category":"page"},{"location":"mri-theory-informal/","page":"MRI Theory","title":"MRI Theory","text":"Therefore, to get the magnetization m(xyz) for all the points in the spacial domain its necessary to solve the inverse problem with enough points to cover the complete spacial frequency domain, which can be achieved by following a trajectory over time applying different gradient signals (i.e. a trajectory to complete the k-space).","category":"page"},{"location":"mri-theory-informal/#K-Space-and-Acquisition","page":"MRI Theory","title":"K-Space and Acquisition","text":"","category":"section"},{"location":"mri-theory-informal/","page":"MRI Theory","title":"MRI Theory","text":"Note that the trajectory to cover the k-space eventually can have any continuos shape, however it cannot fill the complete space. Furthermore, due to natural hardware restrictions, the continuos trajectory is sampled during the acquisition of the raw signal st. Thus, every discrete point of st represents a discrete point in the k-space.","category":"page"},{"location":"mri-theory-informal/","page":"MRI Theory","title":"MRI Theory","text":"Intuitively, it is desirable to get many points as possible and homogeneously distributed in the k-space. In particular, since the theory behind the raw signal generation is intimately related with the Fourier Transform, a natural way to cover the k-space is by taken a discrete mesh grid of points (trajectories and samples separated by small cubes). In this case, it is possible to apply Fourier theory to define the minimal k-space resolution (separation of the samples in the k-space) to set space dimensions (Field of Views) and prevent aliasing in the image, and define maximal limits in the k-space to set space resolution in the image.","category":"page"},{"location":"mri-theory-informal/","page":"MRI Theory","title":"MRI Theory","text":"underbrace\nDelta k_i\n_k-space resolution\nlongrightarrow\nunderbrace\nFOV_i\n_space width bounds ","category":"page"},{"location":"mri-theory-informal/","page":"MRI Theory","title":"MRI Theory","text":"underbrace\nW_k_i\n_k-space width bounds\nlongrightarrow\nunderbrace\nDelta i\n_space resolution ","category":"page"},{"location":"mri-theory-informal/","page":"MRI Theory","title":"MRI Theory","text":"forall i in x y z","category":"page"},{"location":"mri-theory-informal/","page":"MRI Theory","title":"MRI Theory","text":"Even though a mesh grid of discrete points is the natural way of thinking to cover the k-space, it is always possible possible to apply more exotic k-space trajectories, which could be helpful, for instance, to reduce the complete acquisition time. Keep in mind though, this fact must be regarded when solving the inverse problem for obtaining the image, for example by applying and interpolation function before taking the inverse Fourier Transform.","category":"page"},{"location":"mri-theory-informal/#Spin-Dynamics","page":"MRI Theory","title":"Spin Dynamics","text":"","category":"section"},{"location":"mri-theory-informal/","page":"MRI Theory","title":"MRI Theory","text":"It's important to point out that all the magnetization spins are independent from each other, so we could separate the phantom object into multiple spins and solve the Bloch Equations for every magnetization vector vecM independently:","category":"page"},{"location":"mri-theory-informal/","page":"MRI Theory","title":"MRI Theory","text":"fracmathrmd vecMmathrmd t =\n gamma vecM times vecB\n- fracM_x hatx + M_y hatyT_2\n- fracM_z hatx + M_0 hatyT_1","category":"page"},{"location":"mri-theory-informal/","page":"MRI Theory","title":"MRI Theory","text":"or:","category":"page"},{"location":"mri-theory-informal/","page":"MRI Theory","title":"MRI Theory","text":"beginalign tag2\n\nfracmathrmdmathrmdt vecM =\nunderbrace\ngamma\nbeginbmatrix\n 0 B_z -B_y \n-B_z 0 B_x \n B_y -B_x 0\nendbmatrix\nvecM\n_textrotation \n-\nunderbrace\nbeginbmatrix\ntfrac1T_2 0 0 \n0 tfrac1T_2 0 \n0 0 tfrac1T_1\nendbmatrix\nvecM\n_textrelaxation \n+\nunderbrace\nbeginbmatrix\n0 \n0 \ntfracM_0T_1\nendbmatrix\n_textsteady-state \n\nendalign","category":"page"},{"location":"mri-theory-informal/","page":"MRI Theory","title":"MRI Theory","text":"beginmatrix*l\ngamma gyromagnetic ratio \nT_2 transverse relaxation time constant \nT_1 longitudinal relaxation time constant\nendmatrix*","category":"page"},{"location":"mri-theory-informal/","page":"MRI Theory","title":"MRI Theory","text":"vecM(t) =\nbeginpmatrix\nM_x(t) \nM_y(t) \nM_z(t)\nendpmatrix\n \nvecB(t) = \nbeginpmatrix\nB_x(t) \nB_y(t) \nB_z(t)\nendpmatrix =\nbeginpmatrix\nB_1x(t) \nB_1y(t) \nG_x(t) x + G_y(t) y + G_z(t) z\nendpmatrix","category":"page"},{"location":"mri-theory-informal/","page":"MRI Theory","title":"MRI Theory","text":"beginmatrix*l\nB_1i(t) input RF pulse (transverse) \nG_i(t) input gradients (longitudinal)\nendmatrix*","category":"page"},{"location":"mri-theory-informal/","page":"MRI Theory","title":"MRI Theory","text":"Note that equation (2) can be separated into three parts:","category":"page"},{"location":"mri-theory-informal/","page":"MRI Theory","title":"MRI Theory","text":"Rotation: governed by the inputs RF pulse and gradient signals. It gives an initial excitation and the oscillatory behavior for different Larmor frequencies, respectively. \nRelaxation: gives the decay behavior (the magnetization envelope) after the excitation of the spins.\nSteady-State: spins points towards the longitudinal direction after a while.","category":"page"},{"location":"mri-theory-informal/","page":"MRI Theory","title":"MRI Theory","text":"Thus, to get the raw signal s(t) it's necessary to solve the Bloch equations (equation (2)) for every spin of the phantom object, then sum up the contributions of all of them and finally consider just the components of the transverse plane:","category":"page"},{"location":"mri-theory-informal/","page":"MRI Theory","title":"MRI Theory","text":"s(t) = s_xy(t)\n \ns_xy(t) = s_x(t) + j s_y(t)","category":"page"},{"location":"mri-theory-informal/","page":"MRI Theory","title":"MRI Theory","text":"beginpmatrix\ns_x(t) \ns_y(t) \ns_z(t)\nendpmatrix =\nint_x int_y int_z\nvecM(x y z t)\n mathrmdz mathrmdy mathrmdx","category":"page"},{"location":"docstrings/#API-Documentation","page":"API Documentation","title":"API Documentation","text":"","category":"section"},{"location":"docstrings/#dataflow-graph","page":"API Documentation","title":"Dataflow Graph","text":"","category":"section"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"(Image: )","category":"page"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"Pages = [\"docstrings.md\"]\nDepth = 3","category":"page"},{"location":"docstrings/#datatypes","page":"API Documentation","title":"DataTypes","text":"","category":"section"},{"location":"docstrings/#Mag","page":"API Documentation","title":"Mag","text":"","category":"section"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"Mag\nshow(::IO, ::Mag)\ngetproperty(::Vector{Mag}, ::Symbol)","category":"page"},{"location":"docstrings/#KomaMRICore.Mag","page":"API Documentation","title":"KomaMRICore.Mag","text":"mag = Mag(xy::Complex, z::Real)\n\nThe Magnetization struct.\n\nArguments\n\nxy: (::Complex{Float64}) magnetization of a spin in the xy plane\nz: (::Real) magnetization of a spin in the z plane\n\nReturns\n\nmag: (::Mag) Magnetization struct\n\n\n\n\n\n","category":"type"},{"location":"docstrings/#Phantom","page":"API Documentation","title":"Phantom","text":"","category":"section"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"Refer to API Documentation:","category":"page"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"KomaMRI.Phantom — Type\nKomaMRI.brain_phantom2D — Function\nKomaMRI.brain_phantom3D — Function","category":"page"},{"location":"docstrings/#Scanner","page":"API Documentation","title":"Scanner","text":"","category":"section"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"Refer to API Documentation:","category":"page"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"KomaMRI.Scanner — Type","category":"page"},{"location":"docstrings/#Sequence","page":"API Documentation","title":"Sequence","text":"","category":"section"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"Refer to API Documentation:","category":"page"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"KomaMRI.Sequence — Type","category":"page"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"show(::IO, ::Sequence)\nKomaMRI.is_ADC_on\nKomaMRI.is_RF_on\nKomaMRI.is_GR_on\nKomaMRI.is_Gx_on\nKomaMRI.is_Gy_on\nKomaMRI.is_Gz_on\nKomaMRI.is_Delay\nKomaMRI.durs(::Sequence)\ndur(::Sequence)\nKomaMRI.⏢\nKomaMRI.get_grads\nKomaMRI.get_rfs\nKomaMRI.get_flip_angles\nKomaMRI.get_ADC_on\nKomaMRI.get_kspace\nKomaMRI.get_RF_types\n\nKomaMRI.δ2N","category":"page"},{"location":"docstrings/#Base.show-Tuple{IO, Sequence}","page":"API Documentation","title":"Base.show","text":"str = show(io::IO, s::Sequence)\n\nDisplays information about the Sequence struct s in the julia REPL.\n\nArguments\n\ns: (::Sequence) Sequence struct\n\nReturns\n\nstr (::String) output string message\n\n\n\n\n\n","category":"method"},{"location":"docstrings/#KomaMRICore.is_ADC_on","page":"API Documentation","title":"KomaMRICore.is_ADC_on","text":"y = is_ADC_on(x::Sequence)\ny = is_ADC_on(x::Sequence, t::Union{Array{Float64,1}, Array{Float64,2}})\n\nTells if the sequence seq has elements with ADC active, or active during time t.\n\nArguments\n\nx: (::Sequence) sequence struct\nt: (::Union{Array{Float64,1}, Array{Float64,2}}, [s]) time to check\n\nReturns\n\ny: (::Bool) boolean that tells whether or not the ADC in the sequence is active\n\n\n\n\n\n","category":"function"},{"location":"docstrings/#KomaMRICore.is_RF_on","page":"API Documentation","title":"KomaMRICore.is_RF_on","text":"y = is_RF_on(x::Sequence)\ny = is_RF_on(x::Sequence, t::Vector{Float64})\n\nTells if the sequence seq has elements with RF active, or active during time t.\n\nArguments\n\nx: (::Sequence) Sequence struct\nt: (::Vector{Float64}, [s]) time to check\n\nReturns\n\ny: (::Bool) boolean that tells whether or not the RF in the sequence is active\n\n\n\n\n\n","category":"function"},{"location":"docstrings/#KomaMRICore.is_GR_on","page":"API Documentation","title":"KomaMRICore.is_GR_on","text":"y = is_GR_on(x::Sequence)\n\nTells if the sequence seq has elements with GR active.\n\nArguments\n\nx: (::Sequence) Sequence struct\n\nReturns\n\ny: (::Bool) boolean that tells whether or not the GR in the sequence is active\n\n\n\n\n\n","category":"function"},{"location":"docstrings/#KomaMRICore.dur-Tuple{Sequence}","page":"API Documentation","title":"KomaMRICore.dur","text":"T = dur(x::Sequence)\n\nThe total duration of the sequence in [s].\n\nArguments\n\nx: (::Sequence) Sequence struct\n\nReturns\n\nT: (::Real, [s]) total duration of the sequence\n\n\n\n\n\n","category":"method"},{"location":"docstrings/#KomaMRICore.get_flip_angles","page":"API Documentation","title":"KomaMRICore.get_flip_angles","text":"y = get_flip_angles(x::Sequence)\n\nReturns all the flip angles of the RF pulses in the sequence x.\n\nArguments\n\nx: (::Sequence) Sequence struct\n\nReturns\n\ny: (::Vector{Float64}, [deg]) flip angles\n\n\n\n\n\n","category":"function"},{"location":"docstrings/#KomaMRICore.get_kspace","page":"API Documentation","title":"KomaMRICore.get_kspace","text":"kspace, kspace_adc = get_kspace(seq::Sequence; Δt=1)\n\nOutputs the designed k-space trajectory of the Sequence seq.\n\nArguments\n\nseq: (::Sequence) Sequence struct\nΔt: (::Real, =1, [s]) nominal delta time separation between two time samples for ADC acquisition and Gradients\n\nReturns\n\nkspace: (3-column ::Matrix{Float64}) kspace\nkspace_adc: (3-column ::Matrix{Float64}) adc kspace\n\n\n\n\n\n","category":"function"},{"location":"docstrings/#Grad","page":"API Documentation","title":"Grad","text":"","category":"section"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"Refer to API Documentation:","category":"page"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"KomaMRI.Grad — Type\nKomaMRI.Grad(::Function, ::Real, ::Int64) — Method","category":"page"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"rotx\nroty\nrotz\nshow(::IO, ::Grad)\ngetproperty(::Vector{Grad}, ::Symbol)\ndur(::Grad)","category":"page"},{"location":"docstrings/#KomaMRICore.rotx","page":"API Documentation","title":"KomaMRICore.rotx","text":"Rx = rotx(θ::Real)\n\nRotates vector counter-clockwise with respect to the x-axis.\n\nArguments\n\nθ: (::Real, [rad]) rotation angle\n\nReturns\n\nRx: (::Matrix{Int64}) rotation matrix\n\n\n\n\n\n","category":"function"},{"location":"docstrings/#KomaMRICore.roty","page":"API Documentation","title":"KomaMRICore.roty","text":"Ry = roty(θ::Real)\n\nRotates vector counter-clockwise with respect to the y-axis.\n\nArguments\n\nθ: (::Real, [rad]) rotation angle\n\nReturns\n\nRy: (::Matrix{Int64}) rotation matrix\n\n\n\n\n\n","category":"function"},{"location":"docstrings/#KomaMRICore.rotz","page":"API Documentation","title":"KomaMRICore.rotz","text":"Rz = rotz(θ::Real)\n\nRotates vector counter-clockwise with respect to the z-axis.\n\nArguments\n\nθ: (::Real, [rad]) rotation angle\n\nReturns\n\nRz: (::Matrix{Int64}) rotation matrix\n\n\n\n\n\n","category":"function"},{"location":"docstrings/#Base.show-Tuple{IO, Grad}","page":"API Documentation","title":"Base.show","text":"str = show(io::IO, x::Grad)\n\nDisplays information about the Grad struct x in the julia REPL.\n\nArguments\n\nx: (::Grad) Grad struct\n\nReturns\n\nstr (::String) output string message\n\n\n\n\n\n","category":"method"},{"location":"docstrings/#Base.getproperty-Tuple{Vector{Grad}, Symbol}","page":"API Documentation","title":"Base.getproperty","text":"y = getproperty(x::Vector{Grad}, f::Symbol)\ny = getproperty(x::Matrix{Grad}, f::Symbol)\n\nOverloads Base.getproperty(). It is meant to access properties of the Grad vector x directly without the need to iterate elementwise.\n\nArguments\n\nx: (::Vector{Grad} or ::Matrix{Grad}) vector or matrix of Grad structs\nf: (::Symbol, opts: [:x, :y, :z, :T, :delay, :rise, :delay, :dur, :A, f]) input symbol that represents a property of the vector or matrix of Grad structs\n\nReturns\n\ny: (::Vector{Any} or ::Matrix{Any}) vector or matrix with the property defined by the symbol f for all elements of the Grad vector or matrix x\n\n\n\n\n\n","category":"method"},{"location":"docstrings/#KomaMRICore.dur-Tuple{Grad}","page":"API Documentation","title":"KomaMRICore.dur","text":"y = dur(x::Grad)\ny = dur(x::Vector{Grad})\n\nDuration time in [s] of Grad struct or Grad array. When the input is a gradient vector, then the duration is the maximum duration of all the elements of the gradient vector.\n\nArguments\n\nx: (::Grad or ::Vector{Grad}) RF struct or RF array\n\nReturns\n\ny: (::Float64, [s]) duration of the RF struct or RF array\n\n\n\n\n\n","category":"method"},{"location":"docstrings/#RF","page":"API Documentation","title":"RF","text":"","category":"section"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"Refer to API Documentation:","category":"page"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"KomaMRI.RF — Type","category":"page"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"Spinor\nshow(::IO,::Spinor)\n*(::Spinor, ::Spinor)\nRz\nRy\nRx\nKomaMRI.Rg\nKomaMRI.Rφ\nQ\nabs(::Spinor)\n\nshow(::IO, ::RF)\ngetproperty(::Vector{RF}, ::Symbol)\ndur(::RF)\nKomaMRI.RF_fun\nKomaMRI.get_flip_angle\nKomaMRI.get_RF_center","category":"page"},{"location":"docstrings/#KomaMRICore.Spinor","page":"API Documentation","title":"KomaMRICore.Spinor","text":"spinor = Spinor(α, β)\n\nSpinor(α, β) with Cayley-Klein parameters α and β. Based on \"Introduction to the Shinnar-Le Roux algorithm\", Patrick Le Roux (1995). A spinor is a way to represent 3D rotations, the underlying representation is a 2 X 2 complex unitary matrix (alphabetainmathbbC):\n\nR=leftbeginarraycc\nalpha -beta^*\nbeta alpha^*\nendarrayright\n\nwith alpha^2+beta^2 = 1.\n\nThis later operates on the 2times2 representation of (xyz) as follows V^+ = R V R^*.\n\nArguments\n\nα: (::Complex{Float64}) Cayley-Klein parameter α\nβ: (::Complex{Float64}) Cayley-Klein parameter β\n\nReturns\n\nspinor: (::Spinor) Spinor struct\n\n\n\n\n\n","category":"type"},{"location":"docstrings/#Base.show-Tuple{IO, Spinor}","page":"API Documentation","title":"Base.show","text":"str = show(io::IO, s::Spinor)\n\nDisplays the spinor parameters in the julia REPL.\n\nArguments\n\ns: (::Spinor) Spinor struct\n\nReturns\n\nstr: (::String) output string message\n\n\n\n\n\n","category":"method"},{"location":"docstrings/#Base.:*-Tuple{Spinor, Spinor}","page":"API Documentation","title":"Base.:*","text":"s = *(s1::Spinor, s2::Spinor)\n\nSpinor multiplication identity: (α1,β1)×(α2,β2) = (α1 α2 - β2⋆ β1 , β2 α1 + α2⋆ β1)\n\nArguments\n\ns1: (::Spinor) first spinor struct\ns2: (::Spinor) second spinor struct\n\nReturns\n\ns: (::Spinor) multiplication spinnor identity result\n\n\n\n\n\n","category":"method"},{"location":"docstrings/#KomaMRICore.Rz","page":"API Documentation","title":"KomaMRICore.Rz","text":"s = Rz(φ)\n\nSpinor clockwise rotation matrix with angle φ with respect to z-axis.\n\nArguments\n\nφ: (::Real, [rad]) angle with respect to z-axis\n\nReturns\n\ns: (::Spinor) spinnor struct that represents the Rz rotation matrix\n\n\n\n\n\n","category":"function"},{"location":"docstrings/#KomaMRICore.Ry","page":"API Documentation","title":"KomaMRICore.Ry","text":"s = Ry(θ)\n\nSpinor clockwise rotation matrix with angle θ with respect to y-axis.\n\nArguments\n\nθ: (::Real, [rad]) angle with respect to y-axis\n\nReturns\n\ns: (::Spinor) spinor struct that represents the Ry rotation matrix\n\n\n\n\n\n","category":"function"},{"location":"docstrings/#KomaMRICore.Rx","page":"API Documentation","title":"KomaMRICore.Rx","text":"s = Rx(θ)\n\nSpinor clockwise rotation matrix with angle θ with respect to x-axis.\n\nArguments\n\nθ: (::Real, [rad]) angle with respect to x-axis\n\nReturns\n\ns: (::Spinor) spinor struct that represents the Rx rotation matrix\n\n\n\n\n\n","category":"function"},{"location":"docstrings/#KomaMRICore.Q","page":"API Documentation","title":"KomaMRICore.Q","text":"s = Q(φ, nxy, nz)\n\nSpinor rotation matrix. Rotation of φ with respect to the axis of rotation n=(nx, ny, nz).\n\nPauly, J., Le Roux, P., Nishimura, D., & Macovski, A. (1991). Parameter relations for the Shinnar-Le Roux selective excitation pulse design algorithm (NMR imaging). IEEE Transactions on Medical Imaging, 10(1), 53-65. doi:10.1109/42.75611\n\nvarphi=-gammaDelta tsqrtleftB_1right^2+left(boldsymbolGcdotboldsymbolx\nright)^2=-gammaDelta tleftVert boldsymbolBrightVert\n\nboldsymboln=boldsymbolBleftVert boldsymbolBrightVert\n\nArguments\n\nφ: (::Real, [rad]) φ angle\nnxy: (::Real) nxy factor\nnz: (::Real) nz factor\n\nReturns\n\ns: (::Spinor) spinnor struct that represents the Q rotation matrix\n\n\n\n\n\n","category":"function"},{"location":"docstrings/#Base.abs-Tuple{Spinor}","page":"API Documentation","title":"Base.abs","text":"y = abs(s::Spinor)\n\nIt calculates |α|^2 + |β|^2 of the Cayley-Klein parameters.\n\nArguments\n\ns: (::Spinor) spinnor struct\n\nReturns\n\ny: (::Real) result of the abs operator\n\n\n\n\n\n","category":"method"},{"location":"docstrings/#Base.show-Tuple{IO, RF}","page":"API Documentation","title":"Base.show","text":"str = show(io::IO, x::RF)\n\nDisplays information about the RF struct x in the julia REPL.\n\nArguments\n\nx: (::RF) RF struct\n\nReturns\n\nstr: (::String) output string message\n\n\n\n\n\n","category":"method"},{"location":"docstrings/#Base.getproperty-Tuple{Vector{RF}, Symbol}","page":"API Documentation","title":"Base.getproperty","text":"y = getproperty(x::Vector{RF}, f::Symbol)\ny = getproperty(x::Matrix{RF}, f::Symbol)\n\nOverloads Base.getproperty(). It is meant to access properties of the RF vector x directly without the need to iterate elementwise.\n\nArguments\n\nx: (::Vector{RF} or ::Matrix{RF}) vector or matrix of RF structs\nf: (::Symbol, opts: [:A, :Bx, :By, :T, :Δf, :delay and :dur]) input symbol that represents a property of the vector or matrix of RF structs\n\nReturns\n\ny: (::Vector{Any} or ::Matrix{Any}) vector with the property defined by the symbol f for all elements of the RF vector or matrix x\n\n\n\n\n\n","category":"method"},{"location":"docstrings/#KomaMRICore.dur-Tuple{RF}","page":"API Documentation","title":"KomaMRICore.dur","text":"y = dur(x::RF)\ny = dur(x::Array{RF,1})\ny = dur(x::Array{RF,2})\n\nDuration time in [s] of RF struct or RF array.\n\nArguments\n\nx: (::RF or ::Array{RF,1} or ::Array{RF,2}) RF struct or RF array\n\nReturns\n\ny: (::Float64, [s]) duration of the RF struct or RF array\n\n\n\n\n\n","category":"method"},{"location":"docstrings/#ADC","page":"API Documentation","title":"ADC","text":"","category":"section"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"Refer to API Documentation:","category":"page"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"KomaMRI.ADC — Type","category":"page"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"getproperty(::Vector{ADC}, ::Symbol)\nKomaMRI.get_adc_sampling_times\nKomaMRI.get_adc_phase_compensation","category":"page"},{"location":"docstrings/#Base.getproperty-Tuple{Vector{ADC}, Symbol}","page":"API Documentation","title":"Base.getproperty","text":"y = getproperty(x::Vector{ADC}, f::Symbol)\n\nOverloads Base.getproperty(). It is meant to access properties of the ADC vector x directly without the need to iterate elementwise.\n\nArguments\n\nx: (::Vector{ADC}) vector of ADC structs\nf: (::Symbol, opts: [:N, :T, :delay, :Δf, :ϕ, :dur]) input symbol that represents a property of the ADC structs\n\nReturns\n\ny: (::Vector{Any}) vector with the property defined by the f for all elements of the ADC vector x\n\n\n\n\n\n","category":"method"},{"location":"docstrings/#Delay","page":"API Documentation","title":"Delay","text":"","category":"section"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"Refer to API Documentation:","category":"page"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"KomaMRI.Delay — Type","category":"page"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"show(::IO, ::Delay)\n+(::Sequence, ::Delay)","category":"page"},{"location":"docstrings/#Base.show-Tuple{IO, Delay}","page":"API Documentation","title":"Base.show","text":"str = show(io::IO, s::Delay)\n\nDisplays the delay time in m[s] of the delay struct s in the julia REPL.\n\nArguments\n\ns: (::Delay) delay struct\n\nReturns\n\nstr: (::String) output string message\n\n\n\n\n\n","category":"method"},{"location":"docstrings/#Base.:+-Tuple{Sequence, Delay}","page":"API Documentation","title":"Base.:+","text":"seq = +(s::Sequence, d::Delay)\nseq = +(d::Delay, s::Sequence)\n\nAdd a delay to sequence struct. It ultimately affects to the duration of the gradients of a sequence.\n\nArguments\n\ns: (::Sequence) sequence struct\nd: (::Delay) delay struct\n\nReturns\n\nseq: (::Sequence) delayed sequence\n\n\n\n\n\n","category":"method"},{"location":"docstrings/#pulseq","page":"API Documentation","title":"Pulseq.jl","text":"","category":"section"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"Refer to API Documentation:","category":"page"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"KomaMRI.read_seq — Function","category":"page"},{"location":"docstrings/#read_Grad","page":"API Documentation","title":"read_Grad","text":"","category":"section"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"KomaMRI.read_Grad","category":"page"},{"location":"docstrings/#read_RF","page":"API Documentation","title":"read_RF","text":"","category":"section"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"KomaMRI.read_RF","category":"page"},{"location":"docstrings/#read_ADC","page":"API Documentation","title":"read_ADC","text":"","category":"section"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"KomaMRI.read_ADC","category":"page"},{"location":"docstrings/#get_block","page":"API Documentation","title":"get_block","text":"","category":"section"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"KomaMRI.get_block","category":"page"},{"location":"docstrings/#jemris","page":"API Documentation","title":"JEMRIS.jl","text":"","category":"section"},{"location":"docstrings/#read_phantom_jemris","page":"API Documentation","title":"read_phantom_jemris","text":"","category":"section"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"Refer to API Documentation:","category":"page"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"KomaMRI.read_phantom_jemris — Function","category":"page"},{"location":"docstrings/#ismrmrd","page":"API Documentation","title":"ISMRMRD.jl","text":"","category":"section"},{"location":"docstrings/#signal_to_raw_data","page":"API Documentation","title":"signal_to_raw_data","text":"","category":"section"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"Refer to API Documentation:","category":"page"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"KomaMRI.signal_to_raw_data — Function","category":"page"},{"location":"docstrings/#pulse-designer","page":"API Documentation","title":"PulseDesigner.jl","text":"","category":"section"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"Refer to API Documentation:","category":"page"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"KomaMRI.PulseDesigner — Function\nKomaMRI.PulseDesigner.RF_hard — Function\nKomaMRI.PulseDesigner.EPI — Function\nKomaMRI.PulseDesigner.radial_base — Function","category":"page"},{"location":"docstrings/#key-values-calculation","page":"API Documentation","title":"KeyValuesCalculation.jl","text":"","category":"section"},{"location":"docstrings/#get_theo_A","page":"API Documentation","title":"get_theo_A","text":"","category":"section"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"KomaMRI.get_theo_A","category":"page"},{"location":"docstrings/#get_theo_t","page":"API Documentation","title":"get_theo_t","text":"","category":"section"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"KomaMRI.get_theo_t","category":"page"},{"location":"docstrings/#get_theo_Gi","page":"API Documentation","title":"get_theo_Gi","text":"","category":"section"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"KomaMRI.get_theo_Gi","category":"page"},{"location":"docstrings/#trapezoidal-integration","page":"API Documentation","title":"TrapezoidalIntegration.jl","text":"","category":"section"},{"location":"docstrings/#trapz","page":"API Documentation","title":"trapz","text":"","category":"section"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"KomaMRI.trapz","category":"page"},{"location":"docstrings/#cumtrapz","page":"API Documentation","title":"cumtrapz","text":"","category":"section"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"KomaMRI.cumtrapz","category":"page"},{"location":"docstrings/#time-step-calculation","page":"API Documentation","title":"TimeStepCalculation.jl","text":"","category":"section"},{"location":"docstrings/#points_from_key_times","page":"API Documentation","title":"points_from_key_times","text":"","category":"section"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"KomaMRI.points_from_key_times","category":"page"},{"location":"docstrings/#get_variable_times","page":"API Documentation","title":"get_variable_times","text":"","category":"section"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"KomaMRI.get_variable_times","category":"page"},{"location":"docstrings/#get_uniform_times","page":"API Documentation","title":"get_uniform_times","text":"","category":"section"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"KomaMRI.get_uniform_times","category":"page"},{"location":"docstrings/#kfoldperm","page":"API Documentation","title":"kfoldperm","text":"","category":"section"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"KomaMRI.kfoldperm","category":"page"},{"location":"docstrings/#get_breaks_in_RF_key_points","page":"API Documentation","title":"get_breaks_in_RF_key_points","text":"","category":"section"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"KomaMRI.get_breaks_in_RF_key_points","category":"page"},{"location":"docstrings/#simulation-core","page":"API Documentation","title":"SimulationCore.jl","text":"","category":"section"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"Refer to API Documentation:","category":"page"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"KomaMRI.simulate — Function\nKomaMRI.simulate_slice_profile — Function","category":"page"},{"location":"docstrings/#print_gpus","page":"API Documentation","title":"print_gpus","text":"","category":"section"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"KomaMRI.print_gpus","category":"page"},{"location":"docstrings/#run_spin_precession","page":"API Documentation","title":"run_spin_precession","text":"","category":"section"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"KomaMRI.run_spin_precession","category":"page"},{"location":"docstrings/#run_spin_precession_parallel","page":"API Documentation","title":"run_spin_precession_parallel","text":"","category":"section"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"KomaMRI.run_spin_precession_parallel","category":"page"},{"location":"docstrings/#run_spin_excitation","page":"API Documentation","title":"run_spin_excitation","text":"","category":"section"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"KomaMRI.run_spin_excitation","category":"page"},{"location":"docstrings/#run_spin_excitation_parallel","page":"API Documentation","title":"run_spin_excitation_parallel","text":"","category":"section"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"KomaMRI.run_spin_excitation_parallel","category":"page"},{"location":"docstrings/#run_sim_time_iter","page":"API Documentation","title":"run_sim_time_iter","text":"","category":"section"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"KomaMRI.run_sim_time_iter","category":"page"},{"location":"docstrings/#display-functions","page":"API Documentation","title":"DisplayFunctions.jl","text":"","category":"section"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"Refer to API Documentation:","category":"page"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"KomaMRI.plot_seq — Function\nKomaMRI.plot_image — Function\nplot_kspace — Function\nplot_M0 — Function\nplot_phantom_map — Function\nplot_signal — Function","category":"page"},{"location":"docstrings/#theme_chooser","page":"API Documentation","title":"theme_chooser","text":"","category":"section"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"KomaMRI.theme_chooser","category":"page"},{"location":"docstrings/#interp_map","page":"API Documentation","title":"interp_map","text":"","category":"section"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"KomaMRI.interp_map","category":"page"},{"location":"docstrings/#plot_dict","page":"API Documentation","title":"plot_dict","text":"","category":"section"},{"location":"docstrings/","page":"API Documentation","title":"API Documentation","text":"KomaMRI.plot_dict","category":"page"},{"location":"docstrings/#KomaMRIPlots.plot_dict","page":"API Documentation","title":"KomaMRIPlots.plot_dict","text":"str = plot_dict(dict::Dict)\n\nGenerates an HTML table based on the dictionary dict.\n\nArguments\n\ndict: (::Dict) dictionary\n\nReturns\n\nstr: (::String) dictionary as an HTML table\n\n\n\n\n\n","category":"function"},{"location":"getting-started/#Getting-Started","page":"Getting Started","title":"Getting Started","text":"","category":"section"},{"location":"getting-started/#Installing-Julia","page":"Getting Started","title":"Installing Julia","text":"","category":"section"},{"location":"getting-started/","page":"Getting Started","title":"Getting Started","text":"KomaMRI was written in Julia, so the first thing you should do is to install it! The latest version of Julia can be downloaded at the Julia Downloads page. It is advisable you add julia to the PATH, which can be done during the installation process.","category":"page"},{"location":"getting-started/#Installing-KomaMRI","page":"Getting Started","title":"Installing KomaMRI","text":"","category":"section"},{"location":"getting-started/","page":"Getting Started","title":"Getting Started","text":"Once Julia is installed, open the Julia REPL, and add the KomaMRI package by typing the following commands:","category":"page"},{"location":"getting-started/","page":"Getting Started","title":"Getting Started","text":"Press the ] key and then press enter to bring up Julia's package manager.\nType add KomaMRI and then press enter in the package manager session.","category":"page"},{"location":"getting-started/","page":"Getting Started","title":"Getting Started","text":"This process should take about 5 minutes in a fresh Julia installation. Here is how it looks in the Julia REPL:","category":"page"},{"location":"getting-started/","page":"Getting Started","title":"Getting Started","text":"julia> ]\n\n(@v1.9) pkg> add KomaMRI","category":"page"},{"location":"getting-started/","page":"Getting Started","title":"Getting Started","text":"Then press Ctrl+C or backspace to return to the julia> prompt.","category":"page"},{"location":"getting-started/","page":"Getting Started","title":"Getting Started","text":"","category":"page"},{"location":"getting-started/#My-First-MRI-Simulation","page":"Getting Started","title":"My First MRI Simulation","text":"","category":"section"},{"location":"getting-started/","page":"Getting Started","title":"Getting Started","text":"For our first simulation we will use KomaMRI's graphical user interface (GUI). For this, you will first need to load KomaMRI by typing using KomaMRI, and then launch the GUI with KomaUI().","category":"page"},{"location":"getting-started/","page":"Getting Started","title":"Getting Started","text":"julia> using KomaMRI\n\njulia> KomaUI()","category":"page"},{"location":"getting-started/","page":"Getting Started","title":"Getting Started","text":"The first time you use this command it may take more time than usual, but a window with the Koma GUI will pop up:","category":"page"},{"location":"getting-started/","page":"Getting Started","title":"Getting Started","text":"(Image: )","category":"page"},{"location":"getting-started/","page":"Getting Started","title":"Getting Started","text":"The user interface has some basic definitions for the scanner, phantom, and sequence already preloaded. So you can immediately interact with the simulation and reconstruction processes, and then visualize the results.","category":"page"},{"location":"getting-started/","page":"Getting Started","title":"Getting Started","text":"As a simple demonstration, press the Simulate! button and wait until the simulation is ready. Now you have acquired the Raw Signal and you should see the following:","category":"page"},{"location":"getting-started/","page":"Getting Started","title":"Getting Started","text":"(Image: )","category":"page"},{"location":"getting-started/","page":"Getting Started","title":"Getting Started","text":"Then, press the Reconstruct! button and wait until the reconstruction ends. Now you have reconstructed an Image from the Raw Signal and you should see the following in the GUI:","category":"page"},{"location":"getting-started/","page":"Getting Started","title":"Getting Started","text":"(Image: )","category":"page"},{"location":"getting-started/","page":"Getting Started","title":"Getting Started","text":"Congratulations, you successfully simulated an MRI acquisition! 🎊","category":"page"},{"location":"generated/examples/02-SmallTipApproximation/","page":"Small Tip Angle Approximation","title":"Small Tip Angle Approximation","text":"EditURL = \"../../../../examples/literate/examples/02-SmallTipApproximation.jl\"","category":"page"},{"location":"generated/examples/02-SmallTipApproximation/#Small-Tip-Angle-Approximation","page":"Small Tip Angle Approximation","title":"Small Tip Angle Approximation","text":"","category":"section"},{"location":"generated/examples/02-SmallTipApproximation/","page":"Small Tip Angle Approximation","title":"Small Tip Angle Approximation","text":"(Image: ) (Image: )","category":"page"},{"location":"generated/examples/02-SmallTipApproximation/","page":"Small Tip Angle Approximation","title":"Small Tip Angle Approximation","text":"Based on the results in page 41 of the book \"Handbook of MRI Pulse Sequences\" by Bernstein et al.","category":"page"},{"location":"generated/examples/02-SmallTipApproximation/","page":"Small Tip Angle Approximation","title":"Small Tip Angle Approximation","text":"using KomaMRI # hide\nsys = Scanner() # hide\nsys.Smax = 50 # hide","category":"page"},{"location":"generated/examples/02-SmallTipApproximation/","page":"Small Tip Angle Approximation","title":"Small Tip Angle Approximation","text":"In this example, we will showcase a common approximation in MRI, the small tip angle approximation. For this, we will simulate a slice profile for spins with positions zin-22mathrmcm and with a gradient G_z so their frequencies are mapped to fin-55mathrmkHz. To start, we define an RF pulse with a flip angle of 30 deg and pulse duration of T_mathrmrf=32mathrmms.","category":"page"},{"location":"generated/examples/02-SmallTipApproximation/","page":"Small Tip Angle Approximation","title":"Small Tip Angle Approximation","text":"B1 = 4.92e-6\nTrf = 3.2e-3\nzmax = 2e-2\nfmax = 5e3\nz = range(-zmax, zmax, 400)\nGz = fmax / (γ * zmax)\nf = γ * Gz * z # hide","category":"page"},{"location":"generated/examples/02-SmallTipApproximation/","page":"Small Tip Angle Approximation","title":"Small Tip Angle Approximation","text":"The designed RF pulse is presented in the figure below, where the additional gradient refocuses the spins' phase after the excitation.","category":"page"},{"location":"generated/examples/02-SmallTipApproximation/","page":"Small Tip Angle Approximation","title":"Small Tip Angle Approximation","text":"seq = PulseDesigner.RF_sinc(B1, Trf, sys; G=[0;0;Gz], TBP=8)\np2 = plot_seq(seq; max_rf_samples=Inf, slider=false)\nsavefig(p2, \"../../assets/examples/42-seq.html\") # hide","category":"page"},{"location":"generated/examples/02-SmallTipApproximation/","page":"Small Tip Angle Approximation","title":"Small Tip Angle Approximation","text":"","category":"page"},{"location":"generated/examples/02-SmallTipApproximation/","page":"Small Tip Angle Approximation","title":"Small Tip Angle Approximation","text":"Now we will perform the simulation using the function simulate_slice_profile. Note that we modified Δt_rf in sim_params to match the resolution of the waveform.","category":"page"},{"location":"generated/examples/02-SmallTipApproximation/","page":"Small Tip Angle Approximation","title":"Small Tip Angle Approximation","text":"sim_params = Dict{String, Any}(\"Δt_rf\" => Trf / length(seq.RF.A[1]))\nM = simulate_slice_profile(seq; z, sim_params)\n\nusing PlotlyJS # hide\ns1 = scatter(x=f, y=real.(M.xy), name=\"Mx\") # hide\ns2 = scatter(x=f, y=imag.(M.xy), name=\"My\") # hide\ndat = seq.RF.A[1] # hide\nN = length(dat) # hide\ndat_pad = [zeros(floor(Int64,N)); dat; zeros(floor(Int64,N))] # hide\nN_pad = length(dat_pad) # hide\nU = 1 / (Trf) * N / N_pad #hide\nu = range(0, (N_pad - 1) * U; step=U) # hide\nu = u .- maximum(u) / 2 .- U/2 # hide\nFT_dat_pad = abs.(KomaMRI.fftc(dat_pad; dims=1)) # hide\nscale_factor = maximum(abs.(M.xy)) / maximum(FT_dat_pad) # hide\ns3 = scatter(x=u, y=FT_dat_pad*scale_factor, name=\"|FT(B₁(t))|\", line=attr(dash=\"dash\")) # hide\npb = plot([s1,s2,s3], Layout(title=\"30 deg SINC pulse (TBP=8, Hamming)\", xaxis_title=\"Frequency [Hz]\", xaxis_range=[-fmax,fmax])) # hide\nsavefig(pb, \"../../assets/examples/4b-profile.html\") # hide","category":"page"},{"location":"generated/examples/02-SmallTipApproximation/","page":"Small Tip Angle Approximation","title":"Small Tip Angle Approximation","text":"This produces the following slice profile:","category":"page"},{"location":"generated/examples/02-SmallTipApproximation/","page":"Small Tip Angle Approximation","title":"Small Tip Angle Approximation","text":"","category":"page"},{"location":"generated/examples/02-SmallTipApproximation/","page":"Small Tip Angle Approximation","title":"Small Tip Angle Approximation","text":"As you can see, for a flip angle of 30 deg, the slice profile is very close to the small tip angle approximation (the Fourier transform of B_1(t)).","category":"page"},{"location":"generated/examples/02-SmallTipApproximation/","page":"Small Tip Angle Approximation","title":"Small Tip Angle Approximation","text":"But what will happen if we use a flip angle of 120 deg instead?","category":"page"},{"location":"generated/examples/02-SmallTipApproximation/","page":"Small Tip Angle Approximation","title":"Small Tip Angle Approximation","text":"α_desired = 120 + 0im # The multiplication of a complex number scales the RF pulse of a Sequence\nα = get_flip_angles(seq)[1] # Previous FA approx 30 deg\nseq = (α_desired / α) * seq # Scaling the pulse to have a flip angle of 120\nM = simulate_slice_profile(seq; z, sim_params)\n\ns1 = scatter(x=f, y=abs.(M.xy), name=\"|Mxy|\") # hide\ndat = seq.RF.A[1] # hide\nN = length(dat) # hide\ndat_pad = [zeros(floor(Int64,N)); dat; zeros(floor(Int64,N))] # hide\nN_pad = length(dat_pad) # hide\nU = 1 / (Trf) * N / N_pad #hide\nu = range(0, (N_pad - 1) * U; step=U) # hide\nu = u .- maximum(u) / 2 .- U/2 # hide\nFT_dat_pad = abs.(KomaMRI.fftc(dat_pad; dims=1)) # hide\nscale_factor = maximum(abs.(M.xy)) / maximum(FT_dat_pad) # hide\ns2 = scatter(x=u, y=FT_dat_pad*scale_factor, name=\"|FT(B₁(t))|\", line=attr(dash=\"dash\")) # hide\npa = plot([s1,s2], Layout(title=\"120 deg SINC pulse (TBP=8, Hamming)\", xaxis_title=\"Frequency [Hz]\", xaxis_range=[-fmax,fmax])) # hide\nsavefig(pa, \"../../assets/examples/4a-profile.html\") # hide","category":"page"},{"location":"generated/examples/02-SmallTipApproximation/","page":"Small Tip Angle Approximation","title":"Small Tip Angle Approximation","text":"","category":"page"},{"location":"generated/examples/02-SmallTipApproximation/","page":"Small Tip Angle Approximation","title":"Small Tip Angle Approximation","text":"For this case, the small tip angle approximation breaks 😢, thus, the reason for its name!","category":"page"},{"location":"generated/examples/02-SmallTipApproximation/","page":"Small Tip Angle Approximation","title":"Small Tip Angle Approximation","text":"This basic sinc pulse is not designed to be B_1-insensitive. Some adiabatic RF pulses have been proposed to achieve this. Watch out for a future example showing these adiabatic RF pulses 👀.","category":"page"},{"location":"generated/examples/02-SmallTipApproximation/","page":"Small Tip Angle Approximation","title":"Small Tip Angle Approximation","text":"","category":"page"},{"location":"generated/examples/02-SmallTipApproximation/","page":"Small Tip Angle Approximation","title":"Small Tip Angle Approximation","text":"This page was generated using Literate.jl.","category":"page"},{"location":"create-your-own-sequence/#Create-Your-Own-Sequence","page":"Create Your Own Sequence","title":"Create Your Own Sequence","text":"","category":"section"},{"location":"create-your-own-sequence/","page":"Create Your Own Sequence","title":"Create Your Own Sequence","text":"warning: Warning\nThis section is currently under construction, and some details on how to construct a Sequence may be missing.","category":"page"},{"location":"create-your-own-sequence/","page":"Create Your Own Sequence","title":"Create Your Own Sequence","text":"This is an example of how to create a Sequence struct:","category":"page"},{"location":"create-your-own-sequence/","page":"Create Your Own Sequence","title":"Create Your Own Sequence","text":"# Export necessary modules\nusing KomaMRI\n\n# Create the function that creates a phantom\nfunction sequence_example(FOV::Real, N::Integer)\n\n # Define initial paramters (TODO: consider when N is even)\n sys = Scanner()\n\tΔt = sys.ADC_Δt\n\tGmax = sys.Gmax\n\tNx = Ny = N #Square acquisition\n\tΔx = FOV/(Nx-1)\n\tTa = Δt*(Nx-1) #4-8 us\n Δτ = Ta/(Ny-1)\n\tGa = 1/(γ*Δt*FOV)\n\tζ = Ga / sys.Smax\n\tGa ≥ sys.Gmax ? error(\"Ga=$(Ga*1e3) mT/m exceeds Gmax=$(Gmax*1e3) mT/m, increase Δt to at least Δt_min=\"\n\t*string(round(1/(γ*Gmax*FOV),digits=2))*\" us.\") : 0\n\tϵ1 = Δτ/(Δτ+ζ)\n\n\t# EPI base\n\tEPI = Sequence(vcat(\n\t [mod(i,2)==0 ? Grad(Ga*(-1)^(i/2),Ta,ζ) : Grad(0.,Δτ,ζ) for i=0:2*Ny-2], #Gx\n\t \t[mod(i,2)==1 ? ϵ1*Grad(Ga,Δτ,ζ) : Grad(0.,Ta,ζ) for i=0:2*Ny-2])) #Gy\n\tEPI.ADC = [mod(i,2)==1 ? ADC(0,Δτ,ζ) : ADC(N,Ta,ζ) for i=0:2*Ny-2]\n\n\t# Pre-wind and wind gradients\n\tϵ2 = Ta/(Ta+ζ)\n PHASE = Sequence(reshape(1/2*[Grad( -Ga, Ta, ζ); ϵ2*Grad(-Ga, Ta, ζ)],:,1)) # This needs to be calculated differently\n\tDEPHASE = Sequence(reshape(1/2*[Grad((-1)^N*Ga, Ta, ζ); ϵ2*Grad(-Ga, Ta, ζ)],:,1)) # for even N\n\tseq = PHASE + EPI + DEPHASE\n\n\t# Saving parameters\n\tseq.DEF = Dict(\"Nx\"=>Nx,\"Ny\"=>Ny,\"Nz\"=>1,\"Name\"=>\"epi\")\n\n # Return the sequence\n\treturn seq\nend\n\n# Call the function to create a sequence\nFOV, N = 23e-2, 101\nseq = sequence_example(FOV, N)\n\n# Plot the sequence in time and its kspace\nplot_seq(seq; range=[0 30])\nplot_kspace(seq)","category":"page"},{"location":"create-your-own-sequence/","page":"Create Your Own Sequence","title":"Create Your Own Sequence","text":"","category":"page"},{"location":"sequence/#Sequence","page":"Sequence","title":"Sequence","text":"","category":"section"},{"location":"sequence/","page":"Sequence","title":"Sequence","text":"This section delves into some details about how a sequence is constructed. The sequence definition in KomaMRI is strongly related to the Pulseq definition. After reading this section, you should be able to create your own Sequence structs for conducting custom simulations using the KomaMRI package.","category":"page"},{"location":"sequence/#Sequence-Overview","page":"Sequence","title":"Sequence Overview","text":"","category":"section"},{"location":"sequence/","page":"Sequence","title":"Sequence","text":"Let's introduce the following simple sequence figure to expand from a visual example to a more general sequence definition:","category":"page"},{"location":"sequence/","page":"Sequence","title":"Sequence","text":"

    ","category":"page"},{"location":"sequence/","page":"Sequence","title":"Sequence","text":"A sequence can be thought of as an ordered concatenation of blocks over time. Each block is essentially a sequence with a length of 1. Every block consists of an RF pulse, the (xyz) gradients, and the acquisition of samples. Each block also has an associated time duration. To simplify, we will refer to these components as follows:","category":"page"},{"location":"sequence/","page":"Sequence","title":"Sequence","text":"beginmatrix*l\ntextseqi textblock i of the sequence \ntextseqRFi textRF pulse at the i block \ntextseqGRxi textgradient x at the i block \ntextseqGRyi textgradient y at the i block \ntextseqGRzi textgradient z at the i block \ntextseqADCi textacquisition at the i block \ntextseqDURi textduration at the i block\nendmatrix*","category":"page"},{"location":"sequence/","page":"Sequence","title":"Sequence","text":"The best way to understand the Sequence struct in KomaMRI is by examining the source code where this struct is defined:","category":"page"},{"location":"sequence/","page":"Sequence","title":"Sequence","text":"mutable struct Sequence\n GR::Array{Grad,2}\n RF::Array{RF,2}\n ADC::Array{ADC,1}\n DUR::Array{Any,1}\n DEF::Dict{String,Any}\nend","category":"page"},{"location":"sequence/","page":"Sequence","title":"Sequence","text":"As you can see, a Sequence struct contains 5 field names: ''DEF'' contains information for reconstruction steps (so it is not mandatory to fill it), ''DUR'' is a vector that contains the time durations of each block, ''ADC'' is also a vector with the acquisition samples for every block (an vector of ADC structs), ''GR'' is a 2D matrix which 3 rows representing the x-y-z gradients and columns having the samples of each block (a matrix of Grad structs) and ''RF'' is also a 2D matrix where each row represents a different coil and the columns are for different block samples too (a matrix of RF structs). The RF, Grad and ADC are MRI events that will be explained in the section Events Definitions.","category":"page"},{"location":"sequence/","page":"Sequence","title":"Sequence","text":"warning: Warning\nSo far, KomaMRI can only manage one coil for RF excitations. However, in future versions, parallel transmit pTX will be managed by adding more ``rows'' to the RF matrix of the Sequence field name.","category":"page"},{"location":"sequence/","page":"Sequence","title":"Sequence","text":"In order to understand how a Sequence struct can be manipulated in Julia, let's use the EPI sequence example. You can display basic information of the Sequence variable in the Julia REPL:","category":"page"},{"location":"sequence/","page":"Sequence","title":"Sequence","text":"julia> seq = PulseDesigner.EPI_example()\nSequence[ τ = 62.846 ms | blocks: 204 | ADC: 101 | GR: 205 | RF: 1 | DEF: 5 ]","category":"page"},{"location":"sequence/","page":"Sequence","title":"Sequence","text":"As you can see, this Sequence has 204 blocks, 1 of these blocks has an RF struct with values different from zero, there are 205 number of Grad structs considering the x-y-z components, 101 ADC structs acquire samples of some blocks and 62.846 ms is the total time duration of the complete Sequence.","category":"page"},{"location":"sequence/","page":"Sequence","title":"Sequence","text":"To display the sequence in an graph, we can use the plot_seq function:","category":"page"},{"location":"sequence/","page":"Sequence","title":"Sequence","text":"julia> plot_seq(seq; slider=false)","category":"page"},{"location":"sequence/","page":"Sequence","title":"Sequence","text":"","category":"page"},{"location":"sequence/","page":"Sequence","title":"Sequence","text":"This way, you can see exactly where the RF, Grad and ADC structs are located in time.","category":"page"},{"location":"sequence/","page":"Sequence","title":"Sequence","text":"You can access and filter information for the RF, Grad, ADC, and DUR field names of a Sequence using the dot notation. This allows you to display helpful information about the organization of the Sequence struct:","category":"page"},{"location":"sequence/","page":"Sequence","title":"Sequence","text":"julia> seq.RF\n1×204 Matrix{RF}:\n ⊓(0.5872 ms) ⇿(0.0 ms) ⇿(0.0 ms) … ⇿(0.0 ms) ⇿(0.0 ms) \n\njulia> seq.GR\n3×204 Matrix{Grad}:\n ⇿(0.5872 ms) ⊓(0.4042 ms) ⊓(0.4042 ms) … ⇿(0.2062 ms) ⊓(0.4042 ms) ⊓(0.4042 ms)\n ⇿(0.5872 ms) ⊓(0.4042 ms) ⇿(0.4042 ms) ⊓(0.2062 ms) ⇿(0.4042 ms) ⊓(0.4042 ms)\n ⇿(0.5872 ms) ⇿(0.0 ms) ⇿(0.0 ms) ⇿(0.0 ms) ⇿(0.0 ms) ⇿(0.0 ms)\n\njulia> seq.ADC\n204-element Vector{ADC}:\n ADC(0, 0.0, 0.0, 0.0, 0.0)\n ADC(0, 0.0, 0.0, 0.0, 0.0)\n ADC(101, 0.00019999999999999998, 0.00010211565434713023, 0.0, 0.0)\n ⋮\n ADC(101, 0.00019999999999999998, 0.00010211565434713023, 0.0, 0.0)\n ADC(0, 0.0, 0.0, 0.0, 0.0)\n\njulia> seq.DUR\n204-element Vector{Float64}:\n 0.0005871650124959989\n 0.0004042313086942605\n 0.0004042313086942605\n ⋮\n 0.0004042313086942605\n 0.0004042313086942605","category":"page"},{"location":"sequence/","page":"Sequence","title":"Sequence","text":"Additionally, you can access a subset of blocks in a Sequence by slicing or indexing. The result will also be a Sequence struct, allowing you to perform the same operations as you would with a full Sequence. For example, if you want to analyze the first 11 blocks, you can do the following:","category":"page"},{"location":"sequence/","page":"Sequence","title":"Sequence","text":"julia> seq[1:11]\nSequence[ τ = 3.837 ms | blocks: 11 | ADC: 5 | GR: 11 | RF: 1 | DEF: 5 ]\n\njulia> seq[1:11].GR\n3×11 Matrix{Grad}:\n ⇿(0.5872 ms) ⊓(0.4042 ms) ⊓(0.4042 ms) … ⊓(0.4042 ms) ⇿(0.2062 ms) ⊓(0.4042 ms)\n ⇿(0.5872 ms) ⊓(0.4042 ms) ⇿(0.4042 ms) ⇿(0.4042 ms) ⊓(0.2062 ms) ⇿(0.4042 ms)\n ⇿(0.5872 ms) ⇿(0.0 ms) ⇿(0.0 ms) ⇿(0.0 ms) ⇿(0.0 ms) ⇿(0.0 ms)\n\njulia> plot_seq(seq[1:11]; slider=false)","category":"page"},{"location":"sequence/","page":"Sequence","title":"Sequence","text":"","category":"page"},{"location":"sequence/#Concatenation-of-Sequences","page":"Sequence","title":"Concatenation of Sequences","text":"","category":"section"},{"location":"sequence/","page":"Sequence","title":"Sequence","text":"Sequences can be concatenated side by side. The example below demonstrates how to concatenate sequences:","category":"page"},{"location":"sequence/","page":"Sequence","title":"Sequence","text":"julia> s = PulseDesigner.EPI_example()[1:11]\nSequence[ τ = 3.837 ms | blocks: 11 | ADC: 5 | GR: 11 | RF: 1 | DEF: 5 ]\n\njulia> seq = s + s + s\nSequence[ τ = 11.512 ms | blocks: 33 | ADC: 15 | GR: 33 | RF: 3 | DEF: 5 ]\n\njulia> plot_seq(seq; slider=false)","category":"page"},{"location":"sequence/","page":"Sequence","title":"Sequence","text":"","category":"page"},{"location":"create-your-own-phantom/#Create-Your-Own-Phantom","page":"Create Your Own Phantom","title":"Create Your Own Phantom","text":"","category":"section"},{"location":"create-your-own-phantom/","page":"Create Your Own Phantom","title":"Create Your Own Phantom","text":"In this section, we will create a custom Phantom struct. While the example is presented in 2D, the concepts discussed here can be readily extended to 3D phantoms.","category":"page"},{"location":"create-your-own-phantom/","page":"Create Your Own Phantom","title":"Create Your Own Phantom","text":"In KomaMRI, the creation of a Phantom struct involves defining spin position arrays (x, y, z) and spin property arrays. The indices of these arrays are then associated with independent spins.","category":"page"},{"location":"create-your-own-phantom/","page":"Create Your Own Phantom","title":"Create Your Own Phantom","text":"For instance, you can create a Phantom with one spin like so:","category":"page"},{"location":"create-your-own-phantom/","page":"Create Your Own Phantom","title":"Create Your Own Phantom","text":"# Define arrays of positions (spin at zero position)\nx = [0.0]\ny = [0.0]\nz = [0.0]\n\n# Define arrays of properties (for CSF tissue)\nρ = [1.0]\nT1 = [2.569]\nT2 = [0.329]\nT2s = [0.058]\n\n# Define the phantom\nspin = Phantom(name=\"spin\", x=x, y=y, z=z, ρ=ρ, T1=T1, T2=T2, T2s=T2s)","category":"page"},{"location":"create-your-own-phantom/","page":"Create Your Own Phantom","title":"Create Your Own Phantom","text":"Phantom{Float64}\n name: String \"spin\"\n x: Array{Float64}((1,)) [0.0]\n y: Array{Float64}((1,)) [0.0]\n z: Array{Float64}((1,)) [0.0]\n ρ: Array{Float64}((1,)) [1.0]\n T1: Array{Float64}((1,)) [2.569]\n T2: Array{Float64}((1,)) [0.329]\n T2s: Array{Float64}((1,)) [0.058]\n Δw: Array{Float64}((1,)) [0.0]\n Dλ1: Array{Float64}((1,)) [0.0]\n Dλ2: Array{Float64}((1,)) [0.0]\n Dθ: Array{Float64}((1,)) [0.0]\n ux: #122 (function of type KomaMRICore.var\"#122#136\")\n uy: #123 (function of type KomaMRICore.var\"#123#137\")\n uz: #124 (function of type KomaMRICore.var\"#124#138\")","category":"page"},{"location":"create-your-own-phantom/","page":"Create Your Own Phantom","title":"Create Your Own Phantom","text":"You can add more properties to the Phantom, such as off-resonance, diffusion parameters, and even functions of motion. However, we won't be utilizing them (except for the off-resonance parameter) to maintain simplicity.","category":"page"},{"location":"create-your-own-phantom/","page":"Create Your Own Phantom","title":"Create Your Own Phantom","text":"If you are familiar with the MRI world, you likely have a 2D or 3D array, where each element contains an ID number identifying a different class of tissue. In this setup, the array axes represent spatial positions, while the elements are used for tissue identification.","category":"page"},{"location":"create-your-own-phantom/","page":"Create Your Own Phantom","title":"Create Your Own Phantom","text":"In this example, we will utilize a .mat file containing arrays with such arrangements. The file is readily available upon installing KomaMRI. Let's read the file and store the 2D data in an array called class:\"","category":"page"},{"location":"create-your-own-phantom/","page":"Create Your Own Phantom","title":"Create Your Own Phantom","text":"# Import necessary modules\nusing KomaMRI, MAT\n\n# Get data from a .mat file\npath_koma = dirname(dirname(pathof(KomaMRI)))\npath_phantom_mat = joinpath(path_koma, \"KomaMRICore\", \"src\", \"datatypes\",\"phantom\", \"brain2D.mat\")\ndata = MAT.matread(path_phantom_mat)\nclass = data[\"axial\"]","category":"page"},{"location":"create-your-own-phantom/","page":"Create Your Own Phantom","title":"Create Your Own Phantom","text":"You can visualize the tissue map using the function plot_image`:","category":"page"},{"location":"create-your-own-phantom/","page":"Create Your Own Phantom","title":"Create Your Own Phantom","text":"plot_image(class)","category":"page"},{"location":"create-your-own-phantom/","page":"Create Your Own Phantom","title":"Create Your Own Phantom","text":"
    ","category":"page"},{"location":"create-your-own-phantom/","page":"Create Your Own Phantom","title":"Create Your Own Phantom","text":"Let's define the position arrays. You need to know the distance between the spins in the original array (in this case, it is 0.5mm), and then you can determine all the positions like this (the z-component is not calculated since this is a 2D example):","category":"page"},{"location":"create-your-own-phantom/","page":"Create Your Own Phantom","title":"Create Your Own Phantom","text":"# Define spin position arrays\nΔx = .5e-3 # 0.5mm\nM, N = size(class) # Number of spins in x and y\nFOVx = (M-1)*Δx # Field of view in x\nFOVy = (N-1)*Δx # Field of view in y\nx = -FOVx/2:Δx:FOVx/2 # x spin coordinates vector\ny = -FOVy/2:Δx:FOVy/2 # y spin coordinates vector\nx, y = x .+ y'*0, x*0 .+ y' # x and y grid points","category":"page"},{"location":"create-your-own-phantom/","page":"Create Your Own Phantom","title":"Create Your Own Phantom","text":"Now, let's define the arrays for the properties. It's essential to have prior knowledge of the property values for different tissue classes. For example, for muscle tissue, we use ρ = 1, T1 = 900 * 1e-3, T2 = 47 * 1e-3, and T2s = 30 * 1e-3. Additionally, create an array mask to identify the location of a tissue's ID. For muscle with ID = 116, the mask is (class == 116). Finally, to obtain a property, sum all the masks with values for all tissue classes. This process is illustrated below: ","category":"page"},{"location":"create-your-own-phantom/","page":"Create Your Own Phantom","title":"Create Your Own Phantom","text":"# Define the proton density array\nρ = (class.==23)*1 .+ # CSF\n (class.==46)*.86 .+ # GM\n (class.==70)*.77 .+ # WM\n (class.==93)*1 .+ # FAT1\n (class.==116)*1 .+ # MUSCLE\n (class.==139)*.7 .+ # SKIN/MUSCLE\n (class.==162)*0 .+ # SKULL\n (class.==185)*0 .+ # VESSELS\n (class.==209)*.77 .+ # FAT2\n (class.==232)*1 .+ # DURA\n (class.==255)*.77 # MARROW\n\n# Define the T1 decay array\nT1 = (class.==23)*2569 .+ # CSF\n (class.==46)*833 .+ # GM\n (class.==70)*500 .+ # WM\n (class.==93)*350 .+ # FAT1\n (class.==116)*900 .+ # MUSCLE\n (class.==139)*569 .+ # SKIN/MUSCLE\n (class.==162)*0 .+ # SKULL\n (class.==185)*0 .+ # VESSELS\n (class.==209)*500 .+ # FAT2\n (class.==232)*2569 .+ # DURA\n (class.==255)*500 # MARROW\n\n# Define the T2 decay array\nT2 = (class.==23)*329 .+ # CSF\n (class.==46)*83 .+ # GM\n (class.==70)*70 .+ # WM\n (class.==93)*70 .+ # FAT1\n (class.==116)*47 .+ # MUSCLE\n (class.==139)*329 .+ # SKIN/MUSCLE\n (class.==162)*0 .+ # SKULL\n (class.==185)*0 .+ # VESSELS\n (class.==209)*70 .+ # FAT2\n (class.==232)*329 .+ # DURA\n (class.==255)*70 # MARROW\n\n# Define the T2s decay array\nT2s = (class.==23)*58 .+ # CSF\n (class.==46)*69 .+ # GM\n (class.==70)*61 .+ # WM\n (class.==93)*58 .+ # FAT1\n (class.==116)*30 .+ # MUSCLE\n (class.==139)*58 .+ # SKIN/MUSCLE\n (class.==162)*0 .+ # SKULL\n (class.==185)*0 .+ # VESSELS\n (class.==209)*61 .+ # FAT2\n (class.==232)*58 .+ # DURA\n (class.==255)*61 # MARROW\n\n# Define off-resonance array\nΔw_fat = -220*2π\nΔw = (class.==93)*Δw_fat .+ # FAT1\n\t(class.==209)*Δw_fat # FAT2\n\n# Adjust with scaling factor\nT1 = T1*1e-3\nT2 = T2*1e-3\nT2s = T2s*1e-3","category":"page"},{"location":"create-your-own-phantom/","page":"Create Your Own Phantom","title":"Create Your Own Phantom","text":"Finally, we can invoke the Phantom constructor. However, before doing so, we choose not to store spins where the proton density is zero to avoid unnecessary data storage. This is achieved by applying the mask ρ.!=0 to the arrays. Additionally, please note that we set the z-position array filled with zeros, and we interchange the x and y coordinates.\"","category":"page"},{"location":"create-your-own-phantom/","page":"Create Your Own Phantom","title":"Create Your Own Phantom","text":"# Define the phantom\nobj = Phantom{Float64}(\n name = \"custom-brain\",\n\tx = y[ρ.!=0],\n\ty = x[ρ.!=0],\n\tz = 0*x[ρ.!=0],\n\tρ = ρ[ρ.!=0],\n\tT1 = T1[ρ.!=0],\n\tT2 = T2[ρ.!=0],\n\tT2s = T2s[ρ.!=0],\n\tΔw = Δw[ρ.!=0],\n)","category":"page"},{"location":"create-your-own-phantom/","page":"Create Your Own Phantom","title":"Create Your Own Phantom","text":"We can display the Phantom struct with the plot_phantom_map function. In this case we select the proton density to be displayed, but you can choose other property to be displayed:","category":"page"},{"location":"create-your-own-phantom/","page":"Create Your Own Phantom","title":"Create Your Own Phantom","text":"plot_phantom_map(obj, :ρ)","category":"page"},{"location":"create-your-own-phantom/","page":"Create Your Own Phantom","title":"Create Your Own Phantom","text":"","category":"page"},{"location":"api/#API-Documentation","page":"API Documentation","title":"API Documentation","text":"","category":"section"},{"location":"api/","page":"API Documentation","title":"API Documentation","text":"This page provides documentation for the modules, structs, functions, methods, and additional components available when importing the KomaMRI package. It serves as a valuable reference when using the Julia REPL directly and when creating custom Julia scripts. Be sure not to overlook the section How to read the API docs, which contains important information for understanding the general structure of docstrings. The following is the table of contents for the API Documentation:","category":"page"},{"location":"api/","page":"API Documentation","title":"API Documentation","text":"Pages = [\"api.md\"]\nDepth = 3","category":"page"},{"location":"api/#How-to-read-the-API-docs","page":"API Documentation","title":"How to read the API docs","text":"","category":"section"},{"location":"api/","page":"API Documentation","title":"API Documentation","text":"The API documentation includes predefined \"template patterns\" to assist users in understanding how to use modules, structs, functions, methods, and all the necessary aspects to make the most of what KomaMRI has to offer.","category":"page"},{"location":"api/","page":"API Documentation","title":"API Documentation","text":"These documentation \"template patterns\" are based on the JJulia Blue Style documentation and other GitHub repositories that deal with MRI topics. However, some custom considerations were added to enhance understanding and provide a broader perspective.","category":"page"},{"location":"api/","page":"API Documentation","title":"API Documentation","text":"When you encounter a docstring documentation, it will have the following structure:","category":"page"},{"location":"api/","page":"API Documentation","title":"API Documentation","text":"docstring: KomaMRI.component_name — Component\nout1, out2, ... = component_name(arg1, arg2, ...; kw1, kw2, ...)This is a brief description of what component_name does.note: Note\nHere can be placed a note if it is regarded necessary.Argumentsarg1: (::type, =value, [unit], opts: [opt1, opt2, ...]) the description for the arg1\n...Keywordskw1: (::type, =value, [unit], opts: [opt1, opt2, ...]) the description for the kw1\n...Returnsout1: (::type, =value, [unit], opts: [opt1, opt2, ...]) the description for the out1\n...ReferencesSometimes it is a good idea to put some references or links\n...Examplesjulia> arg1, arg2, valkw1, valkw2 = 3.5, \"hello\", 1, true\n\njulia> out1, out2 = component_name(arg1, arg2; kw1=valkw1, kw2=valkw2)","category":"page"},{"location":"api/","page":"API Documentation","title":"API Documentation","text":"The preceding docstring block will always start with the way the component is called (outputs = component_name(inputs), followed by a brief description of what the component does. If necessary, a note block will be displayed. In general, the following subsections are optional: Arguments, Keywords, Returns, References, and Examples, but they will be provided as needed. These subsections are self-explanatory, making it intuitive to understand their purpose.","category":"page"},{"location":"api/","page":"API Documentation","title":"API Documentation","text":"Please note that every subitem in the sections Arguments, Keywords, and Returns represents variables. They include practical information along with a description. The information enclosed in parentheses is optional but highly useful when provided.","category":"page"},{"location":"api/","page":"API Documentation","title":"API Documentation","text":"::type: is the suggested type for the variable. If the input variable is of type ::type, there won't be any issues, but it's always possible to test other subtypes. If the variable is an output, it will be forced to the type ::type whenever possible.\n=value: sometimes, for the inputs, a default value is defined if it is not assigned by the user.\n[unit]: this is the suggested physical unit of measure for the variable. Everything will be fine if you stick with these units of measure.\nopts: [opt1, opt2, ...]: sometimes, the input value can only be interpreted if it is one of the predefined values.","category":"page"},{"location":"api/#Structs","page":"API Documentation","title":"Structs","text":"","category":"section"},{"location":"api/","page":"API Documentation","title":"API Documentation","text":"CurrentModule = KomaMRICore","category":"page"},{"location":"api/#Scanner","page":"API Documentation","title":"Scanner","text":"","category":"section"},{"location":"api/","page":"API Documentation","title":"API Documentation","text":"Scanner","category":"page"},{"location":"api/#KomaMRICore.Scanner","page":"API Documentation","title":"KomaMRICore.Scanner","text":"sys = Scanner(B0, B1, Gmax, Smax, ADC_Δt, seq_Δt, GR_Δt, RF_Δt,\n RF_ring_down_T, RF_dead_time_T, ADC_dead_time_T)\n\nThe Scanner struct.\n\nArguments\n\nB0: (::Real, =1.5, [T]) main magnetic field strength\nB1: (::Real, =10e-6, [T]) maximum RF amplitude\nGmax: (::Real, =60e-3, [T/m]) maximum gradient amplitude\nSmax: (::Real, =500, [mT/m/ms]) gradient maximum slew-rate\nADC_Δt: (::Real, =2e-6, [s]) ADC raster time\nseq_Δt: (::Real, =1e-5, [s]) sequence-block raster time\nGR_Δt: (::Real, =1e-5, [s]) gradient raster time\nRF_Δt: (::Real, =1e-6, [s]) RF raster time\nRF_ring_down_T: (::Real, =20e-6, [s]) RF ring down time\nRF_dead_time_T: (::Real, =100e-6, [s]) RF dead time\nADC_dead_time_T: (::Real, =10e-6, [s]) ADC dead time\n\nReturns\n\nsys: (::Scanner) Scanner struct\n\nExamples\n\njulia> sys = Scanner()\n\njulia> sys.B0\n\n\n\n\n\n","category":"type"},{"location":"api/#Phantom","page":"API Documentation","title":"Phantom","text":"","category":"section"},{"location":"api/","page":"API Documentation","title":"API Documentation","text":"Phantom\nbrain_phantom2D\nbrain_phantom3D","category":"page"},{"location":"api/#KomaMRICore.Phantom","page":"API Documentation","title":"KomaMRICore.Phantom","text":"obj = Phantom(name, x, y, z, ρ, T1, T2, T2s, Δw, Dλ1, Dλ2, Dθ, ux, uy, uz)\n\nThe Phantom struct.\n\nArguments\n\nname: (::String) name of the phantom\nx: (::AbstractVector{T}, [m]) vector of x-positions of the spins\ny: (::AbstractVector{T}, [m]) vector of y-positions of the spins\nz: (::AbstractVector{T}, [m]) vector of z-positions of the spins\nρ: (::AbstractVector{T}) vector of proton density of the spins\nT1: (::AbstractVector{T}, [s]) vector of T1 parameters of the spins\nT2: (::AbstractVector{T}, [s]) vector of T2 parameters of the spins\nT2s: (::AbstractVector{T}, [s]) vector of T2s parameters of the spins\nΔw: (::AbstractVector{T}, [rad/s]) vector of off-resonance parameters of the spins\nDλ1: (::AbstractVector{T}) vector of Dλ1 (diffusion) parameters of the spins\nDλ2: (::AbstractVector{T}) vector of Dλ2 (diffusion) parameters of the spins\nDθ: (::AbstractVector{T}) vector of Dθ (diffusion) parameters of the spins\nux: (::Function) displacement field in the x-axis\nuy: (::Function) displacement field in the y-axis\nuz: (::Function) displacement field in the z-axis\n\nReturns\n\nobj: (::Phantom) Phantom struct\n\nExamples\n\njulia> obj = Phantom()\n\njulia> obj.ρ\n\n\n\n\n\n","category":"type"},{"location":"api/#KomaMRICore.brain_phantom2D","page":"API Documentation","title":"KomaMRICore.brain_phantom2D","text":"phantom = brain_phantom2D(;axis=\"axial\", ss=4)\n\nCreates a two-dimentional brain phantom struct.\n\nReferences\n\nB. Aubert-Broche, D.L. Collins, A.C. Evans: \"A new improved version of the realistic digital brain phantom\" NeuroImage, in review - 2006\nB. Aubert-Broche, M. Griffin, G.B. Pike, A.C. Evans and D.L. Collins: \"20 new digital brain phantoms for creation of validation image data bases\" IEEE TMI, in review - 2006\nhttps://brainweb.bic.mni.mcgill.ca/brainweb\n\nKeywords\n\naxis: (::String, =\"axial\", opts=[\"axial\"]) orientation of the phantom\nss: (::Real, =4) subsampling parameter in all axis\n\nReturns\n\nphantom: (::Phantom) 2D Phantom struct\n\nExamples\n\njulia> obj = brain_phantom2D()\n\njulia> plot_phantom_map(obj, :ρ)\n\n\n\n\n\n","category":"function"},{"location":"api/#KomaMRICore.brain_phantom3D","page":"API Documentation","title":"KomaMRICore.brain_phantom3D","text":"phantom = brain_phantom3D(;ss=4)\n\nCreates a three-dimentional brain phantom struct.\n\nReferences\n\nB. Aubert-Broche, D.L. Collins, A.C. Evans: \"A new improved version of the realistic digital brain phantom\" NeuroImage, in review - 2006\nB. Aubert-Broche, M. Griffin, G.B. Pike, A.C. Evans and D.L. Collins: \"20 new digital brain phantoms for creation of validation image data bases\" IEEE TMI, in review - 2006\nhttps://brainweb.bic.mni.mcgill.ca/brainweb\n\nKeywords\n\nss: (::Real, =4) subsampling parameter in all axis\n\nReturns\n\nphantom: (::Phantom) 3D Phantom struct\n\nExamples\n\njulia> obj = brain_phantom3D()\n\njulia> plot_phantom_map(obj, :ρ)\n\n\n\n\n\n","category":"function"},{"location":"api/#Sequence","page":"API Documentation","title":"Sequence","text":"","category":"section"},{"location":"api/","page":"API Documentation","title":"API Documentation","text":"Sequence","category":"page"},{"location":"api/#KomaMRICore.Sequence","page":"API Documentation","title":"KomaMRICore.Sequence","text":"seq = Sequence()\nseq = Sequence(GR)\nseq = Sequence(GR, RF)\nseq = Sequence(GR, RF, ADC)\nseq = Sequence(GR, RF, ADC, DUR)\nseq = Sequence(GR::Array{Grad,1})\nseq = Sequence(GR::Array{Grad,1}, RF::Array{RF,1})\nseq = Sequence(GR::Array{Grad,1}, RF::Array{RF,1}, A::ADC, DUR, DEF)\n\nThe Sequence struct.\n\nArguments\n\nGR: (::Matrix{Grad}) gradient matrix, rows are for (x,y,z) and columns are for time\nRF: (::Matrix{RF}) RF matrix, the 1 row is for the coil and columns are for time\nADC: (::Vector{ADC}) ADC vector in time\nDUR: (::Vector{Float64}, [s]) duration of each sequence-block, this enables delays after RF pulses to satisfy ring-down times\nDEF: (::Dict{String, Any}) dictionary with relevant information of the sequence. The possible keys are [\"AdcRasterTime\", \"GradientRasterTime\", \"Name\", \"Nz\", \"Num_Blocks\", \"Nx\", \"Ny\", \"PulseqVersion\", \"BlockDurationRaster\", \"FileName\", \"RadiofrequencyRasterTime\"]\n\nReturns\n\nseq: (::Sequence) Sequence struct\n\n\n\n\n\n","category":"type"},{"location":"api/#Grad","page":"API Documentation","title":"Grad","text":"","category":"section"},{"location":"api/","page":"API Documentation","title":"API Documentation","text":"Grad\nGrad(::Function, ::Real, ::Int64)","category":"page"},{"location":"api/#KomaMRICore.Grad","page":"API Documentation","title":"KomaMRICore.Grad","text":"grad = Grad(A, T)\ngrad = Grad(A, T, rise)\ngrad = Grad(A, T, rise, delay)\ngrad = Grad(A, T, rise, fall, delay)\n\nThe Gradient struct.\n\nArguments\n\nA: (::Float64, [T]) amplitude of the gradient\nT: (::Float64, [s]) duration of the flat-top\nrise: (::Real, [s]) duration of the rise\nfall: (::Real, [s]) duration of the fall\ndelay: (::Real, [s]) duration of the delay\n\nReturns\n\ngrad: (::Grad) gradient struct\n\n\n\n\n\n","category":"type"},{"location":"api/#KomaMRICore.Grad-Tuple{Function, Real, Int64}","page":"API Documentation","title":"KomaMRICore.Grad","text":"grad = Grad(f::Function, T::Real, N::Int64; delay::Real)\n\nGenerates an arbitrary gradient waveform defined by function f in the interval t ∈ [0,T]. It uses N square gradients uniformly spaced in the interval.\n\nArguments\n\nf: (::Function) function that describes the gradient waveform\nT: (::Real, [s]) duration of the gradient waveform\nN: (::Int64) number of samples of the gradient waveform\n\nKeywords\n\ndelay: (::Real, =0, [s]) starting delay for the waveform\n\nReturns\n\ngrad: (::Grad) gradient struct\n\nExamples\n\njulia> f1 = t -> sin(π*t / 0.8)\n\njulia> seq = Sequence([Grad(f1, 0.8)])\n\njulia> plot_seq(seq)\n\n\n\n\n\n","category":"method"},{"location":"api/#RF","page":"API Documentation","title":"RF","text":"","category":"section"},{"location":"api/","page":"API Documentation","title":"API Documentation","text":"RF","category":"page"},{"location":"api/#KomaMRICore.RF","page":"API Documentation","title":"KomaMRICore.RF","text":"rf = RF(A, T)\nrf = RF(A, T, Δf)\nrf = RF(A, T, Δf, delay)\n\nThe RF struct.\n\nArguments\n\nA: (::Complex{Int64}, [T]) the amplitud-phase B1x + i B1y\nT: (::Int64, [s]) the duration of the RF\nΔf: (::Float64, [Hz]) the frequency offset of the RF\ndelay: (::Float64, [s]) the delay time of the RF\n\nReturns\n\nrf: (::RF) the RF struct\n\n\n\n\n\n","category":"type"},{"location":"api/#ADC","page":"API Documentation","title":"ADC","text":"","category":"section"},{"location":"api/","page":"API Documentation","title":"API Documentation","text":"ADC","category":"page"},{"location":"api/#KomaMRICore.ADC","page":"API Documentation","title":"KomaMRICore.ADC","text":"adc = ADC(N, T)\nadc = ADC(N, T, delay)\nadc = ADC(N, T, delay, Δf, ϕ)\n\nThe ADC struct.\n\nArguments\n\nN: (::Int64) number of acquired samples\nT: (::Float64, [s]) duration to acquire the samples\ndelay: (::Float64, [s]) delay time to start the acquisition\nΔf: (::Float64, [Hz]) delta frequency. It's meant to compensate RF pulse phases. It is used internally by the read_ADC function\nϕ: (::Float64, [rad]) phase. It's meant to compensate RF pulse phases. It is used internally by the read_ADC function\n\nReturns\n\nadc: (::ADC) ADC struct\n\n\n\n\n\n","category":"type"},{"location":"api/#Delay","page":"API Documentation","title":"Delay","text":"","category":"section"},{"location":"api/","page":"API Documentation","title":"API Documentation","text":"Delay","category":"page"},{"location":"api/#KomaMRICore.Delay","page":"API Documentation","title":"KomaMRICore.Delay","text":"delay = Delay(T)\n\nThe Delay struct. It is a special \"object\" meant to add a delay to a sequence by using a sum operator.\n\nArguments\n\nT: (::Real, [s]) time delay value\n\nReturns\n\ndelay: (::Delay) delay struct\n\n\n\n\n\n","category":"type"},{"location":"api/#Read-Data","page":"API Documentation","title":"Read Data","text":"","category":"section"},{"location":"api/#read_seq","page":"API Documentation","title":"read_seq","text":"","category":"section"},{"location":"api/","page":"API Documentation","title":"API Documentation","text":"read_seq","category":"page"},{"location":"api/#KomaMRICore.read_seq","page":"API Documentation","title":"KomaMRICore.read_seq","text":"seq = read_seq(filename)\n\nReturns the Sequence struct from a sequence file .seq.\n\nArguments\n\nfilename: (::String) the absolute or relative path of the sequence file .seq\n\nReturns\n\nseq: (::Sequence) Sequence struct\n\nExamples\n\njulia> seq_file = joinpath(dirname(pathof(KomaMRI)), \"../examples/1.sequences/spiral.seq\")\n\njulia> seq = read_seq(seq_file)\n\njulia> plot_seq(seq)\n\n\n\n\n\n","category":"function"},{"location":"api/#read_phantom_jemris","page":"API Documentation","title":"read_phantom_jemris","text":"","category":"section"},{"location":"api/","page":"API Documentation","title":"API Documentation","text":"read_phantom_jemris","category":"page"},{"location":"api/#KomaMRICore.read_phantom_jemris","page":"API Documentation","title":"KomaMRICore.read_phantom_jemris","text":"phantom = read_phantom_jemris(filename)\n\nReturns the Phantom struct from a JEMRIS phantom file .h5.\n\nArguments\n\nfilename: (::String) the absolute or relative path of the phantom file .h5\n\nReturns\n\nphantom: (::Phantom) Phantom struct\n\nExamples\n\njulia> obj_file = joinpath(dirname(pathof(KomaMRI)), \"../examples/2.phantoms/brain.h5\")\n\njulia> obj = read_phantom_jemris(obj_file)\n\njulia> plot_phantom_map(obj, :ρ)\n\n\n\n\n\n","category":"function"},{"location":"api/#read_phantom_MRiLab","page":"API Documentation","title":"read_phantom_MRiLab","text":"","category":"section"},{"location":"api/","page":"API Documentation","title":"API Documentation","text":"read_phantom_MRiLab","category":"page"},{"location":"api/#KomaMRICore.read_phantom_MRiLab","page":"API Documentation","title":"KomaMRICore.read_phantom_MRiLab","text":"phantom = read_phantom_MRiLab(filename)\n\nReturns the Phantom struct from a MRiLab phantom file .mat.\n\nArguments\n\nfilename: (::String) the absolute or relative path of the phantom file .mat\n\nReturns\n\nphantom: (::Phantom) Phantom struct\n\nExamples\n\njulia> obj_file = joinpath(dirname(pathof(KomaMRI)), \"../examples/2.phantoms/brain.mat\")\n\njulia> obj = read_phantom_MRiLab(obj_file)\n\njulia> plot_phantom_map(obj, :ρ)\n\n\n\n\n\n","category":"function"},{"location":"api/#signal_to_raw_data","page":"API Documentation","title":"signal_to_raw_data","text":"","category":"section"},{"location":"api/","page":"API Documentation","title":"API Documentation","text":"signal_to_raw_data","category":"page"},{"location":"api/#KomaMRICore.signal_to_raw_data","page":"API Documentation","title":"KomaMRICore.signal_to_raw_data","text":"raw_ismrmrd = signal_to_raw_data(signal, seq; phantom_name, sys, simParams)\n\nTransforms the raw signal into ISMRMRD format.\n\nArguments\n\nsignal: (::Vector{ComplexF64}) raw signal\nseq: (::Sequence) Sequence struct\n\nKeywords\n\nphantom_name: (::String, =\"Phantom\") Phantom struct\nsys: (::Scanner, =Scanner()) Scanner struct\nsimParams: (::Dict{String,Any}(), =Dict{String,Any}()) dictionary with simulation parameters\n\nReturns\n\nraw_ismrmrd: (::RawAcquisitionData) raw signal in ISMRMRD format\n\nExamples\n\njulia> seq_file = joinpath(dirname(pathof(KomaMRI)), \"../examples/3.koma_paper/comparison_accuracy/sequences/EPI/epi_100x100_TE100_FOV230.seq\");\n\njulia> sys, obj, seq = Scanner(), brain_phantom2D(), read_seq(seq_file)\n\njulia> raw = simulate(obj, seq, sys)\n\njulia> plot_signal(raw)\n\n\n\n\n\n","category":"function"},{"location":"api/#Pulse-Design","page":"API Documentation","title":"Pulse Design","text":"","category":"section"},{"location":"api/#PulseDesigner","page":"API Documentation","title":"PulseDesigner","text":"","category":"section"},{"location":"api/","page":"API Documentation","title":"API Documentation","text":"PulseDesigner","category":"page"},{"location":"api/#KomaMRICore.PulseDesigner","page":"API Documentation","title":"KomaMRICore.PulseDesigner","text":"PulseDesigner\n\nA module to define different pulse sequences.\n\n\n\n\n\n","category":"module"},{"location":"api/#PulseDesigner.RF_hard","page":"API Documentation","title":"PulseDesigner.RF_hard","text":"","category":"section"},{"location":"api/","page":"API Documentation","title":"API Documentation","text":"PulseDesigner.RF_hard","category":"page"},{"location":"api/#KomaMRICore.PulseDesigner.RF_hard","page":"API Documentation","title":"KomaMRICore.PulseDesigner.RF_hard","text":"ex = RF_hard(B1, T, sys::Scanner; G=[0,0,0], Δf=0)\n\nDefinition of the RF hard sequence.\n\nArguments\n\nB1: (Float64, [T]) amplitude of the RF pulse\nT: (Float64, [s]) duration of the RF pulse\nsys: (::Scanner) Scanner struct\n\nKeywords\n\nG: (Vector{Float64}, =[0, 0, 0], [T]) gradient amplitudes for x, y, z\nΔf: (Float64, =0, [Hz]) frequency offset of the RF pulse\n\nReturns\n\nex: (::Sequence) excitation Sequence struct\n\nExamples\n\njulia> sys = Scanner();\n\njulia> durRF = π/2/(2π*γ*sys.B1); #90-degree hard excitation pulse\n\njulia> ex = PulseDesigner.RF_hard(sys.B1, durRF, sys)\nSequence[ τ = 0.587 ms | blocks: 1 | ADC: 0 | GR: 0 | RF: 1 | DEF: 0 ]\n\njulia> plot_seq(ex)\n\n\n\n\n\n","category":"function"},{"location":"api/#PulseDesigner.RF_sinc","page":"API Documentation","title":"PulseDesigner.RF_sinc","text":"","category":"section"},{"location":"api/","page":"API Documentation","title":"API Documentation","text":"PulseDesigner.RF_sinc","category":"page"},{"location":"api/#KomaMRICore.PulseDesigner.RF_sinc","page":"API Documentation","title":"KomaMRICore.PulseDesigner.RF_sinc","text":"seq = spiral_base(FOV::Float64, Nr::Int, sys::Scanner)\n\nDefinition of the radial base sequence.\n\nArguments\n\nFOV: (::Float64, [m]) field of view\nN: (::Int) number of pixels along the radious\nsys: (::Scanner) Scanner struct\n\nReturns\n\nex: (::Sequence) RF struct\n\nReferences\n\nMATT A. BERNSTEIN, KEVIN F. KING, XIAOHONG JOE ZHOU, CHAPTER 2 - RADIOFREQUENCY PULSE SHAPES, Handbook of MRI Pulse Sequences, 2004, Pages 35-66, https://doi.org/10.1016/B978-012092861-3/50006-6.\n\n\n\n\n\n","category":"function"},{"location":"api/#PulseDesigner.EPI","page":"API Documentation","title":"PulseDesigner.EPI","text":"","category":"section"},{"location":"api/","page":"API Documentation","title":"API Documentation","text":"PulseDesigner.EPI","category":"page"},{"location":"api/#KomaMRICore.PulseDesigner.EPI","page":"API Documentation","title":"KomaMRICore.PulseDesigner.EPI","text":"epi = EPI(FOV::Float64, N::Int, sys::Scanner)\n\nDefinition of the EPI sequence.\n\nArguments\n\nFOV: (::Float64, [m]) field of view\nN: (::Int) number of pixels in the x and y axis\nsys: (::Scanner) Scanner struct\n\nReturns\n\nepi: (::Sequence) epi Sequence struct\n\nExamples\n\njulia> sys, FOV, N = Scanner(), 23e-2, 101\n\njulia> epi = PulseDesigner.EPI(FOV, N, sys)\nSequence[ τ = 62.259 ms | blocks: 203 | ADC: 101 | GR: 205 | RF: 0 | DEF: 4 ]\n\njulia> plot_seq(epi)\n\n\n\n\n\n","category":"function"},{"location":"api/#PulseDesigner.radial_base","page":"API Documentation","title":"PulseDesigner.radial_base","text":"","category":"section"},{"location":"api/","page":"API Documentation","title":"API Documentation","text":"PulseDesigner.radial_base","category":"page"},{"location":"api/#KomaMRICore.PulseDesigner.radial_base","page":"API Documentation","title":"KomaMRICore.PulseDesigner.radial_base","text":"seq = radial_base(FOV::Float64, Nr::Int, sys::Scanner)\n\nDefinition of the radial base sequence.\n\nArguments\n\nFOV: (::Float64, [m]) field of view\nN: (::Int) number of pixels along the radious\nsys: (::Scanner) Scanner struct\n\nReturns\n\nseq: (::Sequence) radial base Sequence struct\n\n\n\n\n\n","category":"function"},{"location":"api/#PulseDesigner.spiral_base","page":"API Documentation","title":"PulseDesigner.spiral_base","text":"","category":"section"},{"location":"api/","page":"API Documentation","title":"API Documentation","text":"PulseDesigner.spiral_base","category":"page"},{"location":"api/#KomaMRICore.PulseDesigner.spiral_base","page":"API Documentation","title":"KomaMRICore.PulseDesigner.spiral_base","text":"seq = spiral_base(FOV::Float64, Nr::Int, sys::Scanner)\n\nDefinition of the radial base sequence.\n\nArguments\n\nFOV: (::Float64, [m]) field of view\nN: (::Int) number of pixels along the radious\nsys: (::Scanner) Scanner struct\n\nReturns\n\nseq: (::Function) function that returns a Sequence when evaluated\n\nReferences\n\nGlover, G.H. (1999), Simple analytic spiral K-space algorithm. Magn. Reson. Med., 42: 412-415. https://doi.org/10.1002/(SICI)1522-2594(199908)42:2<412::AID-MRM25>3.0.CO;2-U\n\n\n\n\n\n","category":"function"},{"location":"api/#PulseDesigner.EPI_example","page":"API Documentation","title":"PulseDesigner.EPI_example","text":"","category":"section"},{"location":"api/","page":"API Documentation","title":"API Documentation","text":"PulseDesigner.EPI_example","category":"page"},{"location":"api/#Simulation","page":"API Documentation","title":"Simulation","text":"","category":"section"},{"location":"api/#simulate","page":"API Documentation","title":"simulate","text":"","category":"section"},{"location":"api/","page":"API Documentation","title":"API Documentation","text":"simulate","category":"page"},{"location":"api/#KomaMRICore.simulate","page":"API Documentation","title":"KomaMRICore.simulate","text":"out = simulate(obj::Phantom, seq::Sequence, sys::Scanner; simParams, w)\n\nReturns the raw signal or the last state of the magnetization according to the value of the \"return_type\" key of the simParams dictionary.\n\nArguments\n\nobj: (::Phantom) Phantom struct\nseq: (::Sequence) Sequence struct\nsys: (::Scanner) Scanner struct\n\nKeywords\n\nsimParams: (::Dict{String,Any}, =Dict{String,Any}()) the dictionary with simulation parameters\nw: (::Any, =nothing) the flag to regard a progress bar in the blink window UI. If this variable is differnet from nothing, then the progress bar is considered\n\nReturns\n\nout: (::Vector{ComplexF64} or ::S <: SpinStateRepresentation or RawAcquisitionData) depending if \"return_type\" is \"mat\" or \"state\" or \"raw\" (default) respectively.\n\nExamples\n\njulia> seq_file = joinpath(dirname(pathof(KomaMRI)), \"../examples/3.koma_paper/comparison_accuracy/sequences/EPI/epi_100x100_TE100_FOV230.seq\");\n\njulia> sys, obj, seq = Scanner(), brain_phantom2D(), read_seq(seq_file)\n\njulia> raw = simulate(obj, seq, sys)\n\njulia> plot_signal(raw)\n\n\n\n\n\n","category":"function"},{"location":"api/#simulate_slice_profile","page":"API Documentation","title":"simulate_slice_profile","text":"","category":"section"},{"location":"api/","page":"API Documentation","title":"API Documentation","text":"simulate_slice_profile","category":"page"},{"location":"api/#KomaMRICore.simulate_slice_profile","page":"API Documentation","title":"KomaMRICore.simulate_slice_profile","text":"M = simulate_slice_profile(seq; z, simParams)\n\nReturns magnetization of spins distributed along z after running the Sequence seq.\n\nArguments\n\nseq: (::Sequence) Sequence struct\n\nKeywords\n\nz: (=range(-2e-2,2e-2,200)) range for the z axis\nsimParams: (::Dict{String, Any}, =Dict{String,Any}(\"Δt_rf\"=>1e-6)) dictionary with simulation parameters\n\nReturns\n\nM: (::Vector{Mag}) final state of the Mag vector\n\n\n\n\n\n","category":"function"},{"location":"api/#Plots","page":"API Documentation","title":"Plots","text":"","category":"section"},{"location":"api/","page":"API Documentation","title":"API Documentation","text":"CurrentModule = KomaMRIPlots","category":"page"},{"location":"api/#plot_phantom_map","page":"API Documentation","title":"plot_phantom_map","text":"","category":"section"},{"location":"api/","page":"API Documentation","title":"API Documentation","text":"plot_phantom_map","category":"page"},{"location":"api/#KomaMRIPlots.plot_phantom_map","page":"API Documentation","title":"KomaMRIPlots.plot_phantom_map","text":"p = plot_phantom_map(ph, key; t0=0, height=600, width=nothing, darkmode=false)\n\nPlots a phantom map for a specific spin parameter given by key.\n\nArguments\n\nph: (::Phantom) Phantom struct\nkey: (::Symbol, opts: [:ρ, :T1, :T2, :T2s, :x, :y, :z]) symbol for displaying different parameters of the phantom spins\n\nKeywords\n\nt0: (::Float64, =0, [ms]) time to see displacement of the phantom\nheight: (::Int64, =600) height of the plot\nwidth: (::Int64, =nothing) width of the plot\ndarkmode: (::Bool, =false) boolean to define colors for darkmode\nview_2d: (::Bool, =false) boolean to use a 2D scatter plot\ncolorbar: (::Bool, =true) boolean to show the colorbar\n\nReturns\n\np: (::PlotlyJS.SyncPlot) plot of the phantom map for a specific spin parameter\n\nReferences\n\nColormaps from https://github.com/markgriswold/MRFColormaps Towards Unified Colormaps for Quantitative MRF Data, Mark Griswold, et al. (2018).\n\nExamples\n\njulia> obj2D, obj3D = brain_phantom2D(), brain_phantom3D();\n\njulia> plot_phantom_map(obj2D, :ρ)\n\njulia> plot_phantom_map(obj3D, :ρ)\n\n\n\n\n\n","category":"function"},{"location":"api/#plot_seq","page":"API Documentation","title":"plot_seq","text":"","category":"section"},{"location":"api/","page":"API Documentation","title":"API Documentation","text":"plot_seq","category":"page"},{"location":"api/#KomaMRIPlots.plot_seq","page":"API Documentation","title":"KomaMRIPlots.plot_seq","text":"p = plot_seq(seq; width, height, slider, show_seq_blocks, show_sim_blocks, Nblocks,\n darkmode, max_rf_samples, range)\n\nPlots a sequence struct.\n\nArguments\n\nseq: (::Sequence) Sequence struct\n\nKeywords\n\nwidth: (::Int64, =nothing) width of the plot\nheight: (::Int64, =nothing) height of the plot\nslider: (::Bool, =true) boolean to display a slider\nshow_seq_blocks: (::Bool, =false) boolean to show sequence blocks\nshow_sim_blocks: (::Bool, =false) boolean to show simulation blocks\nNblocks: (::Int64, =0) number of simulation blocks to display\ndarkmode: (::Bool, =false) boolean to define colors for darkmode\nmax_rf_samples: (::Int64, =100) maximum number of RF samples\nrange: (::Vector{Float64}, =[]) time range to be displayed initially\n\nReturns\n\np: (::PlotlyJS.SyncPlot) plot of the Sequence struct\n\nExamples\n\njulia> seq_file = joinpath(dirname(pathof(KomaMRI)), \"../examples/1.sequences/spiral.seq\")\n\njulia> seq = read_seq(seq_file)\n\njulia> plot_seq(seq)\n\n\n\n\n\n","category":"function"},{"location":"api/#plot_kspace","page":"API Documentation","title":"plot_kspace","text":"","category":"section"},{"location":"api/","page":"API Documentation","title":"API Documentation","text":"plot_kspace","category":"page"},{"location":"api/#KomaMRIPlots.plot_kspace","page":"API Documentation","title":"KomaMRIPlots.plot_kspace","text":"p = plot_kspace(seq; width=nothing, height=nothing, darkmode=false)\n\nPlots the k-space of a sequence struct.\n\nArguments\n\nseq: (::Sequence) Sequence struct\n\nKeywords\n\nwidth: (::Int64, =nothing) width of the plot\nheight: (::Int64, =nothing) height of the plot\ndarkmode: (::Bool, =false) boolean to define colors for darkmode\n\nReturns\n\np: (::PlotlyJS.SyncPlot) plot of the k-space of the sequence struct seq\n\nExamples\n\njulia> seq_file = joinpath(dirname(pathof(KomaMRI)), \"../examples/1.sequences/spiral.seq\")\n\njulia> seq = read_seq(seq_file)\n\njulia> plot_kspace(seq)\n\n\n\n\n\n","category":"function"},{"location":"api/#plot_M0","page":"API Documentation","title":"plot_M0","text":"","category":"section"},{"location":"api/","page":"API Documentation","title":"API Documentation","text":"plot_M0","category":"page"},{"location":"api/#KomaMRIPlots.plot_M0","page":"API Documentation","title":"KomaMRIPlots.plot_M0","text":"p = plot_M0(seq; height=nothing, width=nothing, slider=true, darkmode=false, range=[])\n\nPlots the zero order moment (M0) of a Sequence seq.\n\nArguments\n\nseq: (::Sequence) Sequence struct\n\nKeywords\n\nheight: (::Int64, =nothing) height of the plot\nwidth: (::Int64, =nothing) width of the plot\nslider: (::Bool, =true) boolean to display a slider\ndarkmode: (::Bool, =false) boolean to define colors for darkmode\nrange: (::Vector{Float64}, =[]) time range to be displayed initially\n\nReturns\n\np: (::PlotlyJS.SyncPlot) plot of the moment M0 of the sequence struct seq\n\nExamples\n\njulia> seq_file = joinpath(dirname(pathof(KomaMRI)), \"../examples/1.sequences/spiral.seq\")\n\njulia> seq = read_seq(seq_file)\n\njulia> plot_M0(seq)\n\n\n\n\n\n","category":"function"},{"location":"api/#plot_M1","page":"API Documentation","title":"plot_M1","text":"","category":"section"},{"location":"api/","page":"API Documentation","title":"API Documentation","text":"plot_M1","category":"page"},{"location":"api/#KomaMRIPlots.plot_M1","page":"API Documentation","title":"KomaMRIPlots.plot_M1","text":"p = plot_M1(seq; height=nothing, width=nothing, slider=true, darkmode=false, range=[])\n\nPlots the first order moment (M1) of a Sequence seq.\n\nArguments\n\nseq: (::Sequence) Sequence\n\nKeywords\n\nheight: (::Int64, =nothing) height of the plot\nwidth: (::Int64, =nothing) width of the plot\nslider: (::Bool, =true) boolean to display a slider\ndarkmode: (::Bool, =false) boolean to define colors for darkmode\nrange: (::Vector{Float64}, =[]) time range to be displayed initially\n\nReturns\n\np: (::PlotlyJS.SyncPlot) plot of the moment M1 of the sequence struct seq\n\nExamples\n\njulia> seq_file = joinpath(dirname(pathof(KomaMRI)), \"../examples/1.sequences/spiral.seq\")\n\njulia> seq = read_seq(seq_file)\n\njulia> plot_M1(seq)\n\n\n\n\n\n","category":"function"},{"location":"api/#plot_M2","page":"API Documentation","title":"plot_M2","text":"","category":"section"},{"location":"api/","page":"API Documentation","title":"API Documentation","text":"plot_M2","category":"page"},{"location":"api/#KomaMRIPlots.plot_M2","page":"API Documentation","title":"KomaMRIPlots.plot_M2","text":"p = plot_M2(seq; height=nothing, width=nothing, slider=true, darkmode=false, range=[])\n\nPlots the second order moment (M2) of a Sequence seq.\n\nArguments\n\nseq: (::Sequence) Sequence\n\nKeywords\n\nheight: (::Int64, =nothing) height of the plot\nwidth: (::Int64, =nothing) width of the plot\nslider: (::Bool, =true) boolean to display a slider\ndarkmode: (::Bool, =false) boolean to define colors for darkmode\nrange: (::Vector{Float64}, =[]) time range to be displayed initially\n\nReturns\n\np: (::PlotlyJS.SyncPlot) plot of the moment M2 of the sequence struct seq\n\nExamples\n\njulia> seq_file = joinpath(dirname(pathof(KomaMRI)), \"../examples/1.sequences/spiral.seq\")\n\njulia> seq = read_seq(seq_file)\n\njulia> plot_M2(seq)\n\n\n\n\n\n","category":"function"},{"location":"api/#plot_eddy_currents","page":"API Documentation","title":"plot_eddy_currents","text":"","category":"section"},{"location":"api/","page":"API Documentation","title":"API Documentation","text":"plot_eddy_currents","category":"page"},{"location":"api/#KomaMRIPlots.plot_eddy_currents","page":"API Documentation","title":"KomaMRIPlots.plot_eddy_currents","text":"p = plot_eddy_currents(seq, λ; α=ones(size(λ)), height=nothing, width=nothing, slider=true, darkmode=false, range=[])\n\nPlots the eddy currents of a Sequence seq.\n\nArguments\n\nseq: (::Sequence) Sequence\nλ: (::Float64, [s]) eddy currents decay constant time\n\nKeywords\n\nα: (::Vector{Float64}, =ones(size(λ))) eddy currents factors\nheight: (::Int64, =nothing) height of the plot\nwidth: (::Int64, =nothing) width of the plot\nslider: (::Bool, =true) boolean to display a slider\ndarkmode: (::Bool, =false) boolean to define colors for darkmode\nrange: (::Vector{Float64}, =[]) time range to be displayed initially\n\nReturns\n\np: (::PlotlyJS.SyncPlot) plot of the eddy currents of the sequence struct seq\n\nExamples\n\njulia> seq_file = joinpath(dirname(pathof(KomaMRI)), \"../examples/1.sequences/spiral.seq\")\n\njulia> seq = read_seq(seq_file)\n\njulia> plot_eddy_currents(seq, 80e-3)\n\n\n\n\n\n","category":"function"},{"location":"api/#plot_slew_rate","page":"API Documentation","title":"plot_slew_rate","text":"","category":"section"},{"location":"api/","page":"API Documentation","title":"API Documentation","text":"plot_slew_rate","category":"page"},{"location":"api/#KomaMRIPlots.plot_slew_rate","page":"API Documentation","title":"KomaMRIPlots.plot_slew_rate","text":"p = plot_slew_rate(seq; height=nothing, width=nothing, slider=true, darkmode=false, range=[])\n\nPlots the slew rate currents of a Sequence seq.\n\nArguments\n\nseq: (::Sequence) Sequence\n\nKeywords\n\nheight: (::Int64, =nothing) height of the plot\nwidth: (::Int64, =nothing) width of the plot\nslider: (::Bool, =true) boolean to display a slider\ndarkmode: (::Bool, =false) boolean to define colors for darkmode\nrange: (::Vector{Float64}, =[]) time range to be displayed initially\n\nReturns\n\np: (::PlotlyJS.SyncPlot) plot of the slew rate currents of the sequence struct seq\n\nExamples\n\njulia> seq_file = joinpath(dirname(pathof(KomaMRI)), \"../examples/1.sequences/spiral.seq\")\n\njulia> seq = read_seq(seq_file)\n\njulia> plot_slew_rate(seq)\n\n\n\n\n\n","category":"function"},{"location":"api/#plot_signal","page":"API Documentation","title":"plot_signal","text":"","category":"section"},{"location":"api/","page":"API Documentation","title":"API Documentation","text":"plot_signal","category":"page"},{"location":"api/#KomaMRIPlots.plot_signal","page":"API Documentation","title":"KomaMRIPlots.plot_signal","text":"p = plot_signal(raw::RawAcquisitionData; height, width, slider, show_sim_blocks,\n darkmode, range)\n\nPlots a raw signal in ISMRMRD format.\n\nArguments\n\nraw: (::RawAcquisitionData) RawAcquisitionData struct which is the raw signal in ISMRMRD format\n\nKeywords\n\nwidth: (::Int64, =nothing) width of the plot\nheight: (::Int64, =nothing) height of the plot\nslider: (::Bool, =true) boolean to display a slider\nshow_sim_blocks: (::Bool, =false) boolean to show simulation blocks\ndarkmode: (::Bool, =false) boolean to define colors for darkmode\nrange: (::Vector{Float64}, =[]) time range to be displayed initially\n\nReturns\n\np: (::PlotlyJS.SyncPlot) plot of the raw signal\n\nExamples\n\njulia> seq_file = joinpath(dirname(pathof(KomaMRI)), \"../examples/3.koma_paper/comparison_accuracy/sequences/EPI/epi_100x100_TE100_FOV230.seq\");\n\njulia> sys, obj, seq = Scanner(), brain_phantom2D(), read_seq(seq_file)\n\njulia> raw = simulate(obj, seq, sys)\n\njulia> plot_signal(raw)\n\n\n\n\n\n","category":"function"},{"location":"api/#plot_image","page":"API Documentation","title":"plot_image","text":"","category":"section"},{"location":"api/","page":"API Documentation","title":"API Documentation","text":"plot_image","category":"page"},{"location":"api/#KomaMRIPlots.plot_image","page":"API Documentation","title":"KomaMRIPlots.plot_image","text":"p = plot_image(image; height, width, zmin, zmax, darkmode, title)\n\nPlots an image matrix.\n\nArguments\n\nimage: (::Matrix{Float64}) image matrix\n\nKeywords\n\nheight: (::Int64, =750) height of the plot\nwidth: (::Int64, =nothing) width of the plot\nzmin: (::Float64, =minimum(abs.(image[:]))) reference value for minimum color\nzmax: (::Float64, =maximum(abs.(image[:]))) reference value for maximum color\ndarkmode: (::Bool, =false) boolean to define colors for darkmode\ntitle: (::String, =\"\") title of the plot\n\nReturns\n\np: (::PlotlyJS.SyncPlot) plot of the image matrix\n\n\n\n\n\n","category":"function"},{"location":"api/#UI","page":"API Documentation","title":"UI","text":"","category":"section"},{"location":"api/","page":"API Documentation","title":"API Documentation","text":"CurrentModule = KomaMRI","category":"page"},{"location":"api/#KomaUI","page":"API Documentation","title":"KomaUI","text":"","category":"section"},{"location":"api/","page":"API Documentation","title":"API Documentation","text":"KomaUI","category":"page"},{"location":"api/#KomaMRI.KomaUI","page":"API Documentation","title":"KomaMRI.KomaUI","text":"out = KomaUI(; kwargs...)\n\nLaunch the Koma's UI.\n\nKeywords\n\ndarkmode: (::Bool, =true) define dark mode style for the UI\nframe: (::Bool, =true) display the upper frame of the Blink window\nphantom_mode: (::String, =\"2D\", opts=[\"2D\", \"3D\"]) load the default phantom as a 2D or 3D brain example\nsim: (::Dict{String,Any}, =Dict{String,Any}()) simulation parameters dictionary\nrec: (::Dict{Symbol,Any}, =Dict{Symbol,Any}()) reconstruction parameters dictionary\nreturn_window: (::Bool, =false) make the out be either 'nothing' or the Blink window, depending on whether the return_window keyword argument is set to true\nshow_window: (::Bool, =true) display the Blink window\n\nReturns\n\nout: (::Nothing or ::Blink.AtomShell.Window) returns either 'nothing' or the Blink window, depending on whether the return_window keyword argument is set to true.\n\nExamples\n\njulia> KomaUI()\n\n\n\n\n\n","category":"function"},{"location":"events/#Sequence-Events","page":"Sequence Events","title":"Sequence Events","text":"","category":"section"},{"location":"events/","page":"Sequence Events","title":"Sequence Events","text":"We refer to RF, Grad, and ADC as \"events\". This section covers the details of how events are defined and manipulated within a Sequence struct.","category":"page"},{"location":"events/#Sequence-Events-2","page":"Sequence Events","title":"Sequence Events","text":"","category":"section"},{"location":"events/","page":"Sequence Events","title":"Sequence Events","text":"As we already know, a Sequence struct contains field names that store arrays of RF, Grad and ADC structs. To create a Sequence, it's essential to understand how to create these fundamental events.","category":"page"},{"location":"events/","page":"Sequence Events","title":"Sequence Events","text":"In the following subsections, we will provide detailed explanations of event parameters and how to create a Sequence using RF, Grad and ADC events.","category":"page"},{"location":"events/#RF","page":"Sequence Events","title":"RF","text":"","category":"section"},{"location":"events/","page":"Sequence Events","title":"Sequence Events","text":"The RF struct is defined in the source code of KomaMRI as follows:","category":"page"},{"location":"events/","page":"Sequence Events","title":"Sequence Events","text":"mutable struct RF\n A\n T\n Δf\n delay::Real\nend","category":"page"},{"location":"events/","page":"Sequence Events","title":"Sequence Events","text":"As you can see, it has 4 field names: ''A'' defines amplitude, ''T'' defines duration time, ''delay'' is the distance between the 0 time and the first waveform sample and ''Δf'' is the displacement respect to the main field carrier frequency (this is for advanced users).","category":"page"},{"location":"events/","page":"Sequence Events","title":"Sequence Events","text":"''A'' and ''T'' can be numbers or vectors of numbers. Depending on the length of the ''A'' and ''T'', KomaMRI interprets different waveforms: ","category":"page"},{"location":"events/","page":"Sequence Events","title":"Sequence Events","text":"Pulse Waveform: A and T are numbers\nUniformly-Sampled Waveform: A is a vector and T is a number\nTime-Shaped Waveform: A and T are both vectors with the same length (zero-order-hold)","category":"page"},{"location":"events/","page":"Sequence Events","title":"Sequence Events","text":"In the image below, we provide a summary of how you can define RF events:","category":"page"},{"location":"events/","page":"Sequence Events","title":"Sequence Events","text":"

    ","category":"page"},{"location":"events/","page":"Sequence Events","title":"Sequence Events","text":"warning: Warning\nIn future versions of KomaMRI, the RF interpolation will change to use linear interpolation between two consecutive samples, similar to what is currently done with the Grad struct.","category":"page"},{"location":"events/","page":"Sequence Events","title":"Sequence Events","text":"Let's look at some basic examples of creating these RF structs and including them in a Sequence struct. The examples should be self-explanatory.","category":"page"},{"location":"events/#RF-Pulse-Waveform","page":"Sequence Events","title":"RF Pulse Waveform","text":"","category":"section"},{"location":"events/","page":"Sequence Events","title":"Sequence Events","text":"julia> A, T, delay = 10e-3, 0.5e-3, 0.1e-3;\n\njulia> rf = RF(A, T, 0, delay)\n←0.1 ms→ RF(10000.0 uT, 0.5 ms, 0.0 Hz)\n\njulia> seq = Sequence(); seq += rf; seq = seq[2:end]\nSequence[ τ = 0.6 ms | blocks: 1 | ADC: 0 | GR: 0 | RF: 1 | DEF: 0 ]\n\njulia> plot_seq(seq; slider=false)","category":"page"},{"location":"events/","page":"Sequence Events","title":"Sequence Events","text":"","category":"page"},{"location":"events/#RF-Uniformly-Sampled-Waveform","page":"Sequence Events","title":"RF Uniformly-Sampled Waveform","text":"","category":"section"},{"location":"events/","page":"Sequence Events","title":"Sequence Events","text":"julia> tl = -3:0.2:-0.2; tr = 0.2:0.2:3;\n\njulia> A = (10e-3)*[sin.(π*tl)./(π*tl); 1; sin.(π*tr)./(π*tr)];\n\njulia> T, delay = 0.5e-3, 0.1e-3;\n\njulia> rf = RF(A, T, 0, delay)\n←0.1 ms→ RF(∿ uT, 0.5 ms, 0.0 Hz)\n\njulia> seq = Sequence(); seq += rf; seq = seq[2:end]\nSequence[ τ = 0.6 ms | blocks: 1 | ADC: 0 | GR: 0 | RF: 1 | DEF: 0 ]\n\njulia> plot_seq(seq; slider=false)","category":"page"},{"location":"events/","page":"Sequence Events","title":"Sequence Events","text":"","category":"page"},{"location":"events/#RF-Time-Shaped-Waveform","page":"Sequence Events","title":"RF Time-Shaped Waveform","text":"","category":"section"},{"location":"events/","page":"Sequence Events","title":"Sequence Events","text":"julia> tl = -4:0.2:-0.2; tr = 0.2:0.2:4\n\njulia> A = (10e-3)*[sin.(π*tl)./(π*tl); 1; sin.(π*tr)./(π*tr)]\n\njulia> T = [0.05e-3*ones(length(tl)); 2e-3; 0.05e-3*ones(length(tl))]\n\njulia> delay = 0.1e-3;\n\njulia> rf = RF(A, T, 0, delay)\n←0.1 ms→ RF(∿ uT, 4.0 ms, 0.0 Hz)\n\njulia> seq = Sequence(); seq += rf; seq = seq[2:end]\nSequence[ τ = 4.1 ms | blocks: 1 | ADC: 0 | GR: 0 | RF: 1 | DEF: 0 ]\n\njulia> plot_seq(seq; slider=false)","category":"page"},{"location":"events/","page":"Sequence Events","title":"Sequence Events","text":"","category":"page"},{"location":"events/#Gradient","page":"Sequence Events","title":"Gradient","text":"","category":"section"},{"location":"events/","page":"Sequence Events","title":"Sequence Events","text":"The Grad struct is defined as follows in the source code of KomaMRI:","category":"page"},{"location":"events/","page":"Sequence Events","title":"Sequence Events","text":"mutable struct Grad\n A\n T\n rise::Real\n fall::Real\n delay::Real\nend","category":"page"},{"location":"events/","page":"Sequence Events","title":"Sequence Events","text":"As you can see, it has 5 field names: ''A'' defines amplitude, ''T'' defines duration time, ''delay'' is the distance between the 0 time and the first waveform sample, ''rise'' and ''fall'' are the time durations of the first and last gradient ramps.","category":"page"},{"location":"events/","page":"Sequence Events","title":"Sequence Events","text":"Just like the RF, ''A'' and ''T'' in the Grad struct can be numbers or vectors of numbers. Depending on the length of the ''A'' and ''T'', KomaMRI interprets different waveforms: ","category":"page"},{"location":"events/","page":"Sequence Events","title":"Sequence Events","text":"Trapezoidal Waveform: A and T are numbers\nUniformly-Sampled Waveform: A is a vector and T is a number\nTime-Shaped Waveform: A and T are both vectors, A has one sample more the T (linear interpolation)","category":"page"},{"location":"events/","page":"Sequence Events","title":"Sequence Events","text":"In the image below, we provide a summary of how you can define Grad events:","category":"page"},{"location":"events/","page":"Sequence Events","title":"Sequence Events","text":"

    ","category":"page"},{"location":"events/","page":"Sequence Events","title":"Sequence Events","text":"Let's look at some basic examples of creating these Grad structs and including them in a Sequence struct, focusing on the ''x'' component of the gradients. The examples should be self-explanatory.","category":"page"},{"location":"events/#Gradient-Trapezoidal-Waveform","page":"Sequence Events","title":"Gradient Trapezoidal Waveform","text":"","category":"section"},{"location":"events/","page":"Sequence Events","title":"Sequence Events","text":"julia> A, T, delay, rise, fall = 50*10e-6, 5e-3, 2e-3, 1e-3, 1e-3;\n\njulia> gr = Grad(A, T, rise, fall, delay)\n←2.0 ms→ Grad(0.5 mT, 0.5 ms, ↑1.0 ms, ↓1.0 ms)\n\njulia> seq = Sequence([gr])\nSequence[ τ = 9.0 ms | blocks: 1 | ADC: 0 | GR: 1 | RF: 0 | DEF: 0 ]\n\njulia> plot_seq(seq; slider=false)","category":"page"},{"location":"events/","page":"Sequence Events","title":"Sequence Events","text":"","category":"page"},{"location":"events/#Gradient-Uniformly-Sampled-Waveform","page":"Sequence Events","title":"Gradient Uniformly-Sampled Waveform","text":"","category":"section"},{"location":"events/","page":"Sequence Events","title":"Sequence Events","text":"julia> t = 0:0.25:7.5\n\njulia> A = 10*10e-6 * sqrt.(π*t) .* sin.(π*t)\n\njulia> T = 10e-3;\n\njulia> delay, rise, fall = 1e-3, 0, 1e-3;\n\njulia> gr = Grad(A, T, rise, fall, delay)\n←1.0 ms→ Grad(∿ mT, 10.0 ms, ↑0.0 ms, ↓1.0 ms)\n\njulia> seq = Sequence([gr])\nSequence[ τ = 12.0 ms | blocks: 1 | ADC: 0 | GR: 1 | RF: 0 | DEF: 0 ]\n\njulia> plot_seq(seq; slider=false)","category":"page"},{"location":"events/","page":"Sequence Events","title":"Sequence Events","text":"","category":"page"},{"location":"events/#Gradient-Time-Shaped-Waveform","page":"Sequence Events","title":"Gradient Time-Shaped Waveform","text":"","category":"section"},{"location":"events/","page":"Sequence Events","title":"Sequence Events","text":"julia> A = 50*10e-6*[1; 1; 0.8; 0.8; 1; 1];\n\njulia> T = 1e-3*[5; 0.2; 5; 0.2; 5];\n\njulia> delay, rise, fall = 1e-3, 1e-3, 1e-3;\n\njulia> gr = Grad(A, T, rise, fall, delay)\n←1.0 ms→ Grad(∿ mT, 15.4 ms, ↑1.0 ms, ↓1.0 ms)\n\njulia> seq = Sequence([gr])\nSequence[ τ = 10.75 ms | blocks: 1 | ADC: 0 | GR: 1 | RF: 0 | DEF: 0 ]\n\njulia> plot_seq(seq; slider=false)","category":"page"},{"location":"events/","page":"Sequence Events","title":"Sequence Events","text":"","category":"page"},{"location":"events/#ADC","page":"Sequence Events","title":"ADC","text":"","category":"section"},{"location":"events/","page":"Sequence Events","title":"Sequence Events","text":"The ADC struct is defined in the KomaMRI source code as follows:","category":"page"},{"location":"events/","page":"Sequence Events","title":"Sequence Events","text":"mutable struct ADC\n N::Integer\n T::Real\n delay::Real\n Δf::Real\n ϕ::Real\nend","category":"page"},{"location":"events/","page":"Sequence Events","title":"Sequence Events","text":"As you can see, it has 5 field names: ''N'' defines number of samples, ''T'' defines total acquisition duration, ''delay'' is the distance between the 0 time and the first sampled signal, ''Δf'' and ''ϕ' are factor to correct signal acquisition (for advanced users).","category":"page"},{"location":"events/","page":"Sequence Events","title":"Sequence Events","text":"In the image below you can see how to define an ADC event:","category":"page"},{"location":"events/","page":"Sequence Events","title":"Sequence Events","text":"

    ","category":"page"},{"location":"events/","page":"Sequence Events","title":"Sequence Events","text":"Let's look at a basic example of defining an ADC struct and including it in a Sequence struct:","category":"page"},{"location":"events/","page":"Sequence Events","title":"Sequence Events","text":"julia> N, T, delay = 16, 5e-3, 1e-3;\n\njulia> adc = ADC(N, T, delay)\nADC(16, 0.005, 0.001, 0.0, 0.0)\n\njulia> seq = Sequence(); seq += adc; seq = seq[2:end]\nSequence[ τ = 6.0 ms | blocks: 1 | ADC: 1 | GR: 0 | RF: 0 | DEF: 0 ]\n\njulia> plot_seq(seq; slider=false)","category":"page"},{"location":"events/","page":"Sequence Events","title":"Sequence Events","text":"","category":"page"},{"location":"events/#Combination-of-Events","page":"Sequence Events","title":"Combination of Events","text":"","category":"section"},{"location":"events/","page":"Sequence Events","title":"Sequence Events","text":"We can include multiple events within a single block of a sequence. The example below demonstrates how to combine an RF struct, three Grad structs for the x-y-z components, and an ADC struct in a single block of a sequence:","category":"page"},{"location":"events/","page":"Sequence Events","title":"Sequence Events","text":"# Define an RF struct\nA, T = 1e-6*[0; -0.1; 0.2; -0.5; 1; -0.5; 0.2; -0.1; 0], 0.5e-3;\nrf = RF(A, T)\n\n# Define a Grad struct for Gx\nA, T, rise = 50*10e-6, 5e-3, 1e-3\ngx = Grad(A, T, rise)\n\n# Define a Grad struct for Gy\nA = 50*10e-6*[0; 0.5; 0.9; 1; 0.9; 0.5; 0; -0.5; -0.9; -1]\nT, rise = 5e-3, 2e-3;\ngy = Grad(A, T, rise)\n\n# Define a Grad struct for Gz\nA = 50*10e-6*[0; 0.5; 0.9; 1; 0.9; 0.5; 0; -0.5; -0.9; -1]\nT = 5e-3*[0.0; 0.1; 0.3; 0.2; 0.1; 0.2; 0.3; 0.2; 0.1]\ngz = Grad(A, T)\n\n# Define an ADC struct\nN, T, delay = 16, 5e-3, 1e-3\nadc = ADC(N, T, delay)","category":"page"},{"location":"events/","page":"Sequence Events","title":"Sequence Events","text":"julia> seq = Sequence([gx; gy; gz;;], [rf;;], [adc])\nSequence[ τ = 9.0 ms | blocks: 1 | ADC: 1 | GR: 3 | RF: 1 | DEF: 0 ]\n\njulia> plot_seq(seq; slider=false)","category":"page"},{"location":"events/","page":"Sequence Events","title":"Sequence Events","text":"","category":"page"},{"location":"events/","page":"Sequence Events","title":"Sequence Events","text":"Once the struct events are defined, it's important to note that to create a single block sequence, you need to provide 2D matrices of Grad and RF structs, as well as a vector of ADC structs as arguments in the Sequence constructor.","category":"page"},{"location":"ui-details/#User-Interface","page":"User Interface","title":"User Interface","text":"","category":"section"},{"location":"ui-details/","page":"User Interface","title":"User Interface","text":"This section explains how to use the user interface of the KomaMRI package and the internal processes during interaction.","category":"page"},{"location":"ui-details/#Basic-Workflow","page":"User Interface","title":"Basic Workflow","text":"","category":"section"},{"location":"ui-details/","page":"User Interface","title":"User Interface","text":"(You can also go to analog steps using Scripts)","category":"page"},{"location":"ui-details/","page":"User Interface","title":"User Interface","text":"As a general overview, remember the following workflow steps when using KomaMRI:","category":"page"},{"location":"ui-details/","page":"User Interface","title":"User Interface","text":"Loading Simulation Inputs: Scanner, Phantom, Sequence\nRunning Simulation\nReconstructing Image using MRIReco","category":"page"},{"location":"ui-details/","page":"User Interface","title":"User Interface","text":"In the following subsections, we will cover all the mentioned steps. First, open the Julia REPL and enter the following commands to include the KomaMRI package and launch the user interface:","category":"page"},{"location":"ui-details/","page":"User Interface","title":"User Interface","text":"julia> using KomaMRI\n\njulia> KomaUI()","category":"page"},{"location":"ui-details/","page":"User Interface","title":"User Interface","text":"

    ","category":"page"},{"location":"ui-details/#Loading-Simulation-Inputs","page":"User Interface","title":"Loading Simulation Inputs","text":"","category":"section"},{"location":"ui-details/","page":"User Interface","title":"User Interface","text":"(You can also go to analog steps using Scripts)","category":"page"},{"location":"ui-details/","page":"User Interface","title":"User Interface","text":"The user interface has preloaded certain inputs into RAM, including the Scanner, Phantom, and Sequence structs. In the following subsections, we will demonstrate how to visualize these inputs.","category":"page"},{"location":"ui-details/#Scanner","page":"User Interface","title":"Scanner","text":"","category":"section"},{"location":"ui-details/","page":"User Interface","title":"User Interface","text":"You can visualize the preloaded Scanner struct by clicking on the Scanner dropdown and then pressing the View Scanner button. The Scanner struct contains hardware-related information, such as the main magnetic field's magnitude:","category":"page"},{"location":"ui-details/","page":"User Interface","title":"User Interface","text":"

    ","category":"page"},{"location":"ui-details/#Phantom","page":"User Interface","title":"Phantom","text":"","category":"section"},{"location":"ui-details/","page":"User Interface","title":"User Interface","text":"To see the phantom already stored in RAM, simply click on the Phantom dropdown an then press the View Phantom button. The preloaded phantom is a slice of a brain:","category":"page"},{"location":"ui-details/","page":"User Interface","title":"User Interface","text":"

    ","category":"page"},{"location":"ui-details/","page":"User Interface","title":"User Interface","text":"It is also possible to load .h5 phantom files. The KomaMRI.jl has some examples stored at ~/.julia/packages/KomaMRI//examples/2.phantoms/. For instance, let's load the sphere_chemical_shift.h5 file:","category":"page"},{"location":"ui-details/","page":"User Interface","title":"User Interface","text":"

    ","category":"page"},{"location":"ui-details/","page":"User Interface","title":"User Interface","text":"Note that you can select different spin parameters to visualize like ρ, T1, T2, among others. ","category":"page"},{"location":"ui-details/#Sequence","page":"User Interface","title":"Sequence","text":"","category":"section"},{"location":"ui-details/","page":"User Interface","title":"User Interface","text":"There are two options to visualize the sequence already preloaded in RAM: in the time domain or in the k-space. The preloaded sequence is a single-shot EPI.","category":"page"},{"location":"ui-details/","page":"User Interface","title":"User Interface","text":"For visualization of the sequence in the time domain, click on the Sequence dropdown and then press the Sequence (MPS) button:","category":"page"},{"location":"ui-details/","page":"User Interface","title":"User Interface","text":"

    ","category":"page"},{"location":"ui-details/","page":"User Interface","title":"User Interface","text":"For visualization of the sequence in the k-space, click on the Sequence dropdown and then press the k-space button:","category":"page"},{"location":"ui-details/","page":"User Interface","title":"User Interface","text":"

    ","category":"page"},{"location":"ui-details/","page":"User Interface","title":"User Interface","text":"You can also display the Moments related to the Sequence by pressing the View Moments and then pressing the buttons for zero, first and second moments.","category":"page"},{"location":"ui-details/","page":"User Interface","title":"User Interface","text":"It is also possible to load Pulseq compatible .seq sequence files. The KomaMRI has some examples stored at ~/.julia/packages/KomaMRI//examples/1.sequences/. For instance, let's load the spiral.seq file and view it the time domain and k-space:","category":"page"},{"location":"ui-details/","page":"User Interface","title":"User Interface","text":"

    ","category":"page"},{"location":"ui-details/","page":"User Interface","title":"User Interface","text":"

    ","category":"page"},{"location":"ui-details/#Running-Simulation","page":"User Interface","title":"Running Simulation","text":"","category":"section"},{"location":"ui-details/","page":"User Interface","title":"User Interface","text":"(You can also go to analog steps using Scripts)","category":"page"},{"location":"ui-details/","page":"User Interface","title":"User Interface","text":"Once the inputs are loaded in RAM, it is possible to perform the simulation to get the Raw Signal.","category":"page"},{"location":"ui-details/#Simulation-Parameters","page":"User Interface","title":"Simulation Parameters","text":"","category":"section"},{"location":"ui-details/","page":"User Interface","title":"User Interface","text":"To visualize the default simulation parameters, click on the Simulate! dropdown and then press the View Options button:","category":"page"},{"location":"ui-details/","page":"User Interface","title":"User Interface","text":"

    ","category":"page"},{"location":"ui-details/#Visualization-of-the-Raw-Signal","page":"User Interface","title":"Visualization of the Raw Signal","text":"","category":"section"},{"location":"ui-details/","page":"User Interface","title":"User Interface","text":"Press the Simulate! button to perform the simulation (this may take a while). Automatically the generated Raw Signal should be displayed or you can click on the Raw Data dropdown and then press the View Raw Data button:","category":"page"},{"location":"ui-details/","page":"User Interface","title":"User Interface","text":"

    ","category":"page"},{"location":"ui-details/#Reconstructing-Image-using-MRIReco","page":"User Interface","title":"Reconstructing Image using MRIReco","text":"","category":"section"},{"location":"ui-details/","page":"User Interface","title":"User Interface","text":"(You can also go to analog steps using Scripts)","category":"page"},{"location":"ui-details/","page":"User Interface","title":"User Interface","text":"Once the Raw Signal is loaded in RAM, it is possible to reconstruct the image.","category":"page"},{"location":"ui-details/#Reconstruction-Parameters","page":"User Interface","title":"Reconstruction Parameters","text":"","category":"section"},{"location":"ui-details/","page":"User Interface","title":"User Interface","text":"To visualize the default reconstruction parameters, click on the Reconstruct! dropdown and then press the View Options button:","category":"page"},{"location":"ui-details/","page":"User Interface","title":"User Interface","text":"

    ","category":"page"},{"location":"ui-details/#Visualization-of-the-Image","page":"User Interface","title":"Visualization of the Image","text":"","category":"section"},{"location":"ui-details/","page":"User Interface","title":"User Interface","text":"Press the Reconstruct! button to perform the reconstruction (this may take a while). Automatically the generated Image should be displayed or you can click on the he Reconstruct! dropdown and then press the |Image| button:","category":"page"},{"location":"ui-details/","page":"User Interface","title":"User Interface","text":"

    ","category":"page"},{"location":"ui-details/#Exporting-Results-to-.mat-File","page":"User Interface","title":"Exporting Results to .mat File","text":"","category":"section"},{"location":"ui-details/","page":"User Interface","title":"User Interface","text":"(You can also go to analog steps using Scripts)","category":"page"},{"location":"ui-details/","page":"User Interface","title":"User Interface","text":"The user interface has the option to save the results in .mat format. Simply click on the Export to .mat and you have the alternatives to get data independently or you can press the All button to have all the results given by the simulator:","category":"page"},{"location":"ui-details/","page":"User Interface","title":"User Interface","text":"

    ","category":"page"},{"location":"ui-details/","page":"User Interface","title":"User Interface","text":"So far, and due to limitations of the user interface dependencies, the .mat files are saved in the temporal directory of your computer OS, which can be found by typing the tempdir() command in the Julia REPL.","category":"page"},{"location":"programming-workflow/#Julia-Scripts","page":"Julia Scripts","title":"Julia Scripts","text":"","category":"section"},{"location":"programming-workflow/","page":"Julia Scripts","title":"Julia Scripts","text":"You should already be familiar with the Graphical User Interface of KomaMRI. However, you can also use this package directly from the Julia REPL or write your own Julia scripts. This allows you to unlock the full potential of KomaMRI, enabling you to utilize more of its functionalities and even test your own MRI ideas.","category":"page"},{"location":"programming-workflow/","page":"Julia Scripts","title":"Julia Scripts","text":"This section demonstrates a basic workflow with KomaMRI through writing your own scripts or entering commands directly into the Julia REPL. Let's begin.","category":"page"},{"location":"programming-workflow/#Basic-Workflow","page":"Julia Scripts","title":"Basic Workflow","text":"","category":"section"},{"location":"programming-workflow/","page":"Julia Scripts","title":"Julia Scripts","text":"(You can also go to analog steps using UI)","category":"page"},{"location":"programming-workflow/","page":"Julia Scripts","title":"Julia Scripts","text":"As a general overview, remember the following workflow steps when using KomaMRI:","category":"page"},{"location":"programming-workflow/","page":"Julia Scripts","title":"Julia Scripts","text":"Loading Simulation Inputs: Scanner, Phantom, Sequence\nRunning Simulation\nReconstructing Image using MRIReco","category":"page"},{"location":"programming-workflow/","page":"Julia Scripts","title":"Julia Scripts","text":"Let's replicate these previous steps in a Julia script. You will obtain the following code, which you can copy and paste into the Julia REPL:","category":"page"},{"location":"programming-workflow/","page":"Julia Scripts","title":"Julia Scripts","text":"# Import the package\nusing KomaMRI\n\n# Define scanner, object and sequence\nsys = Scanner()\nobj = brain_phantom2D()\nseq = PulseDesigner.EPI_example()\n\n# Define simulation parameters and perform simulation\nsim_params = KomaMRICore.default_sim_params() \nraw = simulate(obj, seq, sys; sim_params)\n\n# Auxiliary function for reconstruction\nfunction reconstruct_2d_image(raw::RawAcquisitionData)\n acqData = AcquisitionData(raw)\n acqData.traj[1].circular = false #Removing circular window\n C = maximum(2*abs.(acqData.traj[1].nodes[:])) #Normalize k-space to -.5 to .5 for NUFFT\n acqData.traj[1].nodes = acqData.traj[1].nodes[1:2,:] ./ C\n Nx, Ny = raw.params[\"reconSize\"][1:2]\n recParams = Dict{Symbol,Any}()\n recParams[:reconSize] = (Nx, Ny)\n recParams[:densityWeighting] = true\n rec = reconstruction(acqData, recParams)\n image3d = reshape(rec.data, Nx, Ny, :)\n image2d = (abs.(image3d) * prod(size(image3d)[1:2]))[:,:,1]\n return image2d\nend\n\n# Perform reconstruction to get the image\nimage = reconstruct_2d_image(raw)","category":"page"},{"location":"programming-workflow/","page":"Julia Scripts","title":"Julia Scripts","text":"Let's go through this script step by step.","category":"page"},{"location":"programming-workflow/#Loading-Simulation-Inputs","page":"Julia Scripts","title":"Loading Simulation Inputs","text":"","category":"section"},{"location":"programming-workflow/","page":"Julia Scripts","title":"Julia Scripts","text":"(You can also go to analog steps using UI)","category":"page"},{"location":"programming-workflow/","page":"Julia Scripts","title":"Julia Scripts","text":"The inputs of the simulation are created in the following part of the script: ","category":"page"},{"location":"programming-workflow/","page":"Julia Scripts","title":"Julia Scripts","text":"# Define scanner, object and sequence\nsys = Scanner()\nobj = brain_phantom2D()\nseq = PulseDesigner.EPI_example()","category":"page"},{"location":"programming-workflow/#Scanner","page":"Julia Scripts","title":"Scanner","text":"","category":"section"},{"location":"programming-workflow/","page":"Julia Scripts","title":"Julia Scripts","text":"The previously created Scanner struct contains default parameters. In your initial simulations, you will likely use this default struct without making any modifications. You can view all the parameters by displaying the struct variable in the Julia REPL. The Scanner's parameters include hardware limitations such as the main magnetic field, maximum gradient values, minimum raster times, and more. You may want to adjust these values for your future custom simulations.","category":"page"},{"location":"programming-workflow/","page":"Julia Scripts","title":"Julia Scripts","text":"julia> sys\nScanner\n B0: Float64 1.5\n B1: Float64 1.0e-5\n Gmax: Float64 0.06\n Smax: Int64 500\n ADC_Δt: Float64 2.0e-6\n seq_Δt: Float64 1.0e-5\n GR_Δt: Float64 1.0e-5\n RF_Δt: Float64 1.0e-6\n RF_ring_down_T: Float64 2.0e-5\n RF_dead_time_T: Float64 0.0001\n ADC_dead_time_T: Float64 1.0e-5","category":"page"},{"location":"programming-workflow/#Phantom","page":"Julia Scripts","title":"Phantom","text":"","category":"section"},{"location":"programming-workflow/","page":"Julia Scripts","title":"Julia Scripts","text":"The Phantom struct created in this example represents a slice of a brain. To create it, we use the function brain_phantom2D, which is part of the subdependency KomaMRICore. While KomaMRI provides some phantom examples for experimentation, you may also want to create your custom Phantom struct tailored to your specific requirements.","category":"page"},{"location":"programming-workflow/","page":"Julia Scripts","title":"Julia Scripts","text":"The Phantom struct contains MRI parameters related to the magnetization properties of an object. These parameters include magnetization positions, proton density, relaxation times, off-resonance, among others. To view all the keys and values of the object, you can do so in the Julia REPL as follows:","category":"page"},{"location":"programming-workflow/","page":"Julia Scripts","title":"Julia Scripts","text":"julia> obj\nPhantom{Float64}\n name: String \"brain2D_axial\"\n x: Array{Float64}((6506,)) [-0.084, -0.084, … 0.086, 0.086]\n y: Array{Float64}((6506,)) [-0.03, -0.028, … 0.0, 0.002]\n z: Array{Float64}((6506,)) [-0.0, -0.0, … 0.0, 0.0]\n ρ: Array{Float64}((6506,)) [0.7, 0.7, … 0.7, 0.7]\n T1: Array{Float64}((6506,)) [0.569, 0.569, … 0.569, 0.569]\n T2: Array{Float64}((6506,)) [0.329, 0.329, … 0.329, 0.329]\n T2s: Array{Float64}((6506,)) [0.058, 0.058, … 0.058, 0.058]\n Δw: Array{Float64}((6506,)) [-0.0, -0.0, … -0.0, -0.0]\n Dλ1: Array{Float64}((6506,)) [0.0, 0.0, … 0.0, 0.0]\n Dλ2: Array{Float64}((6506,)) [0.0, 0.0, … 0.0, 0.0]\n Dθ: Array{Float64}((6506,)) [0.0, 0.0, … 0.0, 0.0]\n...","category":"page"},{"location":"programming-workflow/","page":"Julia Scripts","title":"Julia Scripts","text":"As you can see, attributes of the Phantom struct are vectors representing object properties, with each element holding a value associated with a single magnetization.","category":"page"},{"location":"programming-workflow/","page":"Julia Scripts","title":"Julia Scripts","text":"You can also visualize the Phantom struct using the plot_phantom_map function, which is part of the KomaMRIPlots subdependency. This function plots the magnitude of a property for each magnetization at a specific spatial position. You can observe properties such as proton density and relaxation times, so feel free to replace the :ρ symbol with another property of the phantom in the example below:","category":"page"},{"location":"programming-workflow/","page":"Julia Scripts","title":"Julia Scripts","text":"julia> plot_phantom_map(obj, :ρ)","category":"page"},{"location":"programming-workflow/","page":"Julia Scripts","title":"Julia Scripts","text":"","category":"page"},{"location":"programming-workflow/","page":"Julia Scripts","title":"Julia Scripts","text":"To utilize test phantoms included with KomaMRI, navigate to the \"examples\" folder and use the read_phantom_jemris function to read a phantom in .h5 format. The following steps outline how to do this in Julia:","category":"page"},{"location":"programming-workflow/","page":"Julia Scripts","title":"Julia Scripts","text":"julia> path_koma = dirname(dirname(pathof(KomaMRI)))\njulia> path_sphere = joinpath(path_koma, \"examples\", \"2.phantoms\", \"sphere_chemical_shift.h5\")\njulia> sphere = read_phantom_jemris(path_sphere)\njulia> plot_phantom_map(sphere, :T2)","category":"page"},{"location":"programming-workflow/","page":"Julia Scripts","title":"Julia Scripts","text":"","category":"page"},{"location":"programming-workflow/#Sequence","page":"Julia Scripts","title":"Sequence","text":"","category":"section"},{"location":"programming-workflow/","page":"Julia Scripts","title":"Julia Scripts","text":"The Sequence struct in the example represents one of the most basic MRI sequences. It excites the object with a 90° RF pulse and then uses EPI gradients to fill the k-space in a \"square\" manner. While you may want to create your sequences for experiments, you can always use some of the examples already available in KomaMRI.","category":"page"},{"location":"programming-workflow/","page":"Julia Scripts","title":"Julia Scripts","text":"In MRI, the sequence must be carefully designed with precise timing to obtain an image. It includes subcomponents such as gradients, radio-frequency excitation signals, and sample acquisition. For more information on constructing a Sequence struct, refer to the Sequence section.","category":"page"},{"location":"programming-workflow/","page":"Julia Scripts","title":"Julia Scripts","text":"You can view general information about a Sequence struct by displaying it in the Julia REPL:","category":"page"},{"location":"programming-workflow/","page":"Julia Scripts","title":"Julia Scripts","text":"julia> seq\nSequence[ τ = 62.846 ms | blocks: 204 | ADC: 101 | GR: 205 | RF: 1 | DEF: 5 ]","category":"page"},{"location":"programming-workflow/","page":"Julia Scripts","title":"Julia Scripts","text":"For more precise timing checks, you can use the plot_seq function:","category":"page"},{"location":"programming-workflow/","page":"Julia Scripts","title":"Julia Scripts","text":"julia> plot_seq(seq; range=[0 30])","category":"page"},{"location":"programming-workflow/","page":"Julia Scripts","title":"Julia Scripts","text":"","category":"page"},{"location":"programming-workflow/","page":"Julia Scripts","title":"Julia Scripts","text":"It is important to consider how the sequence traverses through k-space. The get_kspace function does precisely that:","category":"page"},{"location":"programming-workflow/","page":"Julia Scripts","title":"Julia Scripts","text":"julia> plot_kspace(seq)","category":"page"},{"location":"programming-workflow/","page":"Julia Scripts","title":"Julia Scripts","text":"","category":"page"},{"location":"programming-workflow/","page":"Julia Scripts","title":"Julia Scripts","text":"Additionally, there are helpful sequence construction functions within a submodule of KomaMRI called PulseDesigner. These functions include RF_hard, RF_sinc, EPI, radial_base and spiral_base. For more details on how to use them, refer to the API documentation.","category":"page"},{"location":"programming-workflow/","page":"Julia Scripts","title":"Julia Scripts","text":"KomaMRI is also compatible with Pulseq. The package installation includes some .seq files in Pulseq format, which can be read and used as a Sequence struct. Here's how to read a spiral Pulseq file stored in the \"examples\" folder of KomaMRI:","category":"page"},{"location":"programming-workflow/","page":"Julia Scripts","title":"Julia Scripts","text":"julia> path_koma = dirname(dirname(pathof(KomaMRI)))\njulia> path_spiral = joinpath(path_koma, \"examples\", \"1.sequences\", \"spiral.seq\")\njulia> spiral = read_seq(path_spiral)\njulia> plot_seq(spiral)\njulia> plot_kspace(spiral)","category":"page"},{"location":"programming-workflow/","page":"Julia Scripts","title":"Julia Scripts","text":"","category":"page"},{"location":"programming-workflow/#Running-Simulation","page":"Julia Scripts","title":"Running Simulation","text":"","category":"section"},{"location":"programming-workflow/","page":"Julia Scripts","title":"Julia Scripts","text":"(You can also go to analog steps using UI)","category":"page"},{"location":"programming-workflow/","page":"Julia Scripts","title":"Julia Scripts","text":"The following lines in the example script configure and perform the simulation:","category":"page"},{"location":"programming-workflow/","page":"Julia Scripts","title":"Julia Scripts","text":"# Define simulation parameters and perform simulation\nsim_params = KomaMRICore.default_sim_params() \nraw = simulate(obj, seq, sys; sim_params)","category":"page"},{"location":"programming-workflow/#Simulation-Parameters","page":"Julia Scripts","title":"Simulation Parameters","text":"","category":"section"},{"location":"programming-workflow/","page":"Julia Scripts","title":"Julia Scripts","text":"To perform simulations, KomaMRI requires certain parameters. You can use the default parameters for testing, but you also have the option to customize specific simulation aspects. In the example, we use the default_sim_params function to create a dictionary with default simulation parameters. You can view the keys that can be modified by displaying the sim_params variable:","category":"page"},{"location":"programming-workflow/","page":"Julia Scripts","title":"Julia Scripts","text":"julia> sim_params\nDict{String, Any} with 9 entries:\n \"return_type\" => \"raw\"\n \"Nblocks\" => 20\n \"gpu\" => true\n \"Nthreads\" => 1\n \"gpu_device\" => 0\n \"sim_method\" => Bloch()\n \"precision\" => \"f32\"\n \"Δt\" => 0.001\n \"Δt_rf\" => 5.0e-5","category":"page"},{"location":"programming-workflow/","page":"Julia Scripts","title":"Julia Scripts","text":"All of these parameters deserve special attention. We will explain some of the most important ones here. For instance, \"Δt\" and \"Δt_rf\" represent the raster times for the gradients and RFs. \"return_type\" specifies the type of variable returned by the simulator (by default, it returns an object ready for use with MRIReco for reconstruction, but you can use the value \"mat\" to return a simple vector). \"gpu\" indicates whether you want to use your GPU device for simulations, and \"precision\" sets the floating-point precision. For more details on how to set these parameters, please refer to the Simulation Parameters Section.","category":"page"},{"location":"programming-workflow/#Raw-Signal","page":"Julia Scripts","title":"Raw Signal","text":"","category":"section"},{"location":"programming-workflow/","page":"Julia Scripts","title":"Julia Scripts","text":"The simulation is performed using the simulate function, which requires three arguments: a Scanner struct, a Phantom struct, and a Sequence struct. Optionally, you can include the keyword argument sim_params if you wish to use custom simulation parameters.","category":"page"},{"location":"programming-workflow/","page":"Julia Scripts","title":"Julia Scripts","text":"In the example, we can see that the output of the simulation is a special struct:","category":"page"},{"location":"programming-workflow/","page":"Julia Scripts","title":"Julia Scripts","text":"julia> typeof(raw)\nRawAcquisitionData\n\njulia> raw\nRawAcquisitionData[SeqName: epi | 101 Profile(s) of 101×1]","category":"page"},{"location":"programming-workflow/","page":"Julia Scripts","title":"Julia Scripts","text":"You can plot the simulation result with the plot_signal function like so:","category":"page"},{"location":"programming-workflow/","page":"Julia Scripts","title":"Julia Scripts","text":"julia> plot_signal(raw)","category":"page"},{"location":"programming-workflow/","page":"Julia Scripts","title":"Julia Scripts","text":"","category":"page"},{"location":"programming-workflow/#Reconstructing-Image-using-MRIReco","page":"Julia Scripts","title":"Reconstructing Image using MRIReco","text":"","category":"section"},{"location":"programming-workflow/","page":"Julia Scripts","title":"Julia Scripts","text":"(You can also go to analog steps using UI)","category":"page"},{"location":"programming-workflow/","page":"Julia Scripts","title":"Julia Scripts","text":"KomaMRI does not handle reconstruction; instead, you should utilize the MRIReco package to generate an image. For convenience, when you install KomaMRI, you also install MRIReco, allowing you to access functions from that package. You should pay special attention to the RawAcquisitionData and AcquisitionData structs, as well as the reconstruction function.","category":"page"},{"location":"programming-workflow/","page":"Julia Scripts","title":"Julia Scripts","text":"In the example below, we define an auxiliary function, reconstruct_2d_image, which takes a raw signal struct, RawAcquisitionData, as input and returns a 2D Array representing an image. Within this function, we create an AcquisitionData struct and set some reconstruction parameters, which serve as inputs for the reconstruction function. The latter function is responsible for the image generation process.","category":"page"},{"location":"programming-workflow/","page":"Julia Scripts","title":"Julia Scripts","text":"# Auxiliary function for reconstruction\nfunction reconstruct_2d_image(raw::RawAcquisitionData)\n acqData = AcquisitionData(raw)\n acqData.traj[1].circular = false #Removing circular window\n C = maximum(2*abs.(acqData.traj[1].nodes[:])) #Normalize k-space to -.5 to .5 for NUFFT\n acqData.traj[1].nodes = acqData.traj[1].nodes[1:2,:] ./ C\n Nx, Ny = raw.params[\"reconSize\"][1:2]\n recParams = Dict{Symbol,Any}()\n recParams[:reconSize] = (Nx, Ny)\n recParams[:densityWeighting] = true\n rec = reconstruction(acqData, recParams)\n image3d = reshape(rec.data, Nx, Ny, :)\n image2d = (abs.(image3d) * prod(size(image3d)[1:2]))[:,:,1]\n return image2d\nend\n\n# Perform reconstruction to get the image\nimage = reconstruct_2d_image(raw)","category":"page"},{"location":"programming-workflow/","page":"Julia Scripts","title":"Julia Scripts","text":"If you need more information about how to use the AcquisitionData and the how to fill the reconstruction parameters, you need to visit the MRIReco webpage).","category":"page"},{"location":"programming-workflow/","page":"Julia Scripts","title":"Julia Scripts","text":"To display the image, you can use the plot_image function which is part of the KomaMRIPlots subpackage:","category":"page"},{"location":"programming-workflow/","page":"Julia Scripts","title":"Julia Scripts","text":"julia> plot_image(image)","category":"page"},{"location":"programming-workflow/","page":"Julia Scripts","title":"Julia Scripts","text":"
    ","category":"page"},{"location":"programming-workflow/#Exporting-Results-to-.mat-File","page":"Julia Scripts","title":"Exporting Results to .mat File","text":"","category":"section"},{"location":"programming-workflow/","page":"Julia Scripts","title":"Julia Scripts","text":"(You can also go to analog steps using UI)","category":"page"},{"location":"programming-workflow/","page":"Julia Scripts","title":"Julia Scripts","text":"Many people in the MRI community uses MATLAB, probably you are one of them and you want to process the raw signal in the MATLAB environment after simulation is done with KomaMRI. Here we show you an example of how to save a .mat file with the information of the raw signal thank to the help of the MAT package:","category":"page"},{"location":"programming-workflow/","page":"Julia Scripts","title":"Julia Scripts","text":"Many people in the MRI community use MATLAB; you might be one of them and may want to process the Raw Signal in the MATLAB environment after simulation is completed with KomaMRI. Here, we provide an example of how to save a .mat file containing the Raw Signal information using the MAT package.","category":"page"},{"location":"programming-workflow/","page":"Julia Scripts","title":"Julia Scripts","text":"# Use the MAT package\nusing MAT\n\n# Perform simulation to return an Array type\nsim_params[\"return_type\"] = \"mat\"\nraw = simulate(obj, seq, sys; sim_params)\n\n# Save the .mat file in the temp directory\nmatwrite(joinpath(tempdir(), \"koma-raw.mat\"), Dict(\"raw\" => raw))","category":"page"},{"location":"programming-workflow/","page":"Julia Scripts","title":"Julia Scripts","text":"Note that we need to simulate to return an array type (not the default RawAcquisitionData), and then we utilize the matwrite function to save a file named \"koma-raw.mat\" in your computer's temporary directory. Now, you can navigate to your temporary directory (which you can find by displaying the result of tempdir() in the Julia REPL) and locate the \"koma-raw.mat\" file.","category":"page"},{"location":"generated/examples/03-ChemicalShiftEPI/","page":"Chemical Shift in an EPI sequence","title":"Chemical Shift in an EPI sequence","text":"EditURL = \"../../../../examples/literate/examples/03-ChemicalShiftEPI.jl\"","category":"page"},{"location":"generated/examples/03-ChemicalShiftEPI/#Chemical-Shift-in-an-EPI-sequence","page":"Chemical Shift in an EPI sequence","title":"Chemical Shift in an EPI sequence","text":"","category":"section"},{"location":"generated/examples/03-ChemicalShiftEPI/","page":"Chemical Shift in an EPI sequence","title":"Chemical Shift in an EPI sequence","text":"(Image: ) (Image: )","category":"page"},{"location":"generated/examples/03-ChemicalShiftEPI/","page":"Chemical Shift in an EPI sequence","title":"Chemical Shift in an EPI sequence","text":"using KomaMRI # hide\nsys = Scanner() # hide","category":"page"},{"location":"generated/examples/03-ChemicalShiftEPI/","page":"Chemical Shift in an EPI sequence","title":"Chemical Shift in an EPI sequence","text":"For a more realistic example, we will use a brain phantom.","category":"page"},{"location":"generated/examples/03-ChemicalShiftEPI/","page":"Chemical Shift in an EPI sequence","title":"Chemical Shift in an EPI sequence","text":"obj = brain_phantom2D() # a slice of a brain\np1 = plot_phantom_map(obj, :T2 ; height=400, width=400, view_2d=true)\np2 = plot_phantom_map(obj, :Δw ; height=400, width=400, view_2d=true)\nsavefig(p1, \"../../assets/examples/2-phantom1.html\") # hide\nsavefig(p2, \"../../assets/examples/2-phantom2.html\") # hide","category":"page"},{"location":"generated/examples/03-ChemicalShiftEPI/","page":"Chemical Shift in an EPI sequence","title":"Chemical Shift in an EPI sequence","text":"At the left, you can see the T_2 map of the phantom, and at the right, the off-resonance Deltaomega. In this example, the fat is the only source of off-resonance (with Delta f = -220mathrmHz) and you can see it in black in the off-resonance map.","category":"page"},{"location":"generated/examples/03-ChemicalShiftEPI/","page":"Chemical Shift in an EPI sequence","title":"Chemical Shift in an EPI sequence","text":"","category":"page"},{"location":"generated/examples/03-ChemicalShiftEPI/","page":"Chemical Shift in an EPI sequence","title":"Chemical Shift in an EPI sequence","text":"Then, we will load an EPI sequence, that is well known for being affected by off-resonance. With this sequence, we will be able visualize the effect of the chemical shift.","category":"page"},{"location":"generated/examples/03-ChemicalShiftEPI/","page":"Chemical Shift in an EPI sequence","title":"Chemical Shift in an EPI sequence","text":"seq_file = joinpath(dirname(pathof(KomaMRI)), \"../examples/3.koma_paper/comparison_accuracy/sequences/EPI/epi_100x100_TE100_FOV230.seq\")\nseq = read_seq(seq_file)\np3 = plot_seq(seq; range=[0 40], slider=true, height=300)\nsavefig(p3, \"../../assets/examples/2-seq.html\") # hide","category":"page"},{"location":"generated/examples/03-ChemicalShiftEPI/","page":"Chemical Shift in an EPI sequence","title":"Chemical Shift in an EPI sequence","text":"Feel free to explore the sequence's plot 🔍 below!","category":"page"},{"location":"generated/examples/03-ChemicalShiftEPI/","page":"Chemical Shift in an EPI sequence","title":"Chemical Shift in an EPI sequence","text":"","category":"page"},{"location":"generated/examples/03-ChemicalShiftEPI/","page":"Chemical Shift in an EPI sequence","title":"Chemical Shift in an EPI sequence","text":"If we simulate this sequence we will end up with the following signal.","category":"page"},{"location":"generated/examples/03-ChemicalShiftEPI/","page":"Chemical Shift in an EPI sequence","title":"Chemical Shift in an EPI sequence","text":"raw = simulate(obj, seq, sys)\np4 = plot_signal(raw; range=[98.4 103.4] , height=300)\nsavefig(p4, \"../../assets/examples/2-signal.html\") # hide","category":"page"},{"location":"generated/examples/03-ChemicalShiftEPI/","page":"Chemical Shift in an EPI sequence","title":"Chemical Shift in an EPI sequence","text":"","category":"page"},{"location":"generated/examples/03-ChemicalShiftEPI/","page":"Chemical Shift in an EPI sequence","title":"Chemical Shift in an EPI sequence","text":"Now, we need to inspect what effect the off-resonance had in the reconstructed image. As you can see, the fat layer is now shifted to a different position 🤯, this is why the effect is called chemical shift!","category":"page"},{"location":"generated/examples/03-ChemicalShiftEPI/","page":"Chemical Shift in an EPI sequence","title":"Chemical Shift in an EPI sequence","text":"# Get the acquisition data\nacq = AcquisitionData(raw)\nacq.traj[1].circular = false #This is to remove the circular mask\n\n# Setting up the reconstruction parameters\nNx, Ny = raw.params[\"reconSize\"][1:2]\nreconParams = Dict{Symbol,Any}(:reco=>\"direct\", :reconSize=>(Nx, Ny))\nimage = reconstruction(acq, reconParams)\n\n# Plotting the recon\nslice_abs = abs.(image[:, :, 1])\np5 = plot_image(slice_abs; height=400)\nsavefig(p5, \"../../assets/examples/2-recon.html\") # hide","category":"page"},{"location":"generated/examples/03-ChemicalShiftEPI/","page":"Chemical Shift in an EPI sequence","title":"Chemical Shift in an EPI sequence","text":"
    ","category":"page"},{"location":"generated/examples/03-ChemicalShiftEPI/","page":"Chemical Shift in an EPI sequence","title":"Chemical Shift in an EPI sequence","text":"","category":"page"},{"location":"generated/examples/03-ChemicalShiftEPI/","page":"Chemical Shift in an EPI sequence","title":"Chemical Shift in an EPI sequence","text":"This page was generated using Literate.jl.","category":"page"},{"location":"mri-theory/#Simulation","page":"Simulation","title":"Simulation","text":"","category":"section"},{"location":"mri-theory/#General-Overview","page":"Simulation","title":"General Overview","text":"","category":"section"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"KomaMRI simulates the magnetization of each spin of a Phantom for variable magnetic fields given by a Sequence. It is assumed that a single spin is independent of the state of the other spins in the system (a key feature that enables parallelization). Furthermore, there are defined two regimes in the Sequence: excitation and precession. During the latter, the excitation fields are nulled and are useful for simplifying some physical equations.","category":"page"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"The are more internal considerations in the KomaMRI implementation. The Figure 1 summarizes the functions called to perform the simulation.","category":"page"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"

    \n

    \n \n
    Figure 1: The sequence ${\\tt seq }$ is discretized after calculating the required time points in the wrapper function ${\\tt simulate}$. The time points are then divided into ${\\tt Nblocks}$ to reduce the amount of memory used. The phantom ${\\tt obj}$ is divided into ${\\tt Nthreads}$, and ${\\bf KomaMRI}$ will use either ${\\tt run\\_spin\\_excitation!}$ or ${\\tt run\\_spin\\_precession!}$ depending on the regime. If an ${\\tt ADC}$ object is present, the simulator will add the signal contributions of each thread to construct the acquired signal ${\\tt sig[t]}$. All the parameters: ${\\tt Nthreads}$, ${\\tt Nblocks}$, ${\\tt Δt_{rf}}$, and ${\\tt Δt}$, are passed through a dictionary called ${\\tt sim\\_params}$ as an optional parameter of the simulate function.\n
    \n

    ","category":"page"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"From the programming perspective, it is needed to call the function simulate with the sim_params dictionary keyword argument. A user can change the values of the following keys:","category":"page"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"\"return_type\": defines the output of the simulate function. Possible values are \"raw\", \"mat\", and \"state\", corresponding to outputting a MRIReco RawAcquisitionData, the signal values, and the last magnetization state of the simulation, respectively.\n\"sim_method\": defines the type of simulation. The default value is Bloch(), but you can alternatively use the BlochDict() simulation method. Moreover, you have the flexibility to create your own methods without altering the KomaMRI source code; for further details, refer to the Simulation Method Extensibility section.\n\"Δt\": raster time for gradients.\n\"Δt_rf\": raster time for RFs.\n\"precision\": defines the floating-point simulation precision. You can choose between \"f32\" and \"f64\" to use Float32 and Float64 primitive types, respectively. It's important to note that, especially for GPU operations, using \"f32\" is generally much faster.\n\"Nblocks\" divides the simulation into a specified number of time blocks. This parameter is designed to conserve RAM resources, as KomaMRI computes a series of simulations consecutively, each with the specified number of blocks determined by the value of \"Nblocks\".\n\"Nthreads\": divides the Phantom into a specified number of threads. Because spins are modeled independently of each other, KomaMRI can solve simulations in parallel threads, speeding up the execution time.\n\"gpu\": is a boolean that determines whether to use GPU or CPU hardware resources, as long as they are available on the host computer.\n\"gpu_device\": sets the index ID of the available GPU in the host computer.","category":"page"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"For instance, if you want to perform a simulation on the CPU with float64 precision using the BlochDict() method (assuming you have already defined obj and seq), you can do so like this:","category":"page"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"# Set non-default simulation parameters and run simulation\nsim_params = KomaMRICore.default_sim_params() \nsim_params[\"gpu\"] = false\nsim_params[\"precision\"] = \"f64\"\nsim_params[\"sim_method\"] = BlochDict()\nraw = simulate(obj, seq, sys; sim_params)","category":"page"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"Additionally, the user must be aware of the functions run_spin_excitation! and run_spin_precession! which defines the algorithm for excitation and precession regimes respectively and can be changed by the user without modifying the source code (more details at Simulation Method Extensibility).","category":"page"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"Previous simulation, the Sequence is discretized to consider specific time points which are critical for simulation. The user can control the time between intermediate gradient samples with the parameter Δt. Similarly, the parameter Δt_rf manages the time between RF samples, and can be relatively large for 2D imaging where the slice profile is less relevant.","category":"page"},{"location":"mri-theory/#Computation-Efficiency","page":"Simulation","title":"Computation Efficiency","text":"","category":"section"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"To reduce the memory usage of our simulator, we subdivided time into Nblocks. KomaMRI classifies each block in either the excitation regime or the precession regime before the simulation.","category":"page"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"We increased the simulation speed by separating the calculations into Nthreads and then performing the GPU parallel operations with CUDA.jl . This separation is possible as all magnetization vectors are independent of one another.","category":"page"},{"location":"mri-theory/#Simulation-Method-Extensibility","page":"Simulation","title":"Simulation Method Extensibility","text":"","category":"section"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"In Julia, functions use different methods based on the input types via multiple dispatch. We used this to specialize the simulation functions for a given sim_method <:SimulationMethod specified in sim_params. For a given simulation method, the function initialize_spin_state outputs a variable Xt <: SpinStateRepresentation that is passed through the simulation (Figure 1). For the default simulation method Bloch, the spin state is of type Mag, but can be extended to a custom representation, like for example EPGs44 or others. Then, the functions run_spin_excitation! and run_spin_precession! can be described externally for custom types sim_method and Xt, extending Koma’s functionalities without the need of modifying the source code and taking advantage of all of Koma’s features.","category":"page"},{"location":"mri-theory/#Bloch-Simulation-Method","page":"Simulation","title":"Bloch Simulation Method","text":"","category":"section"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"This is the default simulation method used by KomaMRI, however it can always be specified by setting the sim_method = Bloch() entry of the sim_params dictionary. In the following subsection, we will explain the physical and mathematical background and some considerations and assumptions that enables to speed up the simulation.","category":"page"},{"location":"mri-theory/#Physical-and-Mathematical-Background","page":"Simulation","title":"Physical and Mathematical Background","text":"","category":"section"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"The Bloch method of KomaMRI simulates the magnetization of each spin by solving the Bloch equations in the rotating frame:","category":"page"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"beginalign tag1\n\nfracmathrmd boldsymbolMmathrmd t =\n gamma boldsymbolM times boldsymbolB\n- fracM_x hatx + M_y hatyT_2\n- fracM_z hatx + M_0 hatyT_1 \n\nendalign","category":"page"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"with gamma the gyromagnetic ratio, boldsymbolM = M_x M_y M_z^T the magnetization vector, and","category":"page"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"boldsymbolB = B_1x(t) B_1y(t) boldsymbolG(t) cdot boldsymbolx + Delta omega(t)^T","category":"page"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"the effective magnetic field. M_0 is the proton density, T_1 and T_2 are the relaxation times, and Delta omega is the off-resonance, for each position.","category":"page"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"The Bloch Simulation Method also uses the technique of operator splitting to simplify the solution of Equation (1). This reflects mathematically the intuition of separating the Bloch equations in a rotation operator described by","category":"page"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"beginalign tag2\n\nfracmathrmdmathrmdt boldsymbolM =\nbeginbmatrix\n 0 gamma B_z -gamma B_y \n-gamma B_z 0 gamma B_x \n gamma B_y -gamma B_x 0\nendbmatrix\nboldsymbolM \n\nendalign","category":"page"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"and a relaxation operator described by","category":"page"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"beginalign tag3\n\nfracmathrmdmathrmdt boldsymbolM =\nbeginbmatrix\n-tfrac1T_2 0 0 \n0 -tfrac1T_2 0 \n0 0 -tfrac1T_1\nendbmatrix\nboldsymbolM\n+\nbeginbmatrix\n0 \n0 \ntfracM_0T_1\nendbmatrix \n\nendalign","category":"page"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"The evolution of the magnetization can then be described as a two-step process for each time step Delta t (Figure 2).","category":"page"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"

    \n

    \n \n
    Figure 2: Solution of the Bloch equations for one time step can be described by (2) a rotation and (3) a relaxation step.
    \n
    \n

    ","category":"page"},{"location":"mri-theory/#BlochDict-Simulation-Method","page":"Simulation","title":"BlochDict Simulation Method","text":"","category":"section"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"This is another simulation method defined in the source code of KomaMRI. It can be specified by setting the sim_method = BlochDict() entry of the sim_params dictionary.","category":"page"},{"location":"mri-theory/","page":"Simulation","title":"Simulation","text":"note: Note\nThis section is under construction. More explanation of this simulation method is required.","category":"page"},{"location":"#Introduction","page":"Home","title":"Introduction","text":"","category":"section"},{"location":"","page":"Home","title":"Home","text":"KomaMRI is a Julia package meant to simulate general Magnetic Resonance Imaging (MRI) scenarios. Its name comes from the Japanese word for spinning-top こま (ko-ma) as they precess due to gravity like spins in a magnetic field.","category":"page"},{"location":"","page":"Home","title":"Home","text":"KomaMRI generates raw data by solving the Bloch equations using the specified scanner, phantom and sequence. It also provides a Graphical User Interface (GUI) that encapsulates the whole imaging pipeline (simulation and reconstruction).","category":"page"},{"location":"","page":"Home","title":"Home","text":"

    \n

    ","category":"page"},{"location":"","page":"Home","title":"Home","text":"KomaMRI can be used in different environments:","category":"page"},{"location":"","page":"Home","title":"Home","text":"User Interface: User-friendly interaction. No Julia programming skills are required. Refer to the User Interface Section to dive into the details of how to use the GUI.\nScripts : Basic knowledge of Julia is required. Refer to the Scripts Section to follow a basic workflow on how to work with KomaMRI.\nNotebooks: Basic knowledge of Julia is required. This serves as an alternative development environment featuring user-friendly interactive tools. For guidance on setting up these environments, refer to the Notebooks Section.","category":"page"},{"location":"","page":"Home","title":"Home","text":"If you are new to KomaMRI, we recommend starting with the \"Getting Started\" section to install Julia, KomaMRI, and perform your first simulation.","category":"page"},{"location":"#Features","page":"Home","title":"Features","text":"","category":"section"},{"location":"","page":"Home","title":"Home","text":"Some of the features of KomaMRI are:","category":"page"},{"location":"","page":"Home","title":"Home","text":"Fast simulations by using CPU and GPU parallelization 🏃💨.\nOpen Source, so anyone can include additional features 🆙.\nCompatibility with community-standards 🤝 like Pulseq .seq and ISMRMRD .mrd.\nCompatibility with Pluto and Jupyter notebooks 🎈\nCross-platform 🌐 thanks to the use of the Julia programming language.\nFriendly user interface for people with no programming skills 😌.\nFlexible API for advanced users 👨‍💻.","category":"page"},{"location":"#Potential-Use-Cases","page":"Home","title":"Potential Use Cases","text":"","category":"section"},{"location":"","page":"Home","title":"Home","text":"We see Koma being used in:","category":"page"},{"location":"","page":"Home","title":"Home","text":"The generation of synthetic data to train Machine Learning models.\nTo test novel pulse sequences before implementing them directly in a real scanner (with a Pulseq sequence).\nTeaching exercises for MRI acquisition or reconstruction.","category":"page"}] } diff --git a/dev/sequence/index.html b/dev/sequence/index.html index f5f2513dd..8a8dd26ae 100644 --- a/dev/sequence/index.html +++ b/dev/sequence/index.html @@ -1,5 +1,5 @@ -Sequence Definition · KomaMRI.jl: General MRI simulation framework

    Sequence Definition

    This section delves into some details about how a sequence is constructed. The sequence definition in KomaMRI is strongly related to the Pulseq definition. After reading this section, you should be able to create your own Sequence structs for conducting custom simulations using the KomaMRI package.

    Sequence Overview

    Let's introduce the following simple sequence figure to expand from a visual example to a more general sequence definition:

    A sequence can be thought of as an ordered concatenation of blocks over time. Each block is essentially a sequence with a length of 1. Every block consists of an RF pulse, the $(x,y,z)$ gradients, and the acquisition of samples. Each block also has an associated time duration. To simplify, we will refer to these components as follows:

    \[\begin{matrix*}[l] +Sequence · KomaMRI.jl: General MRI simulation framework

    Sequence

    This section delves into some details about how a sequence is constructed. The sequence definition in KomaMRI is strongly related to the Pulseq definition. After reading this section, you should be able to create your own Sequence structs for conducting custom simulations using the KomaMRI package.

    Sequence Overview

    Let's introduce the following simple sequence figure to expand from a visual example to a more general sequence definition:

    A sequence can be thought of as an ordered concatenation of blocks over time. Each block is essentially a sequence with a length of 1. Every block consists of an RF pulse, the $(x,y,z)$ gradients, and the acquisition of samples. Each block also has an associated time duration. To simplify, we will refer to these components as follows:

    \[\begin{matrix*}[l] \text{seq[i]} &: & \text{block i of the sequence} \\ \text{seq.RF[i]} &: & \text{RF pulse at the i block} \\ \text{seq.GR.x[i]} &: & \text{gradient x at the i block} \\ @@ -14,7 +14,7 @@ DUR::Array{Any,1} DEF::Dict{String,Any} end

    As you can see, a Sequence struct contains 5 field names: ''DEF'' contains information for reconstruction steps (so it is not mandatory to fill it), ''DUR'' is a vector that contains the time durations of each block, ''ADC'' is also a vector with the acquisition samples for every block (an vector of ADC structs), ''GR'' is a 2D matrix which 3 rows representing the x-y-z gradients and columns having the samples of each block (a matrix of Grad structs) and ''RF'' is also a 2D matrix where each row represents a different coil and the columns are for different block samples too (a matrix of RF structs). The RF, Grad and ADC are MRI events that will be explained in the section Events Definitions.

    Warning

    So far, KomaMRI can only manage one coil for RF excitations. However, in future versions, parallel transmit pTX will be managed by adding more ``rows'' to the RF matrix of the Sequence field name.

    In order to understand how a Sequence struct can be manipulated in Julia, let's use the EPI sequence example. You can display basic information of the Sequence variable in the Julia REPL:

    julia> seq = PulseDesigner.EPI_example()
    -Sequence[ τ = 62.846 ms | blocks: 204 | ADC: 101 | GR: 205 | RF: 1 | DEF: 5 ]

    As you can see, this Sequence has 204 blocks, 1 of these blocks has an RF struct with values different from zero, there are 205 number of Grad structs considering the x-y-z components, 101 ADC structs acquire samples of some blocks and 62.846 ms is the total time duration of the complete Sequence.

    To display the sequence in an graph, we can use the plot_seq function:

    julia> plot_seq(seq)

    This way, you can see exactly where the RF, Grad and ADC structs are located in time.

    You can access and filter information for the RF, Grad, ADC, and DUR field names of a Sequence using the dot notation. This allows you to display helpful information about the organization of the Sequence struct:

    julia> seq.RF
    +Sequence[ τ = 62.846 ms | blocks: 204 | ADC: 101 | GR: 205 | RF: 1 | DEF: 5 ]

    As you can see, this Sequence has 204 blocks, 1 of these blocks has an RF struct with values different from zero, there are 205 number of Grad structs considering the x-y-z components, 101 ADC structs acquire samples of some blocks and 62.846 ms is the total time duration of the complete Sequence.

    To display the sequence in an graph, we can use the plot_seq function:

    julia> plot_seq(seq; slider=false)

    This way, you can see exactly where the RF, Grad and ADC structs are located in time.

    You can access and filter information for the RF, Grad, ADC, and DUR field names of a Sequence using the dot notation. This allows you to display helpful information about the organization of the Sequence struct:

    julia> seq.RF
     1×204 Matrix{RF}:
      ⊓(0.5872 ms)  ⇿(0.0 ms)  ⇿(0.0 ms)  …  ⇿(0.0 ms)  ⇿(0.0 ms)   
     
    @@ -49,10 +49,10 @@
      ⇿(0.5872 ms)  ⊓(0.4042 ms)  ⇿(0.4042 ms)      ⇿(0.4042 ms)  ⊓(0.2062 ms)  ⇿(0.4042 ms)
      ⇿(0.5872 ms)  ⇿(0.0 ms)     ⇿(0.0 ms)        ⇿(0.0 ms)     ⇿(0.0 ms)     ⇿(0.0 ms)
     
    -julia> plot_seq(seq[1:11])

    Concatenation of Sequences

    Sequences can be concatenated side by side. The example below demonstrates how to concatenate sequences:

    julia> s = PulseDesigner.EPI_example()[1:11]
    +julia> plot_seq(seq[1:11]; slider=false)

    Concatenation of Sequences

    Sequences can be concatenated side by side. The example below demonstrates how to concatenate sequences:

    julia> s = PulseDesigner.EPI_example()[1:11]
     Sequence[ τ = 3.837 ms | blocks: 11 | ADC: 5 | GR: 11 | RF: 1 | DEF: 5 ]
     
     julia> seq = s + s + s
     Sequence[ τ = 11.512 ms | blocks: 33 | ADC: 15 | GR: 33 | RF: 3 | DEF: 5 ]
     
    -julia> plot_seq(seq)
    +julia> plot_seq(seq; slider=false)
    diff --git a/dev/ui-details/index.html b/dev/ui-details/index.html index 6fbf5c10b..206142cb6 100644 --- a/dev/ui-details/index.html +++ b/dev/ui-details/index.html @@ -1,4 +1,4 @@ -Simulation with User Interface · KomaMRI.jl: General MRI simulation framework

    User Interface

    This section explains how to use the user interface of the KomaMRI package and the internal processes during interaction.

    Basic Workflow

    (You can also go to analog steps using Scripts)

    As a general overview, remember the following workflow steps when using KomaMRI:

    • Loading Simulation Inputs: Scanner, Phantom, Sequence
    • Running Simulation
    • Reconstructing Image using MRIReco

    In the following subsections, we will cover all the mentioned steps. First, open the Julia REPL and enter the following commands to include the KomaMRI package and launch the user interface:

    julia> using KomaMRI
    +User Interface · KomaMRI.jl: General MRI simulation framework

    User Interface

    This section explains how to use the user interface of the KomaMRI package and the internal processes during interaction.

    Basic Workflow

    (You can also go to analog steps using Scripts)

    As a general overview, remember the following workflow steps when using KomaMRI:

    • Loading Simulation Inputs: Scanner, Phantom, Sequence
    • Running Simulation
    • Reconstructing Image using MRIReco

    In the following subsections, we will cover all the mentioned steps. First, open the Julia REPL and enter the following commands to include the KomaMRI package and launch the user interface:

    julia> using KomaMRI
     
    -julia> KomaUI()

    Loading Simulation Inputs

    (You can also go to analog steps using Scripts)

    The user interface has preloaded certain inputs into RAM, including the Scanner, Phantom, and Sequence structs. In the following subsections, we will demonstrate how to visualize these inputs.

    Scanner

    You can visualize the preloaded Scanner struct by clicking on the Scanner dropdown and then pressing the View Scanner button. The Scanner struct contains hardware-related information, such as the main magnetic field's magnitude:

    Phantom

    To see the phantom already stored in RAM, simply click on the Phantom dropdown an then press the View Phantom button. The preloaded phantom is a slice of a brain:

    It is also possible to load .h5 phantom files. The KomaMRI.jl has some examples stored at ~/.julia/packages/KomaMRI/<id-string>/examples/2.phantoms/. For instance, let's load the sphere_chemical_shift.h5 file:

    Note that you can select different spin parameters to visualize like ρ, T1, T2, among others.

    Sequence

    There are two options to visualize the sequence already preloaded in RAM: in the time domain or in the k-space. The preloaded sequence is a single-shot EPI.

    For visualization of the sequence in the time domain, click on the Sequence dropdown and then press the Sequence (MPS) button:

    For visualization of the sequence in the k-space, click on the Sequence dropdown and then press the k-space button:

    You can also display the Moments related to the Sequence by pressing the View Moments and then pressing the buttons for zero, first and second moments.

    It is also possible to load Pulseq compatible .seq sequence files. The KomaMRI has some examples stored at ~/.julia/packages/KomaMRI/<id-string>/examples/1.sequences/. For instance, let's load the spiral.seq file and view it the time domain and k-space:

    Running Simulation

    (You can also go to analog steps using Scripts)

    Once the inputs are loaded in RAM, it is possible to perform the simulation to get the Raw Signal.

    Simulation Parameters

    To visualize the default simulation parameters, click on the Simulate! dropdown and then press the View Options button:

    Visualization of the Raw Signal

    Press the Simulate! button to perform the simulation (this may take a while). Automatically the generated Raw Signal should be displayed or you can click on the Raw Data dropdown and then press the View Raw Data button:

    Reconstructing Image using MRIReco

    (You can also go to analog steps using Scripts)

    Once the Raw Signal is loaded in RAM, it is possible to reconstruct the image.

    Reconstruction Parameters

    To visualize the default reconstruction parameters, click on the Reconstruct! dropdown and then press the View Options button:

    Visualization of the Image

    Press the Reconstruct! button to perform the reconstruction (this may take a while). Automatically the generated Image should be displayed or you can click on the he Reconstruct! dropdown and then press the |Image| button:

    Exporting Results to .mat File

    (You can also go to analog steps using Scripts)

    The user interface has the option to save the results in .mat format. Simply click on the Export to .mat and you have the alternatives to get data independently or you can press the All button to have all the results given by the simulator:

    So far, and due to limitations of the user interface dependencies, the .mat files are saved in the temporal directory of your computer OS, which can be found by typing the tempdir() command in the Julia REPL.

    +julia> KomaUI()

    Loading Simulation Inputs

    (You can also go to analog steps using Scripts)

    The user interface has preloaded certain inputs into RAM, including the Scanner, Phantom, and Sequence structs. In the following subsections, we will demonstrate how to visualize these inputs.

    Scanner

    You can visualize the preloaded Scanner struct by clicking on the Scanner dropdown and then pressing the View Scanner button. The Scanner struct contains hardware-related information, such as the main magnetic field's magnitude:

    Phantom

    To see the phantom already stored in RAM, simply click on the Phantom dropdown an then press the View Phantom button. The preloaded phantom is a slice of a brain:

    It is also possible to load .h5 phantom files. The KomaMRI.jl has some examples stored at ~/.julia/packages/KomaMRI/<id-string>/examples/2.phantoms/. For instance, let's load the sphere_chemical_shift.h5 file:

    Note that you can select different spin parameters to visualize like ρ, T1, T2, among others.

    Sequence

    There are two options to visualize the sequence already preloaded in RAM: in the time domain or in the k-space. The preloaded sequence is a single-shot EPI.

    For visualization of the sequence in the time domain, click on the Sequence dropdown and then press the Sequence (MPS) button:

    For visualization of the sequence in the k-space, click on the Sequence dropdown and then press the k-space button:

    You can also display the Moments related to the Sequence by pressing the View Moments and then pressing the buttons for zero, first and second moments.

    It is also possible to load Pulseq compatible .seq sequence files. The KomaMRI has some examples stored at ~/.julia/packages/KomaMRI/<id-string>/examples/1.sequences/. For instance, let's load the spiral.seq file and view it the time domain and k-space:

    Running Simulation

    (You can also go to analog steps using Scripts)

    Once the inputs are loaded in RAM, it is possible to perform the simulation to get the Raw Signal.

    Simulation Parameters

    To visualize the default simulation parameters, click on the Simulate! dropdown and then press the View Options button:

    Visualization of the Raw Signal

    Press the Simulate! button to perform the simulation (this may take a while). Automatically the generated Raw Signal should be displayed or you can click on the Raw Data dropdown and then press the View Raw Data button:

    Reconstructing Image using MRIReco

    (You can also go to analog steps using Scripts)

    Once the Raw Signal is loaded in RAM, it is possible to reconstruct the image.

    Reconstruction Parameters

    To visualize the default reconstruction parameters, click on the Reconstruct! dropdown and then press the View Options button:

    Visualization of the Image

    Press the Reconstruct! button to perform the reconstruction (this may take a while). Automatically the generated Image should be displayed or you can click on the he Reconstruct! dropdown and then press the |Image| button:

    Exporting Results to .mat File

    (You can also go to analog steps using Scripts)

    The user interface has the option to save the results in .mat format. Simply click on the Export to .mat and you have the alternatives to get data independently or you can press the All button to have all the results given by the simulator:

    So far, and due to limitations of the user interface dependencies, the .mat files are saved in the temporal directory of your computer OS, which can be found by typing the tempdir() command in the Julia REPL.

    diff --git a/dev/ways-of-using-koma/index.html b/dev/ways-of-using-koma/index.html new file mode 100644 index 000000000..aae1316ed --- /dev/null +++ b/dev/ways-of-using-koma/index.html @@ -0,0 +1,137 @@ + +Ways of using Koma · KomaMRI.jl: General MRI simulation framework

    Ways of using Koma

    KomaMRI can be used in different environments, depending on the degree of flexibility you desire. If you lack prior programming knowledge, we recommend starting with the User Interface. If you seek the full range of flexibility that KomaMRI offers, programming with Scripts is likely your preference. Alternatively, you can utilize the programming environment provided by Notebooks. Detailed explanations for each method of using KomaMRI will be provided in the following sections.

    User Interface

    This section explains how to use the user interface of the KomaMRI package and the internal processes during interaction.

    Basic Workflow

    (You can also go to analog steps using Scripts)

    As a general overview, remember the following workflow steps when using KomaMRI:

    • Loading Simulation Inputs: Scanner, Phantom, Sequence
    • Running Simulation
    • Reconstructing Image using MRIReco

    In the following subsections, we will cover all the mentioned steps. First, open the Julia REPL and enter the following commands to include the KomaMRI package and launch the user interface:

    julia> using KomaMRI
    +
    +julia> KomaUI()

    Loading Simulation Inputs

    (You can also go to analog steps using Scripts)

    The user interface has preloaded certain inputs into RAM, including the Scanner, Phantom, and Sequence structs. In the following subsections, we will demonstrate how to visualize these inputs.

    Scanner

    You can visualize the preloaded Scanner struct by clicking on the Scanner dropdown and then pressing the View Scanner button. The Scanner struct contains hardware-related information, such as the main magnetic field's magnitude:

    Phantom

    To see the phantom already stored in RAM, simply click on the Phantom dropdown an then press the View Phantom button. The preloaded phantom is a slice of a brain:

    It is also possible to load .h5 phantom files. The KomaMRI.jl has some examples stored at ~/.julia/packages/KomaMRI/<id-string>/examples/2.phantoms/. For instance, let's load the sphere_chemical_shift.h5 file:

    Note that you can select different spin parameters to visualize like ρ, T1, T2, among others.

    Sequence

    There are two options to visualize the sequence already preloaded in RAM: in the time domain or in the k-space. The preloaded sequence is a single-shot EPI.

    For visualization of the sequence in the time domain, click on the Sequence dropdown and then press the Sequence (MPS) button:

    For visualization of the sequence in the k-space, click on the Sequence dropdown and then press the k-space button:

    You can also display the Moments related to the Sequence by pressing the View Moments and then pressing the buttons for zero, first and second moments.

    It is also possible to load Pulseq compatible .seq sequence files. The KomaMRI has some examples stored at ~/.julia/packages/KomaMRI/<id-string>/examples/1.sequences/. For instance, let's load the spiral.seq file and view it the time domain and k-space:

    Running Simulation

    (You can also go to analog steps using Scripts)

    Once the inputs are loaded in RAM, it is possible to perform the simulation to get the Raw Signal.

    Simulation Parameters

    To visualize the default simulation parameters, click on the Simulate! dropdown and then press the View Options button:

    Visualization of the Raw Signal

    Press the Simulate! button to perform the simulation (this may take a while). Automatically the generated Raw Signal should be displayed or you can click on the Raw Data dropdown and then press the View Raw Data button:

    Reconstructing Image using MRIReco

    (You can also go to analog steps using Scripts)

    Once the Raw Signal is loaded in RAM, it is possible to reconstruct the image.

    Reconstruction Parameters

    To visualize the default reconstruction parameters, click on the Reconstruct! dropdown and then press the View Options button:

    Visualization of the Image

    Press the Reconstruct! button to perform the reconstruction (this may take a while). Automatically the generated Image should be displayed or you can click on the he Reconstruct! dropdown and then press the |Image| button:

    Exporting Results to .mat File

    (You can also go to analog steps using Scripts)

    The user interface has the option to save the results in .mat format. Simply click on the Export to .mat and you have the alternatives to get data independently or you can press the All button to have all the results given by the simulator:

    So far, and due to limitations of the user interface dependencies, the .mat files are saved in the temporal directory of your computer OS, which can be found by typing the tempdir() command in the Julia REPL.

    Julia Scripts

    You should already be familiar with the Graphical User Interface of KomaMRI. However, you can also use this package directly from the Julia REPL or write your own Julia scripts. This allows you to unlock the full potential of KomaMRI, enabling you to utilize more of its functionalities and even test your own MRI ideas.

    This section demonstrates a basic workflow with KomaMRI through writing your own scripts or entering commands directly into the Julia REPL. Let's begin.

    Basic Workflow

    (You can also go to analog steps using UI)

    As a general overview, remember the following workflow steps when using KomaMRI:

    • Loading Simulation Inputs: Scanner, Phantom, Sequence
    • Running Simulation
    • Reconstructing Image using MRIReco

    Let's replicate these previous steps in a Julia script. You will obtain the following code, which you can copy and paste into the Julia REPL:

    # Import the package
    +using KomaMRI
    +
    +# Define scanner, object and sequence
    +sys = Scanner()
    +obj = brain_phantom2D()
    +seq = PulseDesigner.EPI_example()
    +
    +# Define simulation parameters and perform simulation
    +sim_params = KomaMRICore.default_sim_params() 
    +raw = simulate(obj, seq, sys; sim_params)
    +
    +# Auxiliary function for reconstruction
    +function reconstruct_2d_image(raw::RawAcquisitionData)
    +    acqData = AcquisitionData(raw)
    +    acqData.traj[1].circular = false #Removing circular window
    +    C = maximum(2*abs.(acqData.traj[1].nodes[:]))  #Normalize k-space to -.5 to .5 for NUFFT
    +    acqData.traj[1].nodes = acqData.traj[1].nodes[1:2,:] ./ C
    +    Nx, Ny = raw.params["reconSize"][1:2]
    +    recParams = Dict{Symbol,Any}()
    +    recParams[:reconSize] = (Nx, Ny)
    +    recParams[:densityWeighting] = true
    +    rec = reconstruction(acqData, recParams)
    +    image3d  = reshape(rec.data, Nx, Ny, :)
    +    image2d = (abs.(image3d) * prod(size(image3d)[1:2]))[:,:,1]
    +    return image2d
    +end
    +
    +# Perform reconstruction to get the image
    +image = reconstruct_2d_image(raw)

    Let's go through this script step by step.

    Loading Simulation Inputs

    (You can also go to analog steps using UI)

    The inputs of the simulation are created in the following part of the script:

    # Define scanner, object and sequence
    +sys = Scanner()
    +obj = brain_phantom2D()
    +seq = PulseDesigner.EPI_example()

    Scanner

    The previously created Scanner struct contains default parameters. In your initial simulations, you will likely use this default struct without making any modifications. You can view all the parameters by displaying the struct variable in the Julia REPL. The Scanner's parameters include hardware limitations such as the main magnetic field, maximum gradient values, minimum raster times, and more. You may want to adjust these values for your future custom simulations.

    julia> sys
    +Scanner
    +  B0: Float64 1.5
    +  B1: Float64 1.0e-5
    +  Gmax: Float64 0.06
    +  Smax: Int64 500
    +  ADC_Δt: Float64 2.0e-6
    +  seq_Δt: Float64 1.0e-5
    +  GR_Δt: Float64 1.0e-5
    +  RF_Δt: Float64 1.0e-6
    +  RF_ring_down_T: Float64 2.0e-5
    +  RF_dead_time_T: Float64 0.0001
    +  ADC_dead_time_T: Float64 1.0e-5

    Phantom

    The Phantom struct created in this example represents a slice of a brain. To create it, we use the function brain_phantom2D, which is part of the subdependency KomaMRICore. While KomaMRI provides some phantom examples for experimentation, you may also want to create your custom Phantom struct tailored to your specific requirements.

    The Phantom struct contains MRI parameters related to the magnetization properties of an object. These parameters include magnetization positions, proton density, relaxation times, off-resonance, among others. To view all the keys and values of the object, you can do so in the Julia REPL as follows:

    julia> obj
    +Phantom{Float64}
    +  name: String "brain2D_axial"
    +  x: Array{Float64}((6506,)) [-0.084, -0.084,  …  0.086, 0.086]
    +  y: Array{Float64}((6506,)) [-0.03, -0.028,  …  0.0, 0.002]
    +  z: Array{Float64}((6506,)) [-0.0, -0.0,  …  0.0, 0.0]
    +  ρ: Array{Float64}((6506,)) [0.7, 0.7,  …  0.7, 0.7]
    +  T1: Array{Float64}((6506,)) [0.569, 0.569,  …  0.569, 0.569]
    +  T2: Array{Float64}((6506,)) [0.329, 0.329,  …  0.329, 0.329]
    +  T2s: Array{Float64}((6506,)) [0.058, 0.058,  …  0.058, 0.058]
    +  Δw: Array{Float64}((6506,)) [-0.0, -0.0,  …  -0.0, -0.0]
    +  Dλ1: Array{Float64}((6506,)) [0.0, 0.0,  …  0.0, 0.0]
    +  Dλ2: Array{Float64}((6506,)) [0.0, 0.0,  …  0.0, 0.0]
    +  Dθ: Array{Float64}((6506,)) [0.0, 0.0,  …  0.0, 0.0]
    +...

    As you can see, attributes of the Phantom struct are vectors representing object properties, with each element holding a value associated with a single magnetization.

    You can also visualize the Phantom struct using the plot_phantom_map function, which is part of the KomaMRIPlots subdependency. This function plots the magnitude of a property for each magnetization at a specific spatial position. You can observe properties such as proton density and relaxation times, so feel free to replace the symbol with another property of the phantom in the example below:

    julia> plot_phantom_map(obj, :ρ)

    To utilize test phantoms included with KomaMRI, navigate to the "examples" folder and use the read_phantom_jemris function to read a phantom in .h5 format. The following steps outline how to do this in Julia:

    julia> path_koma = dirname(dirname(pathof(KomaMRI)))
    +julia> path_sphere = joinpath(path_koma, "examples", "2.phantoms", "sphere_chemical_shift.h5")
    +julia> sphere = read_phantom_jemris(path_sphere)
    +julia> plot_phantom_map(sphere, :T2)

    Sequence

    The Sequence struct in the example represents one of the most basic MRI sequences. It excites the object with a 90° RF pulse and then uses EPI gradients to fill the k-space in a "square" manner. While you may want to create your sequences for experiments, you can always use some of the examples already available in KomaMRI.

    In MRI, the sequence must be carefully designed with precise timing to obtain an image. It includes subcomponents such as gradients, radio-frequency excitation signals, and sample acquisition. For more information on constructing a Sequence struct, refer to the Sequence section.

    You can view general information about a Sequence struct by displaying it in the Julia REPL:

    julia> seq
    +Sequence[ τ = 62.846 ms | blocks: 204 | ADC: 101 | GR: 205 | RF: 1 | DEF: 5 ]

    For more precise timing checks, you can use the plot_seq function:

    julia> plot_seq(seq; range=[0 30])

    It is important to consider how the sequence traverses through k-space. The get_kspace function does precisely that:

    julia> plot_kspace(seq)

    Additionally, there are helpful sequence construction functions within a submodule of KomaMRI called PulseDesigner. These functions include RF_hard, RF_sinc, EPI, radial_base and spiral_base. For more details on how to use them, refer to the API documentation.

    KomaMRI is also compatible with Pulseq. The package installation includes some .seq files in Pulseq format, which can be read and used as a Sequence struct. Here's how to read a spiral Pulseq file stored in the "examples" folder of KomaMRI:

    julia> path_koma = dirname(dirname(pathof(KomaMRI)))
    +julia> path_spiral = joinpath(path_koma, "examples", "1.sequences", "spiral.seq")
    +julia> spiral = read_seq(path_spiral)
    +julia> plot_seq(spiral)
    +julia> plot_kspace(spiral)

    Running Simulation

    (You can also go to analog steps using UI)

    The following lines in the example script configure and perform the simulation:

    # Define simulation parameters and perform simulation
    +sim_params = KomaMRICore.default_sim_params() 
    +raw = simulate(obj, seq, sys; sim_params)

    Simulation Parameters

    To perform simulations, KomaMRI requires certain parameters. You can use the default parameters for testing, but you also have the option to customize specific simulation aspects. In the example, we use the default_sim_params function to create a dictionary with default simulation parameters. You can view the keys that can be modified by displaying the sim_params variable:

    julia> sim_params
    +Dict{String, Any} with 9 entries:
    +  "return_type" => "raw"
    +  "Nblocks"     => 20
    +  "gpu"         => true
    +  "Nthreads"    => 1
    +  "gpu_device"  => 0
    +  "sim_method"  => Bloch()
    +  "precision"   => "f32"
    +  "Δt"          => 0.001
    +  "Δt_rf"       => 5.0e-5

    All of these parameters deserve special attention. We will explain some of the most important ones here. For instance, "Δt" and "Δt_rf" represent the raster times for the gradients and RFs. "return_type" specifies the type of variable returned by the simulator (by default, it returns an object ready for use with MRIReco for reconstruction, but you can use the value "mat" to return a simple vector). "gpu" indicates whether you want to use your GPU device for simulations, and "precision" sets the floating-point precision. For more details on how to set these parameters, please refer to the Simulation Parameters Section.

    Raw Signal

    The simulation is performed using the simulate function, which requires three arguments: a Scanner struct, a Phantom struct, and a Sequence struct. Optionally, you can include the keyword argument sim_params if you wish to use custom simulation parameters.

    In the example, we can see that the output of the simulation is a special struct:

    julia> typeof(raw)
    +RawAcquisitionData
    +
    +julia> raw
    +RawAcquisitionData[SeqName: epi | 101 Profile(s) of 101×1]

    You can plot the simulation result with the plot_signal function like so:

    julia> plot_signal(raw)

    Reconstructing Image using MRIReco

    (You can also go to analog steps using UI)

    KomaMRI does not handle reconstruction; instead, you should utilize the MRIReco package to generate an image. For convenience, when you install KomaMRI, you also install MRIReco, allowing you to access functions from that package. You should pay special attention to the RawAcquisitionData and AcquisitionData structs, as well as the reconstruction function.

    In the example below, we define an auxiliary function, reconstruct_2d_image, which takes a raw signal struct, RawAcquisitionData, as input and returns a 2D Array representing an image. Within this function, we create an AcquisitionData struct and set some reconstruction parameters, which serve as inputs for the reconstruction function. The latter function is responsible for the image generation process.

    # Auxiliary function for reconstruction
    +function reconstruct_2d_image(raw::RawAcquisitionData)
    +    acqData = AcquisitionData(raw)
    +    acqData.traj[1].circular = false #Removing circular window
    +    C = maximum(2*abs.(acqData.traj[1].nodes[:]))  #Normalize k-space to -.5 to .5 for NUFFT
    +    acqData.traj[1].nodes = acqData.traj[1].nodes[1:2,:] ./ C
    +    Nx, Ny = raw.params["reconSize"][1:2]
    +    recParams = Dict{Symbol,Any}()
    +    recParams[:reconSize] = (Nx, Ny)
    +    recParams[:densityWeighting] = true
    +    rec = reconstruction(acqData, recParams)
    +    image3d  = reshape(rec.data, Nx, Ny, :)
    +    image2d = (abs.(image3d) * prod(size(image3d)[1:2]))[:,:,1]
    +    return image2d
    +end
    +
    +# Perform reconstruction to get the image
    +image = reconstruct_2d_image(raw)

    If you need more information about how to use the AcquisitionData and the how to fill the reconstruction parameters, you need to visit the MRIReco webpage).

    To display the image, you can use the plot_image function which is part of the KomaMRIPlots subpackage:

    julia> plot_image(image)

    Exporting Results to .mat File

    (You can also go to analog steps using UI)

    Many people in the MRI community uses MATLAB, probably you are one of them and you want to process the raw signal in the MATLAB environment after simulation is done with KomaMRI. Here we show you an example of how to save a .mat file with the information of the raw signal thank to the help of the MAT package:

    Many people in the MRI community use MATLAB; you might be one of them and may want to process the Raw Signal in the MATLAB environment after simulation is completed with KomaMRI. Here, we provide an example of how to save a .mat file containing the Raw Signal information using the MAT package.

    # Use the MAT package
    +using MAT
    +
    +# Perform simulation to return an Array type
    +sim_params["return_type"] = "mat"
    +raw = simulate(obj, seq, sys; sim_params)
    +
    +# Save the .mat file in the temp directory
    +matwrite(joinpath(tempdir(), "koma-raw.mat"), Dict("raw" => raw))

    Note that we need to simulate to return an array type (not the default RawAcquisitionData), and then we utilize the matwrite function to save a file named "koma-raw.mat" in your computer's temporary directory. Now, you can navigate to your temporary directory (which you can find by displaying the result of tempdir() in the Julia REPL) and locate the "koma-raw.mat" file.

    Notebooks

    You can use KomaMRI with popular programming environments such as Pluto and Jupyter notebooks. The following sections show how to set up these notebooks and test KomaMRI with them.

    Using KomaMRI with Pluto

    First, install the Pluto module in your Julia environment. Remember to press the ] button to open the Package Manager Session:"

    julia>
    +
    +@(1.9) pkg> add Pluto

    Afterward, return to the Julia Session by pressing the backspace button, and then execute the Pluto.run() function:

    julia> using Pluto
    +
    +julia> Pluto.run()

    This should automatically open the Pluto dashboard in your default web browser:

    Next, create a new notebook by clicking on + Create a new notebook:

    Write and run the following code, which is identical to the Free Induction Decay example. Pluto automatically installs the required modules if they are not present on your system. Additionally, note that we do not use KomaMRI directly since we won't be utilizing the KomaUI() function. Instead, we rely on the KomaMRICore and KomaMRIPlots dependencies. To display plots in Pluto, ensure that you import the PlutoPlots package:"

    Using KomaMRI with Jupyter

    Ensure you have Jupyter installed on your computer. Follow this tutorial for installation using Anaconda.

    Next, install the IJulia module in your Julia environment. Remember to press the ] key to open the Package Manager Session:

    julia>
    +
    +(@v1.9) pkg> add IJulia

    For this example, make sure to install KomaMRICore and KomaMRIPlots (we do not use KomaMRI directly since we won't be utilizing the KomaUI() function):

    (@v1.9) pkg> add KomaMRICore
    +
    +(@v1.9) pkg> add KomaMRIPlots

    Next, open Jupyter, navigate to a working folder, and create a new notebook by clicking on New, then Julia 1.9.3."

    A new, empty notebook will appear:

    Proceed to write and execute the provided example:

    View code
    # Import modules
    +using KomaMRICore, KomaMRIPlots
    +
    +# Define sequence
    +ampRF = 2e-6                        # 2 uT RF amplitude
    +durRF = π / 2 / (2π * γ * ampRF)    # required duration for a 90 deg RF pulse
    +exc = RF(ampRF, durRF)
    +
    +nADC = 8192         # number of acquisition samples
    +durADC = 250e-3     # duration of the acquisition
    +delay =  1e-3       # small delay
    +acq = ADC(nADC, durADC, delay)
    +
    +seq = Sequence()  # empty sequence
    +seq += exc        # adding RF-only block
    +seq += acq        # adding ADC-only block
    +
    +# Plot the sequence
    +plot_seq(seq; slider=false, height=300)

    This should be sufficient, and now you can start working with KomaMRI using Jupyter notebooks.

    If you encounter the issue of WebIO not being detected:

    Refer to this troubleshooting guide for details. Essentially, you need to install a WebIO extension based on your Jupyter installation.